Skip to content

Commit 104699e

Browse files
Regenerate parsers without abstract classes
1 parent ac5ef61 commit 104699e

8 files changed

Lines changed: 1245 additions & 1530 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,10 @@ codespell: FORCE
103103

104104
## format : check/fix all code indentation and formatting (runs black)
105105
format: FORCE
106-
black $(PYSOURCES)
106+
black --target-version py310 $(PYSOURCES)
107107

108108
format-check: FORCE
109-
black --diff --check $(PYSOURCES)
109+
black --target-version py310 --diff --check $(PYSOURCES)
110110

111111
## pylint : run static code analysis on Python code
112112
pylint: FORCE

0 commit comments

Comments
 (0)