Skip to content
This repository was archived by the owner on Mar 13, 2024. It is now read-only.

Commit a27d2d2

Browse files
OCoppingcoretl
authored andcommitted
Fixed formatting
1 parent eb92586 commit a27d2d2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/dls_python3_skeleton/__main__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,15 @@ def replace_text(text: str) -> str:
8686
git_tmp("pull", SKELETON, "skeleton")
8787
# Move things around
8888
git_tmp("mv", "src/dls_python3_skeleton", f"src/{package}")
89-
git_tmp("mv", "tests/test_dls_python3_skeleton.py", f"tests/test_{package}.py")
89+
git_tmp("mv", "tests/test_dls_python3_skeleton.py",
90+
f"tests/test_{package}.py")
9091
# Change contents of all children known to git
9192
for relative_child in git_tmp("ls-files").splitlines():
9293
child = Path(git_tmp.name) / relative_child
9394
if child.suffix in CHANGE_SUFFIXES and child.name not in IGNORE_FILES:
9495
text = child.read_text()
95-
start_search, end_search = IGNORE_RANGES.get(child.name, (None, None))
96+
start_search, end_search = IGNORE_RANGES.get(child.name,
97+
(None, None))
9698
if start_search:
9799
start_ignore = text.find(start_search)
98100
assert start_ignore > 0, f"{start_search} not in {child.name}"

0 commit comments

Comments
 (0)