From 422360de4e371c88f67eb62ae2dcf4d5dbc65e49 Mon Sep 17 00:00:00 2001 From: Idan Dor Date: Fri, 4 Nov 2022 16:10:58 +0200 Subject: [PATCH] Fixed whitespacing for flake8. --- sites/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sites/__init__.py b/sites/__init__.py index 7c373ab..7e93a50 100644 --- a/sites/__init__.py +++ b/sites/__init__.py @@ -27,6 +27,7 @@ class Image: contents = attr.ib() content_type = attr.ib() + @attr.s class Chapter: title = attr.ib() @@ -34,6 +35,7 @@ class Chapter: date = attr.ib(default=False) images = attr.ib(default=attr.Factory(list)) + @attr.s class Section: title = attr.ib()