Linting, removed extra line from pyproject.toml.

This commit is contained in:
Leo Vasanko
2023-11-08 13:08:46 -08:00
parent 9bbbc829a1
commit e26cb8f70a
10 changed files with 1 additions and 11 deletions

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