Verified Commit 3ba5821f authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Fix an incorrect accessor name in parse-stubs

parent d7cfb3d5
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -216,7 +216,7 @@ class Result:
		spans: Mapping[str|int, tuple[int, int]],
	): ...

	def __getattr__(self, item: str|int) -> Any: ...
	def __getitem__(self, item: str|int) -> Any: ...
	def __contains__(self, name: str) -> bool: ...