Skip to content

Commit 34f5826

Browse files
committed
format
1 parent 6c0c68f commit 34f5826

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

devtools/ctx.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Context:
1616
"""Global context used by all rdev commands"""
1717

1818
def __init__(self, verbose: bool) -> None:
19-
self.verbose =verbose
19+
self.verbose = verbose
2020
self.root_path = pathlib.Path(__file__).parent.parent
2121
self.subprojects_path = self.root_path / "subprojects"
2222
self.cfgpath = self.root_path / "rdev.toml"
@@ -74,6 +74,6 @@ def handle_exception(self, msg: str):
7474
except Exception as e:
7575
if self.verbose:
7676
raise
77-
78-
print(f"ERROR: {msg}: {e}",file=sys.stderr)
77+
78+
print(f"ERROR: {msg}: {e}", file=sys.stderr)
7979
sys.exit(1)

devtools/subproject.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ def _run_pip(self, *args: str, cwd=None):
5151
sys.executable, "-m", "pip", "--disable-pip-version-check", *args, cwd=cwd
5252
)
5353

54-
def install_build_deps(self, *, wheel_path: pathlib.Path, other_wheel_path: pathlib.Path):
54+
def install_build_deps(
55+
self, *, wheel_path: pathlib.Path, other_wheel_path: pathlib.Path
56+
):
5557
self._run_pip(
5658
"install",
5759
"--no-index",

0 commit comments

Comments
 (0)