Skip to content

Commit

Permalink
Merge pull request #2325 from anujatappeta/corrected-function-calling
Browse files Browse the repository at this point in the history
commiting to correct function call
  • Loading branch information
ppfeister authored Nov 1, 2024
2 parents 43e543a + 3f1f253 commit 1c2e99a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/sherlock_interactives.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ class Interactives:
def run_cli(args:str = "") -> str:
"""Pass arguments to Sherlock as a normal user on the command line"""
# Adapt for platform differences (Windows likes to be special)
if platform.system == "Windows":
command:str = f"py -m sherlock {args}"
if platform.system() == "Windows":
command:str = f"py -m sherlock_project {args}"
else:
command:str = f"sherlock {args}"

Expand Down

0 comments on commit 1c2e99a

Please sign in to comment.