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

Commit aca10fd

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/dls_python3_skeleton/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,14 @@ 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",
89+
git_tmp("mv", "tests/test_dls_python3_skeleton.py",
9090
f"tests/test_{package}.py")
9191
# Change contents of all children known to git
9292
for relative_child in git_tmp("ls-files").splitlines():
9393
child = Path(git_tmp.name) / relative_child
9494
if child.suffix in CHANGE_SUFFIXES and child.name not in IGNORE_FILES:
9595
text = child.read_text()
96-
start_search, end_search = IGNORE_RANGES.get(child.name,
96+
start_search, end_search = IGNORE_RANGES.get(child.name,
9797
(None, None))
9898
if start_search:
9999
start_ignore = text.find(start_search)

0 commit comments

Comments
 (0)