Skip to content

Commit 22c51e1

Browse files
committed
rebase isort fixes
Signed-off-by: Nick Papior <[email protected]>
1 parent 628cee4 commit 22c51e1

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

src/sisl/geom/_composite.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
from dataclasses import dataclass, copy, fields
21
from abc import abstractmethod
2+
from dataclasses import copy, dataclass, fields
33

4-
from sisl.messages import warn, SislError
5-
4+
from sisl.messages import SislError, warn
65

76
__all__ = ["composite_geometry"]
87

src/sisl/geom/nanoribbon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
import numpy as np
88

99
from sisl import Atom, geom
10-
from ._composite import _geom_section, composite_geometry
1110
from sisl._internal import set_module
1211

1312
from ._common import geometry_define_nsc
13+
from ._composite import _geom_section, composite_geometry
1414

1515
__all__ = [
1616
'nanoribbon', 'graphene_nanoribbon', 'agnr', 'zgnr',

src/sisl/geom/tests/test_geom.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
# This Source Code Form is subject to the terms of the Mozilla Public
22
# License, v. 2.0. If a copy of the MPL was not distributed with this
33
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
4-
import numpy as np
5-
import pytest
6-
7-
from functools import partial
84
import itertools
95
import math as m
6+
from functools import partial
7+
108
import numpy as np
9+
import pytest
1110

1211
from sisl import Atom, Lattice, SislError
1312
from sisl._math_small import cross3, dot3

0 commit comments

Comments
 (0)