move typing imports to top of file

This commit is contained in:
Jan Petykiewicz 2020-09-10 19:54:25 -07:00
commit 2c2013a0fc
2 changed files with 2 additions and 2 deletions

View file

@ -2,8 +2,8 @@
This module contains all datatypes and parsing/writing functions for
all abstractions below the 'record' or 'block' level.
"""
from fractions import Fraction
from typing import List, Tuple, Type, Union, Optional, Any, Sequence
from fractions import Fraction
from enum import Enum
import math
import struct