Skip to content

Commit 1d8237e

Browse files
committed
tuple -> Tuple
1 parent 4cd3a31 commit 1d8237e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lark/load_grammar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,7 @@ def __init__(self, pkg_name: str, search_paths: Tuple[str, ...]=("", )) -> None:
811811
def __repr__(self):
812812
return "%s(%r, %r)" % (type(self).__name__, self.pkg_name, self.search_paths)
813813

814-
def __call__(self, base_path: Union[None, str, PackageResource], grammar_path: str, used_files: Dict[str, tuple[str, str]]=None) -> Tuple[PackageResource, str]:
814+
def __call__(self, base_path: Union[None, str, PackageResource], grammar_path: str, used_files: Dict[str, Tuple[str, str]]=None) -> Tuple[PackageResource, str]:
815815
if base_path is None:
816816
to_try = self.search_paths
817817
else:

0 commit comments

Comments
 (0)