Skip to content

Commit

Permalink
Correctly import ExamplePair
Browse files Browse the repository at this point in the history
  • Loading branch information
joaander committed Dec 2, 2024
1 parent ec5c3ad commit 0817d87
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Copyright (c) 2009-2024 The Regents of the University of Michigan.
# Part of HOOMD-blue, released under the BSD 3-Clause License.

"""Example python module."""
"""Template HOOMD-blue component."""
# TODO: Document your component.

from hoomd.pair_plugin import pair
from . import version
from .pair import ExamplePair

__all__ = ['pair']
__all__ = ['ExamplePair']

0 comments on commit 0817d87

Please sign in to comment.