From b7406919dc7c6c816b334c432f8f19d01b4f5579 Mon Sep 17 00:00:00 2001 From: anuja Date: Fri, 11 Oct 2024 07:53:59 +0530 Subject: [PATCH] commiting to correct function call --- tests/sherlock_interactives.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/sherlock_interactives.py b/tests/sherlock_interactives.py index 2c9d9d9..407475c 100644 --- a/tests/sherlock_interactives.py +++ b/tests/sherlock_interactives.py @@ -7,7 +7,7 @@ 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": + if platform.system() == "Windows": command:str = f"py -m sherlock {args}" else: command:str = f"sherlock {args}"