Skip to content

Commit

Permalink
DONT MERGE
Browse files Browse the repository at this point in the history
Co-authored-by: DetachHead <57028336+DetachHead@users.noreply.github.com>
  • Loading branch information
KotlinIsland and DetachHead authored Apr 9, 2024
1 parent c127cfb commit ce48e67
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ if sys.version_info < (3, 11):
Any: _SpecialForm
else:
class _AnyMeta(type): ...
class Any(metaclass=_AnyMeta): ...
class _Any(metaclass=_AnyMeta): ...
Any = _Any # TEST ONLY

def final(f: _T) -> _T: ...
@final
Expand Down

0 comments on commit ce48e67

Please sign in to comment.