mirror of
https://github.com/sherlock-project/sherlock
synced 2024-11-28 14:50:41 +00:00
Fix newline
This commit is contained in:
parent
a785a5931f
commit
9f75d5ed14
2 changed files with 1 additions and 2 deletions
|
@ -20,4 +20,3 @@ class Interactives:
|
||||||
if pattern.search(f.read()):
|
if pattern.search(f.read()):
|
||||||
matching_files.append(file_path)
|
matching_files.append(file_path)
|
||||||
return matching_files
|
return matching_files
|
||||||
|
|
|
@ -6,4 +6,4 @@ def test_versioning() -> None:
|
||||||
assert sherlock.__version__ in Interactives.run_cli("--version")
|
assert sherlock.__version__ in Interactives.run_cli("--version")
|
||||||
# Ensure __init__ is single source of truth for __version__ in package
|
# Ensure __init__ is single source of truth for __version__ in package
|
||||||
# Temporarily allows sherlock.py so as to not trigger early upgrades
|
# Temporarily allows sherlock.py so as to not trigger early upgrades
|
||||||
assert Interactives.walk_sherlock_for_files_with(r'__version__ *= *') == [ "sherlock/__init__.py", "sherlock/sherlock.py" ]
|
assert Interactives.walk_sherlock_for_files_with(r'__version__ *= *') == [ "sherlock/__init__.py", "sherlock/sherlock.py" ]
|
||||||
|
|
Loading…
Reference in a new issue