From 3bd19ca5a5ff2693038d72bd6a162c13bb14c280 Mon Sep 17 00:00:00 2001 From: Nanda Scott Date: Wed, 24 Oct 2018 16:48:48 -0400 Subject: [PATCH] Added __all__ to allow for wildcard import --- scrython/__init__.py | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/scrython/__init__.py b/scrython/__init__.py index 6652a97..f7b74f1 100644 --- a/scrython/__init__.py +++ b/scrython/__init__.py @@ -39,4 +39,38 @@ from scrython.symbology import ParseMana from scrython.symbology import Symbology #Import bulk-data -from scrython.bulk_data import BulkData \ No newline at end of file +from scrython.bulk_data import BulkData + +__all__ = [ + 'Autocomplete', + 'Collector', + 'Id', + 'Mtgo', + 'Multiverse', + 'Named', + 'Random', + 'Search', + 'ArenaId', + 'Mtgo', + 'Multiverse', + 'Id', + 'Code', + 'Code', + 'Sets', + 'ArtifactTypes', + 'CardNames', + 'CreatureTypes', + 'EnchantmentTypes', + 'LandTypes', + 'Loyalties', + 'PlaneswalkerTypes', + 'Powers', + 'SpellTypes', + 'Toughnesses', + 'Watermarks', + 'WordBank', + 'ArtistNames', + 'ParseMana', + 'Symbology', + 'BulkData' +] \ No newline at end of file