Change loadmedia to loaddata

This commit is contained in:
Marco Thomas
2020-08-26 16:23:31 +02:00
parent 95eac5b98c
commit 12476199d7
3 changed files with 7 additions and 7 deletions

11
loaddata.py Normal file
View File

@@ -0,0 +1,11 @@
"""
Gather all media data into one file,
so all other files can call it from here
"""
try:
from data.media import __media_anime__, __media_girl__
from data.memes import __memes_list__
except ImportError as error:
print(f"Error while importing: {error}")