Skip to content

Commit

Permalink
pylint: ignore 'use-dict-literal', increase max limits
Browse files Browse the repository at this point in the history
  • Loading branch information
MuellerSeb committed Jun 6, 2023
1 parent cab5baf commit e6867d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,9 @@ target-version = [
max-args = 20
max-locals = 50
max-branches = 30
max-statements = 80
max-statements = 85
max-attributes = 25
max-public-methods = 75
max-public-methods = 80

[tool.cibuildwheel]
# Switch to using build
Expand Down
2 changes: 1 addition & 1 deletion src/gstools/transform/field.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
normal_to_arcsin
normal_to_uquad
"""
# pylint: disable=C0103, C0123, R0911
# pylint: disable=C0103, C0123, R0911, R1735
import numpy as np

from gstools.normalizer import (
Expand Down

0 comments on commit e6867d6

Please sign in to comment.