Skip to content

Commit

Permalink
Revert "ruff formatting to unbreak main CI (#3964)"
Browse files Browse the repository at this point in the history
This reverts commit f9be184.
  • Loading branch information
masenf committed Sep 23, 2024
1 parent 61332fd commit 21e50dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reflex/vars/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -2667,7 +2667,7 @@ def generic_type_to_actual_type_map(
# call recursively for nested generic types and merge the results
return {
k: v
for generic_arg, actual_arg in zip(generic_args, actual_args, strict=False)
for generic_arg, actual_arg in zip(generic_args, actual_args)
for k, v in generic_type_to_actual_type_map(generic_arg, actual_arg).items()
}

Expand Down

0 comments on commit 21e50dc

Please sign in to comment.