Skip to content

Commit f2a8f0a

Browse files
committed
adding missing type annotation
1 parent 9a33443 commit f2a8f0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

piccolo/columns/readable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def _columns_string(self) -> str:
2626
[i._meta.get_full_name(just_alias=True) for i in self.columns]
2727
)
2828

29-
def _get_string(self, operator: str):
29+
def _get_string(self, operator: str) -> str:
3030
return (
3131
f"{operator}('{self.template}', {self._columns_string}) AS "
3232
f"{self.output_name}"

0 commit comments

Comments
 (0)