Skip to content

Commit

Permalink
Remove redundant Union.
Browse files Browse the repository at this point in the history
Not used to the `x|y` syntax
  • Loading branch information
DMRobertson committed May 29, 2022
1 parent ff6f1b4 commit 15ea157
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stubs/jsonschema/jsonschema/exceptions.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class _Error(Exception):
@classmethod
def create_from(cls: type[Self], other: _Error) -> Self: ...
@property
def absolute_path(self) -> Sequence[Union[str | int]]: ...
def absolute_path(self) -> Sequence[str | int]: ...
@property
def absolute_schema_path(self) -> Sequence[str]: ...
@property
Expand Down

0 comments on commit 15ea157

Please sign in to comment.