Skip to content

Commit

Permalink
fix circular import
Browse files Browse the repository at this point in the history
  • Loading branch information
sappelhoff committed Nov 25, 2024
1 parent ed7b1f8 commit fd6afff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pybv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
# Authors: pybv developers
# SPDX-License-Identifier: BSD-3-Clause

from .io import write_brainvision

__all__ = ["write_brainvision"]

try:
from importlib.metadata import version

__version__ = version("pybv")
except Exception:
__version__ = "0.0.0"

from pybv.io import write_brainvision

__all__ = ["write_brainvision"]

0 comments on commit fd6afff

Please sign in to comment.