Skip to content

Commit 24c7c0c

Browse files
committed
fix(project): allow extra parameters in project
1 parent 911b7d8 commit 24c7c0c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

functions/generated/pyfirebase/pyfirebase_mapswipe/extended_models.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ class FbProject(
1414
class Config: # type: ignore[reportIncompatibleVariableOverride]
1515
use_enum_values = True
1616
frozen = True
17-
extra = "forbid"
17+
# NOTE: We need to allow extra fields as FbProject
18+
# is not a complete project representation
19+
extra = "allow"
1820

1921

2022
class FbMappingGroup(

0 commit comments

Comments
 (0)