Skip to content

Commit 487a951

Browse files
f
1 parent 1ca0eeb commit 487a951

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/linter.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,12 @@ jobs:
1818
with:
1919
python-version: '3.x'
2020

21-
- name: Install flake8
22-
run: pip install flake8
21+
- name: Install black, flake8
22+
run: |
23+
pip install flake8, black
24+
25+
- name: Run black
26+
run: black . --check -S
2327

2428
- name: Run flake8
2529
run: flake8 .

ForgejoRepoAPI.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
from interface_wrapper import (
2-
IRepositoryAPI,
2+
IRepositoryAPI
33
)
44

55

66
class ForgejoRepoAPI(IRepositoryAPI):
77
...
8-
9-
print(qwe)

0 commit comments

Comments
 (0)