Skip to content

Commit 0af7543

Browse files
MattWoodheadzariiii9003
authored andcommitted
re-order imports for ruff
1 parent 01ca3f4 commit 0af7543

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

can/interfaces/ixxat/canlib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Callable, Optional, Sequence, Union, List
1+
from typing import Callable, List, Optional, Sequence, Union
22

33
import can.interfaces.ixxat.canlib_vcinpl as vcinpl
44
import can.interfaces.ixxat.canlib_vcinpl2 as vcinpl2

can/interfaces/ixxat/canlib_vcinpl.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import logging
1515
import sys
1616
import warnings
17-
from typing import Callable, Optional, Sequence, Tuple, Union, List
17+
from typing import Callable, List, Optional, Sequence, Tuple, Union
1818

1919
from can import (
2020
BusABC,
@@ -28,8 +28,8 @@
2828
from can.ctypesutil import HANDLE, PHANDLE, CLibrary
2929
from can.ctypesutil import HRESULT as ctypes_HRESULT
3030
from can.exceptions import CanInitializationError, CanInterfaceNotImplementedError
31-
from can.util import deprecated_args_alias
3231
from can.typechecking import AutoDetectedConfig
32+
from can.util import deprecated_args_alias
3333

3434
from . import constants, structures
3535
from .exceptions import *

0 commit comments

Comments
 (0)