style: fix pyflakes warnings of unused imports

This commit is contained in:
James Graham
2020-12-02 14:25:49 +00:00
parent f95e06aa18
commit d6e42cc18d
3 changed files with 20 additions and 0 deletions

View File

@@ -2,3 +2,9 @@ from . import (
activities,
people
)
__all__ = [
'activities',
'people',
]