Skip to content

Commit 562bd86

Browse files
committed
fix E221
1 parent 5c14d23 commit 562bd86

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,10 @@ requires = ["meson-python>=0.13", "cython>=3.0,<3.1"]
4040
build-backend = "mesonpy"
4141

4242
[tool.cython-lint]
43+
# We currently ignore
44+
# E129 visually indented line with same indent as next logical line
4345
max-line-length = 120
44-
ignore = ['E129','E202','E221','E222','E261','E262','E265','E501','E731','E741','E743']
46+
ignore = ['E129','E222','E261','E262','E265','E501','E731','E741','E743']
4547
exclude = 'src/flint/flintlib/.*'
4648

4749
[tool.spin]

src/flint/types/fq_default.pxd

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ cpdef enum fq_default_type:
1515
These can be manually selected, or type: `fq_default_ctx.DEFAULT` can be used
1616
for the implementation to be automatically decided by Flint (default),
1717
"""
18-
DEFAULT = 0
19-
FQ_ZECH = 1
20-
FQ_NMOD = 2
21-
FQ = 3
22-
NMOD = 4
18+
DEFAULT = 0
19+
FQ_ZECH = 1
20+
FQ_NMOD = 2
21+
FQ = 3
22+
NMOD = 4
2323
FMPZ_MOD = 5
2424

2525
cdef class fq_default_ctx:

0 commit comments

Comments
 (0)