We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 697948c commit 71b2381Copy full SHA for 71b2381
python/egglog/runtime.py
@@ -286,8 +286,8 @@ def __hash__(self) -> int:
286
return hash((id(self.__egg_decls_thunk__), self.__egg_tp__))
287
288
# Support unioning like types
289
- def __or__(self, *, __value: type) -> object:
290
- return Union[self, __value] # noqa: UP007
+ def __or__(self, value: type) -> object:
+ return Union[self, value] # noqa: UP007
291
292
@property
293
def __parameters__(self) -> tuple[object, ...]:
0 commit comments