Skip to content

Commit

Permalink
Fix pylance got confused by dict
Browse files Browse the repository at this point in the history
  • Loading branch information
DoctorJohn committed Jan 2, 2024
1 parent 992c5a6 commit 7b46c80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiogqlc/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def separate_files(path: str, obj: VariableValue) -> VariableValue:
if variables is None:
return None, files_to_paths_mapping

nulled_variables = dict(
nulled_variables: Variables = dict(
(key, separate_files(f"variables.{key}", value))
for key, value in variables.items()
)
Expand Down

0 comments on commit 7b46c80

Please sign in to comment.