Skip to content

Commit

Permalink
[Fixes #12458] black fails on python3.10 constructs (#12461)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiagiupponi authored Aug 28, 2024
1 parent 1040fd3 commit 285a5d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/flake8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ jobs:
flake8 geonode --count --statistics
- name: "Check: black"
run: black -t py310 --check geonode
run: black --check geonode
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.black]
line-length = 120
target-version = ['py37']
target-version = ['py310', 'py311']
exclude = '''
/(
geonode/.*/migrations/.*
Expand Down

0 comments on commit 285a5d2

Please sign in to comment.