Skip to content

Commit 88448d2

Browse files
committed
lint
1 parent 460884d commit 88448d2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

torchao/dtypes/uintx/marlin_qqq_tensor.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def __tensor_unflatten__(
179179
def get_plain(self):
180180
from torchao.quantization.marlin_qqq import (
181181
unpack_from_marlin_qqq,
182-
) # avoid circular import
182+
)
183183

184184
int_data_expanded, s_group_expanded, s_channel_expanded = (
185185
unpack_from_marlin_qqq(
@@ -207,7 +207,7 @@ def from_plain(
207207
from torchao.quantization.marlin_qqq import (
208208
const,
209209
pack_to_marlin_qqq,
210-
) # avoid circular import
210+
)
211211

212212
assert isinstance(_layout, MarlinQQQLayout)
213213

torchao/dtypes/uintx/marlin_sparse_layout.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ def __tensor_unflatten__(
195195
def get_plain(self):
196196
from torchao.sparsity.marlin import (
197197
unpack_from_marlin_24,
198-
) # avoid circular import
198+
)
199199

200200
int_data_expanded, scales_expanded = unpack_from_marlin_24(
201201
self.int_data,
@@ -220,7 +220,7 @@ def from_plain(
220220
from torchao.sparsity.marlin import (
221221
const,
222222
pack_to_marlin_24,
223-
) # avoid circular import
223+
)
224224

225225
assert isinstance(_layout, MarlinSparseLayout)
226226

0 commit comments

Comments
 (0)