Skip to content

Commit

Permalink
Fix import order
Browse files Browse the repository at this point in the history
  • Loading branch information
rgieseke committed Feb 27, 2024
1 parent c127ba9 commit 5e0a5cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions pyhector/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,14 @@
import numpy as np
import pandas as pd

from . import _version
from ._binding import __hector_version__ # noqa: F401 # pylint: disable=E0611
from ._binding import _Hector # pylint: disable=no-name-in-module
from .default_config import _default_config
from .emissions import emissions
from .output import output
from .units import units

from . import _version

__version__ = _version.get_versions()["version"]


Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,10 @@
import os
import sys

from pybind11.setup_helpers import Pybind11Extension
from setuptools import setup
from setuptools.command.test import test as TestCommand

from pybind11.setup_helpers import Pybind11Extension

import versioneer

path = os.path.abspath(os.path.dirname(__file__))
Expand Down

0 comments on commit 5e0a5cb

Please sign in to comment.