We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f97c2d8 commit c6a1d2cCopy full SHA for c6a1d2c
mypy/options.py
@@ -416,13 +416,11 @@ def __init__(self) -> None:
416
417
def use_lowercase_names(self) -> bool:
418
warnings.warn(
419
- "options.use_lowercase_names is deprecated and will be removed in a future version",
+ "options.use_lowercase_names() is deprecated and will be removed in a future version",
420
DeprecationWarning,
421
stacklevel=2,
422
)
423
- if self.python_version >= (3, 9):
424
- return not self.force_uppercase_builtins
425
- return False
+ return True
426
427
def use_or_syntax(self) -> bool:
428
if self.python_version >= (3, 10):
0 commit comments