Skip to content

Commit

Permalink
Avoid conflict with PR sublimelsp#2456
Browse files Browse the repository at this point in the history
  • Loading branch information
deathaxe committed Apr 21, 2024
1 parent 804cf7f commit 4856d50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/core/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ def cast(typ, val): # type: ignore
def final(func): # type: ignore
return func

def _make_type(name: str) -> _TypeMeta:
def _make_type(name: str) -> '_TypeMeta':
return _TypeMeta(name, (Type,), {}) # type: ignore

class _TypeMeta(type):
def __getitem__(self, args: Any) -> Any:
def __getitem__(self, args: 'Any') -> 'Any':
if not isinstance(args, tuple):
args = (args,)

Expand Down

0 comments on commit 4856d50

Please sign in to comment.