Skip to content

Commit 5791619

Browse files
committed
Re-format after PR suggestion
1 parent e6da128 commit 5791619

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ariadne_codegen/contrib/client_forward_refs.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,9 @@ def _update_imports(self, module: ast.Module):
279279
# unless that's the type we return. This behaviour can differ if you use
280280
# a plugin such as `ShorterResultsPlugin` that will import a type that
281281
# is different from the type returned.
282-
return_types_not_used_as_input |= self.imported_in_method - self.input_and_return_types
282+
return_types_not_used_as_input |= (
283+
self.imported_in_method - self.input_and_return_types
284+
)
283285

284286
if len(return_types_not_used_as_input) == 0:
285287
return None

0 commit comments

Comments
 (0)