Skip to content

Commit

Permalink
Fix ruff liting
Browse files Browse the repository at this point in the history
  • Loading branch information
protoroto committed Aug 25, 2023
1 parent 235266c commit 2e73c89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app_helper/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def test(test_labels, application, failfast=False, test_runner=None, runner_opti
test_labels = ["tests"]
elif os.path.exists(os.path.join(application, "tests")):
test_labels = ["%s.tests" % application]
elif type(test_labels) is str: # pragma: no cover
elif isinstance(test_labels, str): # pragma: no cover
test_labels = [test_labels]
runner_options = runner_options or []
return _test_run_worker(test_labels, test_runner, failfast, runner_options, verbose)
Expand Down
1 change: 1 addition & 0 deletions changes/232.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix ruff linting

0 comments on commit 2e73c89

Please sign in to comment.