Skip to content

Commit 1c2e99a

Browse files
authored
Merge pull request #2325 from anujatappeta/corrected-function-calling
commiting to correct function call
2 parents 43e543a + 3f1f253 commit 1c2e99a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/sherlock_interactives.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ class Interactives:
77
def run_cli(args:str = "") -> str:
88
"""Pass arguments to Sherlock as a normal user on the command line"""
99
# Adapt for platform differences (Windows likes to be special)
10-
if platform.system == "Windows":
11-
command:str = f"py -m sherlock {args}"
10+
if platform.system() == "Windows":
11+
command:str = f"py -m sherlock_project {args}"
1212
else:
1313
command:str = f"sherlock {args}"
1414

0 commit comments

Comments
 (0)