Skip to content

Commit bb92425

Browse files
CI
1 parent 2526fc7 commit bb92425

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/replit_river/codegen/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ def {_field_name}(
452452
encoder_parts.append((None, "x"))
453453

454454
# Build the ternary chain from encoder_parts
455-
typeddict_encoder: list[str] = []
455+
typeddict_encoder = list[str]()
456456
for i, (type_check, encoder_expr) in enumerate(encoder_parts):
457457
is_last = i == len(encoder_parts) - 1
458458
if is_last or type_check is None:

0 commit comments

Comments
 (0)