Skip to content

Commit

Permalink
pyatls: update pyproject
Browse files Browse the repository at this point in the history
  • Loading branch information
HernanGatta committed Aug 28, 2023
1 parent e5ab5dd commit 9c5b20f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ exclude = '''
# https://pycqa.github.io/isort/docs/configuration/profiles.html
profile = "black"
filter_files = true
line_length = 79 # must be to set to the same value as that in black
line_length = 79 # must be to set to the same value as that in black

# ========== mypy - type checker options ==========
# Global options:
Expand All @@ -37,6 +37,12 @@ warn_unreachable = true
# Per-module options:

[[tool.mypy.overrides]]
module = ["requests", "OpenSSL", "OpenSSL.crypto", "OpenSSL.SSL"]
module = [
"requests",
"requests.adapters",
"OpenSSL",
"OpenSSL.crypto",
"OpenSSL.SSL",
]
# Ignore "missing library stubs or py.typed marker" for all the above modules
ignore_missing_imports = true

0 comments on commit 9c5b20f

Please sign in to comment.