mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2025-06-16 10:06:39 +00:00
Remove type annotation ignore rules from lint configuration in pyproject.toml
This commit is contained in:
parent
fea2493b98
commit
f852e83363
@ -60,7 +60,5 @@ exclude = ["doc"]
|
|||||||
select = ["F", "E", "W", "I", "N", "ANN"]
|
select = ["F", "E", "W", "I", "N", "ANN"]
|
||||||
ignore = [
|
ignore = [
|
||||||
"E501", # formatter takes care of lines that are too long besides documentation
|
"E501", # formatter takes care of lines that are too long besides documentation
|
||||||
"ANN101", # Missing type annotation for `self` in method
|
|
||||||
"ANN102", # Missing type annotation for `cls` in classmethod
|
|
||||||
"ANN401", # Dynamically typed expressions (typing.Any) are not type checked
|
"ANN401", # Dynamically typed expressions (typing.Any) are not type checked
|
||||||
]
|
]
|
||||||
|
@ -41,7 +41,5 @@ version = {attr = "telethon_generator.version.__version__"}
|
|||||||
select = ["F", "E", "W", "I", "N", "ANN"]
|
select = ["F", "E", "W", "I", "N", "ANN"]
|
||||||
ignore = [
|
ignore = [
|
||||||
"E501", # formatter takes care of lines that are too long besides documentation
|
"E501", # formatter takes care of lines that are too long besides documentation
|
||||||
"ANN101", # Missing type annotation for `self` in method
|
|
||||||
"ANN102", # Missing type annotation for `cls` in classmethod
|
|
||||||
"ANN401", # Dynamically typed expressions (typing.Any) are not type checked
|
"ANN401", # Dynamically typed expressions (typing.Any) are not type checked
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user