Skip to content

Commit b7def00

Browse files
committed
More consistent indentation
1 parent 885a0b3 commit b7def00

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

sqlite_utils/utils.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -304,10 +304,7 @@ class Format(enum.Enum):
304304
rows = rows_from_file(
305305
fp, format=Format.CSV, dialect=csv.excel_tab, encoding=encoding
306306
)[0]
307-
return (
308-
_extra_key_strategy(rows, ignore_extras, extras_key),
309-
Format.TSV,
310-
)
307+
return _extra_key_strategy(rows, ignore_extras, extras_key), Format.TSV
311308
elif format is None:
312309
# Detect the format, then call this recursively
313310
buffered = io.BufferedReader(cast(io.RawIOBase, fp), buffer_size=4096)

0 commit comments

Comments
 (0)