Skip to content

Commit 9d61313

Browse files
committed
Fix for TypeError, closes #42
1 parent 279f2ba commit 9d61313

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

twitter_to_sqlite/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ def user_timeline(
281281
ids = False
282282

283283
format_string = (
284-
"@{:" + str(max(len(identifier) for identifier in identifiers)) + "}"
284+
"@{:" + str(max(len(str(identifier)) for identifier in identifiers)) + "}"
285285
)
286286

287287
for identifier in identifiers:

0 commit comments

Comments
 (0)