Skip to content

Commit 4074fcd

Browse files
committed
Fix lint issues
1 parent 4ad2d88 commit 4074fcd

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

admin/release.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,9 @@ def get_repo(github_token: str, github_owner: str) -> Repository:
9696

9797

9898
def main() -> None:
99+
"""
100+
Perform a release.
101+
"""
99102
github_token = os.environ['GITHUB_TOKEN']
100103
github_owner = os.environ['GITHUB_OWNER']
101104
repository = get_repo(github_token=github_token, github_owner=github_owner)

dev-requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ autoflake==1.2
33
check-manifest==0.37
44
codecov==2.0.15 # Upload coverage data
55
dodgy==0.1.9 # Look for uploaded secrets
6+
dulwich==0.19.6
67
flake8==3.5.0 # Lint
78
flake8-commas==2.0.0 # Require silicon valley commas
89
flake8-quotes==1.0.0 # Require single quotes
@@ -13,6 +14,7 @@ mypy==0.620 # Type checking
1314
pip_check_reqs==2.0.3
1415
pydocstyle==2.1.1 # Lint docstrings
1516
pyenchant==2.0.0 # Bindings for a spellchecking sytem
17+
pygithub==1.43
1618
pylint==2.1.1 # Lint
1719
pyroma==2.4 # Packaging best practices checker
1820
pytest-cov==2.6.0 # Measure code coverage

0 commit comments

Comments
 (0)