add __all__ to modules

This commit is contained in:
Noah Levitt 2015-08-19 19:01:28 +00:00
parent b7df0a1f37
commit 2533229fa1
6 changed files with 12 additions and 3 deletions

View file

@ -6,6 +6,8 @@ import logging
import brozzler
import hashlib
__all__ = ["Site", "Page"]
class BaseDictable:
def to_dict(self):
d = dict(vars(self))