We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e2198d commit 3cbc0f9Copy full SHA for 3cbc0f9
gel/_internal/_qbmodel/_abstract/_primitive.py
@@ -501,6 +501,9 @@ def get_py_type_from_gel_type(tp: type[GelType]) -> Any:
501
case t if issubclass(t, PyTypeScalar):
502
return t.__gel_py_type__
503
504
+ case t if issubclass(t, AnyEnum):
505
+ return t
506
+
507
case t:
508
raise NotImplementedError(
509
f"get_py_type({t.__name__}) is not implemented"
0 commit comments