Skip to content

Commit

Permalink
fixes recc by pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
surajkannur committed Sep 11, 2024
1 parent 726273b commit 9f4d080
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
2 changes: 1 addition & 1 deletion freud/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


# cluster,; density,; diffraction,; environment,; interface,; msd,; order,
from . import box, data, locality, parallel, pmft, interface
from . import box, data, interface, locality, parallel, pmft
from .box import Box
from .locality import AABBQuery, LinkCell, NeighborList
from .parallel import NumThreads, get_num_threads, set_num_threads
Expand Down
8 changes: 0 additions & 8 deletions freud/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,11 @@
between sets of points.
"""

import numpy as np

from freud.locality import _PairCompute, _make_default_nlist
from freud.util import _Compute

# import freud.locality

import numpy as np

# numpy must be initialized. When using numpy from C or Cython you must
# _always_ do that, or you will have segfaults
# np.import_array()


class Interface(_PairCompute):
r"""Measures the interface between two sets of points."""
Expand Down

0 comments on commit 9f4d080

Please sign in to comment.