mirror of
https://github.com/RGBCube/CSAssignments
synced 2025-07-26 05:27:46 +00:00
Reformat
This commit is contained in:
parent
9a63e4127d
commit
5735e91299
3 changed files with 5 additions and 4 deletions
|
@ -3,10 +3,11 @@ from __future__ import annotations
|
||||||
__all__ = ("Assignment",)
|
__all__ = ("Assignment",)
|
||||||
|
|
||||||
from functools import cached_property
|
from functools import cached_property
|
||||||
from .helpers import command
|
|
||||||
from tomllib import loads as decode_toml
|
from tomllib import loads as decode_toml
|
||||||
from typing import TYPE_CHECKING, TypedDict
|
from typing import TYPE_CHECKING, TypedDict
|
||||||
|
|
||||||
|
from .helpers import command
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from .language import Language
|
from .language import Language
|
||||||
|
|
|
@ -12,4 +12,4 @@ common = "gcc -o {out} {main}"
|
||||||
common = "{}"
|
common = "{}"
|
||||||
|
|
||||||
[dependency]
|
[dependency]
|
||||||
common = [ "gcc" ]
|
common = ["gcc"]
|
||||||
|
|
|
@ -10,5 +10,5 @@ unix = "python3 {}"
|
||||||
windows = "py {}"
|
windows = "py {}"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
unix = [ "python3" ]
|
unix = ["python3"]
|
||||||
windows = [ "py" ]
|
windows = ["py"]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue