Skip to content

Commit 85ccf99

Browse files
authored
Merge pull request #24 from mapswipe/fix/enum-value
fix(enum): fix enums
2 parents 61eafe8 + 0b091f4 commit 85ccf99

File tree

5 files changed

+132
-60
lines changed

5 files changed

+132
-60
lines changed

functions/generated/pyfirebase/pyfirebase_mapswipe/extended_models.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class FbProject(
1212
models.FbProjectReadonlyType,
1313
):
1414
class Config: # type: ignore[reportIncompatibleVariableOverride]
15-
use_enum_values = True
15+
use_enum_values = False
1616
frozen = True
1717
# NOTE: We need to allow extra fields as FbProject
1818
# is not a complete project representation
@@ -24,7 +24,7 @@ class FbMappingGroup(
2424
models.FbMappingGroupReadonlyType,
2525
):
2626
class Config: # type: ignore[reportIncompatibleVariableOverride]
27-
use_enum_values = True
27+
use_enum_values = False
2828
frozen = True
2929
extra = "forbid"
3030

@@ -34,6 +34,6 @@ class FbUser(
3434
models.FbUserReadonlyType,
3535
):
3636
class Config: # type: ignore[reportIncompatibleVariableOverride]
37-
use_enum_values = True
37+
use_enum_values = False
3838
frozen = True
3939
extra = "forbid"

0 commit comments

Comments
 (0)