commiting to correct function call

pull/2325/head
anuja 2 months ago
parent f7075e1b64
commit b7406919dc

@ -7,7 +7,7 @@ class Interactives:
def run_cli(args:str = "") -> str: def run_cli(args:str = "") -> str:
"""Pass arguments to Sherlock as a normal user on the command line""" """Pass arguments to Sherlock as a normal user on the command line"""
# Adapt for platform differences (Windows likes to be special) # Adapt for platform differences (Windows likes to be special)
if platform.system == "Windows": if platform.system() == "Windows":
command:str = f"py -m sherlock {args}" command:str = f"py -m sherlock {args}"
else: else:
command:str = f"sherlock {args}" command:str = f"sherlock {args}"

Loading…
Cancel
Save