Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
jrm5100 committed May 5, 2021
1 parent a3f131f commit a4419a5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pandas_genomics/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
except ModuleNotFoundError:
import importlib_metadata

from . import arrays, io, scalars, sim
from . import io, scalars, sim
from .arrays import GenotypeDtype, GenotypeArray
from .accessors import GenotypeSeriesAccessor, GenotypeDataframeAccessor

__version__ = importlib_metadata.version(__name__)
Expand All @@ -12,6 +13,8 @@
__version__,
GenotypeSeriesAccessor,
GenotypeDataframeAccessor,
GenotypeDtype,
GenotypeArray,
io,
scalars,
sim,
Expand Down

0 comments on commit a4419a5

Please sign in to comment.