Skip to content

Commit abb1069

Browse files
committed
Fix linter issues
1 parent 0adbe8f commit abb1069

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

  • multinet/api/tasks/upload

multinet/api/tasks/upload/csv.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,11 @@ def process_csv(
8080
if len(processed_rows) == 100000:
8181
table.put_rows(processed_rows)
8282
processed_rows = []
83-
83+
8484
# Put remaining rows
8585
table.put_rows(processed_rows)
8686

8787

88-
8988
def maybe_insert_join_statement(query: str, bind_vars: Dict, table_dict: Dict) -> Tuple[str, Dict]:
9089
"""
9190
Return mutated query and bind_vars to account for joins.

0 commit comments

Comments
 (0)