]> git.scottworley.com Git - pinch/commitdiff
Re-order definitions
authorScott Worley <scottworley@scottworley.com>
Sat, 13 Jun 2020 06:28:27 +0000 (23:28 -0700)
committerScott Worley <scottworley@scottworley.com>
Thu, 18 Jun 2020 06:11:59 +0000 (23:11 -0700)
pinch.py

index cc653daccb8aaa0d4ce74a80b685a949ab563043..a8af6a67aa6f50b2f6a3dbfba53b45a166d5b71d 100644 (file)
--- a/pinch.py
+++ b/pinch.py
@@ -38,34 +38,6 @@ xdg = XDG(
         os.path.expanduser('~/.cache')))
 
 
-Digest16 = NewType('Digest16', str)
-Digest32 = NewType('Digest32', str)
-
-
-class ChannelTableEntry(types.SimpleNamespace):
-    absolute_url: str
-    digest: Digest16
-    file: str
-    size: int
-    url: str
-
-
-class SearchPath(types.SimpleNamespace):
-    release_name: str
-
-
-class Channel(SearchPath):
-    alias_of: str
-    channel_html: bytes
-    channel_url: str
-    forwarded_url: str
-    git_ref: str
-    git_repo: str
-    git_revision: str
-    old_git_revision: str
-    table: Dict[str, ChannelTableEntry]
-
-
 class VerificationError(Exception):
     pass
 
@@ -101,6 +73,34 @@ class Verification:
         self.result(True)
 
 
+Digest16 = NewType('Digest16', str)
+Digest32 = NewType('Digest32', str)
+
+
+class ChannelTableEntry(types.SimpleNamespace):
+    absolute_url: str
+    digest: Digest16
+    file: str
+    size: int
+    url: str
+
+
+class SearchPath(types.SimpleNamespace):
+    release_name: str
+
+
+class Channel(SearchPath):
+    alias_of: str
+    channel_html: bytes
+    channel_url: str
+    forwarded_url: str
+    git_ref: str
+    git_repo: str
+    git_revision: str
+    old_git_revision: str
+    table: Dict[str, ChannelTableEntry]
+
+
 def compare(a: str, b: str) -> Tuple[List[str], List[str], List[str]]:
 
     def throw(error: OSError) -> None: