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
+6
View File
@@ -2,3 +2,9 @@ from . import (
activities,
people
)
__all__ = [
'activities',
'people',
]
+7
View File
@@ -4,3 +4,10 @@ from . import (
activities,
people
)
__all__ = [
'activities',
'people',
'ExportListView',
]
+7
View File
@@ -7,3 +7,10 @@ from . import (
person,
relationship
)
__all__ = [
'network',
'person',
'relationship',
]