Skip to content

Commit 81b49cb

Browse files
committed
isort
1 parent 2347e1c commit 81b49cb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/gfloat/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
from .block import (
44
BlockFormatInfo,
5+
compute_scale_amax,
56
decode_block,
67
encode_block,
78
quantize_block,
8-
compute_scale_amax,
99
)
1010
from .decode import decode_float
1111
from .printing import float_pow2str, float_tilde_unless_roundtrip_str

src/gfloat/block.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
# https://en.wikipedia.org/wiki/Block_floating_point
55

66
from dataclasses import dataclass
7-
from typing import Iterable, Callable
7+
from typing import Callable, Iterable
8+
89
import numpy as np
910
import numpy.typing as npt
1011

0 commit comments

Comments
 (0)