From e95306e58fa20b794b4b1eb9236383bdc57a638d Mon Sep 17 00:00:00 2001 From: glubsy Date: Sat, 14 Aug 2021 02:52:00 +0200 Subject: [PATCH] Fix flake 8 --- core/fs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/core/fs.py b/core/fs.py index abb8c3fc..1f765d09 100644 --- a/core/fs.py +++ b/core/fs.py @@ -39,6 +39,7 @@ CHUNK_SIZE = 1024 * 1024 # 1 MiB # Minimum size below which partial hashes don't need to be computed MIN_FILE_SIZE = 3 * CHUNK_SIZE # 3MiB, because we take 3 samples + class FSError(Exception): cls_message = "An error has occured on '{name}' in '{parent}'"