Linting, removed extra line from pyproject.toml.

This commit is contained in:
2023-11-09 05:08:46 +00:00
parent b8197d7974
commit 9762d7c1ad
10 changed files with 1 additions and 11 deletions
-2
View File
@@ -25,7 +25,6 @@ class MkDir(ControlBase):
path.mkdir(parents=True, exist_ok=False)
class Rename(ControlBase):
path: str
to: str
@@ -51,7 +50,6 @@ class Rm(ControlBase):
p.unlink()
class Mv(ControlBase):
sel: list[str]
dst: str