add exception to __init__

This commit is contained in:
Matt Cooper 2019-08-31 07:00:55 -04:00 committed by GitHub
parent 20256fa38e
commit 78bcc281cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -41,6 +41,9 @@ from scrython.symbology import Symbology
#Import bulk-data
from scrython.bulk_data import BulkData
#Utility
from scrython.foundation import ScryfallError
__all__ = [
'Autocomplete',
'Collector',
@ -72,5 +75,6 @@ __all__ = [
'ArtistNames',
'ParseMana',
'Symbology',
'BulkData'
]
'BulkData',
'ScryfallError',
]