Skip to content

Commit 4c6aef3

Browse files
committed
fix check_os if statement
1 parent 25d6365 commit 4c6aef3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

pycrossclicker.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,10 @@ def run(self):
125125

126126

127127
def check_os():
128-
if sys.platform == "darwin" or "linux":
129-
os.system("clear")
130-
else:
128+
if sys.platform == "win32":
131129
os.system("cls")
130+
else:
131+
os.system("clear")
132132

133133
# ———————————————————————————————————————————————————————
134134
# ———————————————————————————————————————————————————————

0 commit comments

Comments
 (0)