1
Fork 0
mirror of https://github.com/RGBCube/CSAssignments synced 2025-07-27 05:57:44 +00:00

Finish command checking & Reformat

This commit is contained in:
RGBCube 2022-11-09 19:32:35 +03:00
parent 8ad5f2d626
commit 1720c613e5
3 changed files with 10 additions and 6 deletions

View file

@ -3,9 +3,10 @@ from __future__ import annotations
__all__ = ("Language",)
from functools import cached_property
from toml import loads as decode_toml
from typing import TYPE_CHECKING, TypedDict
from toml import loads as decode_toml
from .assignment import Assignment
from .constants import OS
from .helpers import chalk_from_int, command_exists