From 0a862abcd0ca706fdacbf4e13f4ed9d0ac6849dd Mon Sep 17 00:00:00 2001 From: Joakim Soderlund Date: Sat, 4 Nov 2017 16:08:19 +0100 Subject: [PATCH] Add member declaration to stampers module --- fimfarchive/stampers.py | 5 +++++ tests/test_imports.py | 1 + 2 files changed, 6 insertions(+) diff --git a/fimfarchive/stampers.py b/fimfarchive/stampers.py index 62bd7a6..ba7f4bb 100644 --- a/fimfarchive/stampers.py +++ b/fimfarchive/stampers.py @@ -27,6 +27,11 @@ from typing import Any, Dict from fimfarchive.stories import Story +__all__ = ( + 'Stamper', +) + + class Stamper: """ Adds archive-related information to stories. diff --git a/tests/test_imports.py b/tests/test_imports.py index 7501661..ef3d234 100644 --- a/tests/test_imports.py +++ b/tests/test_imports.py @@ -33,6 +33,7 @@ MODULES = ( 'mappers', 'selectors', 'signals', + 'stampers', 'stories', 'tasks', 'utils',