commiting to correct function call

This commit is contained in:
anuja 2024-10-11 07:53:59 +05:30
parent f7075e1b64
commit b7406919dc

View file

@ -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}"