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 1ca0eeb commit 487a951Copy full SHA for 487a951
.github/workflows/linter.yml
@@ -18,8 +18,12 @@ jobs:
18
with:
19
python-version: '3.x'
20
21
- - name: Install flake8
22
- run: pip install flake8
+ - name: Install black, flake8
+ run: |
23
+ pip install flake8, black
24
+
25
+ - name: Run black
26
+ run: black . --check -S
27
28
- name: Run flake8
29
run: flake8 .
ForgejoRepoAPI.py
@@ -1,9 +1,7 @@
1
from interface_wrapper import (
2
- IRepositoryAPI,
+ IRepositoryAPI
3
)
4
5
6
class ForgejoRepoAPI(IRepositoryAPI):
7
...
8
-
9
-print(qwe)
0 commit comments