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