Skip to content

Commit bb7a4a9

Browse files
committed
Remove format flag from ruff command
1 parent bc2a5f5 commit bb7a4a9

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,4 @@ jobs:
7979
steps:
8080
- uses: actions/checkout@v3
8181
- run: pip install --user ruff
82-
- run: ruff --extend-select=C4,C9,I,PLC,PLE,PLR,U --format=github
83-
--ignore=C414,I001,UP032 --target-version=py37 .
82+
- run: ruff --extend-select=C4,C9,I,PLC,PLE,PLR,U --ignore=C414,I001,UP032 --target-version=py38 .

tests/tests/test_glob.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,4 @@ def test_glob_directory_with_trailing_slash(self):
9696
# ends with os.sep doesn't blow up.
9797
paths = glob.glob('*' + os.sep)
9898
self.assertEqual(len(paths), 4)
99-
self.assertTrue(all([os.sep in path for path in paths]))
99+
self.assertTrue(all(os.sep in path for path in paths))

0 commit comments

Comments
 (0)