Skip to content

Commit f59d141

Browse files
committed
linting
1 parent 6018a95 commit f59d141

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: Build and package
2626
env:
27-
CHECK_VERSION: "true"
27+
CHECK_VERSION: 'true'
2828
run: |
2929
pip install wheel
3030
python setup.py sdist bdist_wheel

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ def check_tag_version():
1414
expected_version = read_version()
1515
if tag != f"refs/tags/{expected_version}":
1616
raise Exception(
17-
f"Tag '{tag}' does not match the expected " f"version '{expected_version}'"
17+
f"Tag '{tag}' does not match the expected "
18+
f"version '{expected_version}'"
1819
)
1920

2021

0 commit comments

Comments
 (0)