We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa386db commit ef508d4Copy full SHA for ef508d4
tests/test_usage.py
@@ -3,7 +3,7 @@
3
4
# Python Repo Template
5
# ..................................
6
-# Copyright (c) 2017-2019, Kendrick Walls
+# Copyright (c) 2017-2024, Kendrick Walls
7
8
# Licensed under MIT (the "License");
9
# you may not use this file except in compliance with the License.
@@ -57,7 +57,7 @@ def buildPythonCommand(args=None):
57
# you need to change this to the name of your project
58
__project__ = str("pythonrepo")
59
try:
60
- if args is None or args is [None]:
+ if args is None or (args == [None]):
61
theArgs = ["exit 1 ; #"]
62
else:
63
theArgs = args
0 commit comments