[CodeFactor](https://www.codefactor.io/repository/github/reactive-firewall/python-repo/overview/master) found an issue: Dangerous default value [] as argument It's currently on: [tests\test_usage.py:88 ](https://www.codefactor.io/repository/github/reactive-firewall/python-repo/source/master/tests/test_usage.py#L88) Instead the code should be something like: ```python def timePythonCommand(args=None, stderr=None): if args is None: args = [None] .... ```