Skip to content

Commit

Permalink
fix for flake8 E999
Browse files Browse the repository at this point in the history
Signed-off-by: jakimowb <[email protected]>
  • Loading branch information
jakimowb committed Nov 25, 2024
1 parent 719b47b commit 1a08340
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/flake8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.12"
- name: Run flake8
uses: julianwachholz/flake8-action@v2
with:
Expand Down
5 changes: 2 additions & 3 deletions scripts/create_processing_rst.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,12 +176,11 @@ def generateGroupRSTs(rootRst, algorithms: List[QgsProcessingAlgorithm]) -> List
groupFolder = rootRst / groupFolderName(group)
makedirs(groupFolder, exist_ok=True)

# create group index.rst
# create group index.rst
group_points = '=' * len(group)
title = [
f'.. _{group}:\n',
f'{group}',
f'{'=' * len(group)}',
f'{group_points}',
]
text = wrapAutoGenerated(title, 'TITLE')

Expand Down

0 comments on commit 1a08340

Please sign in to comment.