@@ -93,7 +93,7 @@ def foo2(list_a, list_b):
9393
9494def foo3(list_a, list_b):
9595 return (
96- # Standlone comment but weirdly placed.
96+ # Standalone comment but weirdly placed.
9797 User.query.filter(User.foo == "bar")
9898 .filter(
9999 db.or_(User.field_a.astext.in_(list_a), User.field_b.astext.in_(list_b))
@@ -221,14 +221,14 @@ def foo3(list_a, list_b):
221221
222222 def foo3(list_a, list_b):
223223- return (
224- - # Standlone comment but weirdly placed.
224+ - # Standalone comment but weirdly placed.
225225- User.query.filter(User.foo == "bar")
226226- .filter(
227227- db.or_(User.field_a.astext.in_(list_a), User.field_b.astext.in_(list_b))
228228- )
229229- .filter(User.xyz.is_(None))
230230- )
231- + return # Standlone comment but weirdly placed.
231+ + return # Standalone comment but weirdly placed.
232232+ User.query.filter(User.foo == "bar").filter(
233233+ db.or_(User.field_a.astext.in_(list_a), User.field_b.astext.in_(list_b))
234234+ ).filter(User.xyz.is_(None))
@@ -327,7 +327,7 @@ def foo2(list_a, list_b):
327327
328328
329329def foo3(list_a, list_b):
330- return # Standlone comment but weirdly placed.
330+ return # Standalone comment but weirdly placed.
331331 User.query.filter(User.foo == "bar").filter(
332332 db.or_(User.field_a.astext.in_(list_a), User.field_b.astext.in_(list_b))
333333 ).filter(User.xyz.is_(None))
@@ -423,7 +423,7 @@ def foo2(list_a, list_b):
423423
424424def foo3(list_a, list_b):
425425 return (
426- # Standlone comment but weirdly placed.
426+ # Standalone comment but weirdly placed.
427427 User.query.filter(User.foo == "bar")
428428 .filter(
429429 db.or_(User.field_a.astext.in_(list_a), User.field_b.astext.in_(list_b))
0 commit comments