You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For each book, a dict X is created using a string of the clip position as key.
Then clips are written for each pos in sorted(X), so that e.g. "3748" comes before "410".
For the moment I'm using an inefficient:
for pos in sorted([int(x) for x in clips[book].keys()]):
in export_txt.
The text was updated successfully, but these errors were encountered:
For each book, a dict X is created using a string of the clip position as key.
Then clips are written for each pos in sorted(X), so that e.g. "3748" comes before "410".
For the moment I'm using an inefficient:
in export_txt.
The text was updated successfully, but these errors were encountered: