Skip to content

Commit d931c4d

Browse files
committed
Add missing imports
1 parent 73bdfdf commit d931c4d

File tree

9 files changed

+10
-1
lines changed

9 files changed

+10
-1
lines changed

troi/content_resolver/artist_search.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
from collections import defaultdict
33
import datetime
44
import sys
5+
from time import sleep
56

67
import peewee
78
import requests

troi/musicbrainz/mbid_mapping.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import requests
22
import ujson
3+
from time import sleep
34

45
from troi import Element, Artist, ArtistCredit, Recording, Release, PipelineError
56

troi/musicbrainz/related_artist_credits.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import copy
22
from collections import defaultdict
3+
from time import sleep
34

45
import requests
56

troi/patches/lb_radio_classes/artist.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
from time import sleep
12

23
import troi
34
from troi import Recording, Artist

troi/patches/lb_radio_classes/collection.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
import troi
21
from random import shuffle
2+
from time import sleep
33

44
import requests
55

6+
import troi
67
from troi import Recording
78
from troi import TARGET_NUMBER_OF_RECORDINGS
89

troi/patches/lb_radio_classes/playlist.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import troi
2+
from time import sleep
23
from random import shuffle
34

45
import requests

troi/playlist.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import logging
22
from collections import defaultdict
33
import json
4+
from time import sleep
45

56

67
import requests

troi/recording_search_service.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from abc import abstractmethod
2+
from time import sleep
23

34
import requests
45

troi/tools/area_lookup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import requests
2+
from time import sleep
23
import ujson
34

45
from troi import PipelineError, DEVELOPMENT_SERVER_URL

0 commit comments

Comments
 (0)