Fix: PYI044 'from __future__ import annotations' has no effect in stub files, since type checkers automatically treat stubs as having those semantics

This commit is contained in:
Hugo van Kemenade 2024-03-23 20:44:43 +02:00
parent 41ffc1de81
commit 5d37d028d3
2 changed files with 0 additions and 4 deletions

View File

@ -1,5 +1,3 @@
from __future__ import annotations
from typing import Any
def __getattr__(name: str) -> Any: ...

View File

@ -1,5 +1,3 @@
from __future__ import annotations
from typing import Any
def __getattr__(name: str) -> Any: ...