Skip to content

Commit 3e8d8fd

Browse files
committed
delete swp files, fix imports in tests
1 parent 6146a4d commit 3e8d8fd

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
lines changed

docs/source/.library.rst.swp

-12 KB
Binary file not shown.

docs/source/.utils.rst.swp

-12 KB
Binary file not shown.

flowermd/tests/utils/test_ff_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
import pytest
44
from gmso.core.forcefield import ForceField
55

6+
from flowermd.internal.ff_utils import find_xml_ff, xml_to_gmso_ff
67
from flowermd.tests import BaseTest
7-
from flowermd.utils.ff_utils import find_xml_ff, xml_to_gmso_ff
88

99

1010
class TestFFUtils(BaseTest):

flowermd/tests/utils/test_utils.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@
22
import pytest
33
import unyt as u
44

5+
from flowermd.internal import check_return_iterable, validate_ref_value
6+
from flowermd.internal.exceptions import ReferenceUnitError
57
from flowermd.utils import (
68
_calculate_box_length,
7-
check_return_iterable,
89
get_target_box_mass_density,
910
get_target_box_number_density,
10-
validate_ref_value,
1111
)
12-
from flowermd.utils.exceptions import ReferenceUnitError
1312

1413

1514
class TestUtils:

flowermd/utils/.utils.py.swp

-4 KB
Binary file not shown.

flowermd/utils/__init__.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
from .actions import *
22
from .base_types import HOOMDThermostats
3-
from .utils import get_target_box_mass_density, get_target_box_number_density
3+
from .utils import (
4+
_calculate_box_length,
5+
get_target_box_mass_density,
6+
get_target_box_number_density,
7+
)

0 commit comments

Comments
 (0)