1
Fork 0
mirror of https://github.com/RGBCube/CSAssignments synced 2025-06-22 14:02:10 +00:00

Refactor most of the interactive runner

This commit is contained in:
RGBCube 2022-11-05 21:16:42 +03:00
parent d782a4d879
commit 58f5c52db5
9 changed files with 138 additions and 122 deletions

View file

@ -5,7 +5,7 @@ __all__ = ("Sources",)
from functools import cached_property
from typing import TYPE_CHECKING
from .consts import ROOT
from .constants import ROOT
from .language import Language
if TYPE_CHECKING:
@ -32,4 +32,4 @@ class Sources:
return languages
def refresh(self) -> None:
del self.languages
"""TODO"""