Skip to content

Commit 3783ff6

Browse files
[pre-commit.ci lite] apply automatic fixes for ruff linting errors
1 parent ea8d038 commit 3783ff6

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

sasdata/abscissa.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
from abc import ABC, abstractmethod
22

33
import numpy as np
4+
from exceptions import InterpretationError
45
from numpy._typing import ArrayLike
5-
66
from quantities.quantity import Quantity
7-
from exceptions import InterpretationError
87
from util import is_increasing
98

109

test/utest_asbscissa.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
import numpy as np
22
import pytest
3-
43
from abscissa import Abscissa, GridAbscissa, MeshgridAbscissa, ScatterAbscissa
4+
from exceptions import InterpretationError
55
from quantities.quantity import Quantity
6-
76
from quantities.units import none
87

9-
from exceptions import InterpretationError
10-
118

129
def test_deterimine_1d_grid():
1310
""" Test that 1D ordered data is grid type"""

0 commit comments

Comments
 (0)