simplify exclude syntax for mypy in pyproject.toml
This commit is contained in:
parent
4dd206da2a
commit
9cf43dcea1
1 changed files with 4 additions and 4 deletions
|
|
@ -77,10 +77,10 @@ exclude = [
|
|||
|
||||
[tool.mypy]
|
||||
files = "lnbits"
|
||||
exclude = """(?x)(
|
||||
^lnbits/wallets/lnd_grpc_files.
|
||||
| ^lnbits/extensions.
|
||||
)"""
|
||||
exclude = [
|
||||
"^lnbits/wallets/lnd_grpc_files",
|
||||
"^lnbits/extensions",
|
||||
]
|
||||
|
||||
[[tool.mypy.overrides]]
|
||||
module = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue