From e59b7b1bbd58d37d05b660a3cfc61b024d48c52f Mon Sep 17 00:00:00 2001
From: Reid 'arrdem' McKenzie <me@arrdem.com>
Date: Sun, 10 Oct 2021 21:40:27 -0600
Subject: [PATCH] Fmt.

---
 projects/archiver/hash_copy.py | 1 +
 projects/archiver/util.py      | 3 +--
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/projects/archiver/hash_copy.py b/projects/archiver/hash_copy.py
index 7fc439e..c722c3b 100644
--- a/projects/archiver/hash_copy.py
+++ b/projects/archiver/hash_copy.py
@@ -8,6 +8,7 @@ from shutil import copy2 as copyfile
 
 from .util import *
 
+
 parser = argparse.ArgumentParser()
 parser.add_argument("from_dir", type=Path)
 parser.add_argument("to_dir", type=Path)
diff --git a/projects/archiver/util.py b/projects/archiver/util.py
index 0eaadb9..c454154 100644
--- a/projects/archiver/util.py
+++ b/projects/archiver/util.py
@@ -1,7 +1,6 @@
-import typing as t
-
 from hashlib import sha256
 from pathlib import Path
+import typing as t
 
 
 def iter_chunks(fp):