Skip to content

Commit d6d43a8

Browse files
committed
Fixed typos
1 parent 1f2c384 commit d6d43a8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

gqlrequests/query_method.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ def _create_method_head(self, indents: int = 0) -> str:
3232
argument_list.append(f"{key}: {str(value).lower()}")
3333
else:
3434
argument_list.append(f"{key}: {value}")
35-
return " " * (self.start_indent + indent) + f"{self.method_name}({', '.join(argument_list)})"
35+
return (
36+
" " * (self.start_indent + indents)
37+
+ f"{self.method_name}({', '.join(argument_list)})"
38+
)
3639

3740
def _generate_query(self, indents: int = 4) -> str:
3841
return f"{self._create_method_head(indents-4)} " + super()._generate_query(

0 commit comments

Comments
 (0)