Skip to content

Commit

Permalink
fix(reBin): module renamed to binning, fixes name clashes with docs gen
Browse files Browse the repository at this point in the history
  • Loading branch information
ibressler committed Mar 27, 2023
1 parent 01a15c1 commit ec959fb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/jupyter_analysis_tools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# -*- coding: utf-8 -*-
# __init__.py

__version__ = '0.1.4'
__version__ = "0.1.4"

from .binning import reBin
from .git import checkRepo, isNBstripoutActivated, isNBstripoutInstalled, isRepo
from .notebook_utils import currentNBpath
from .readdata import readdata
from .readdata import readdata as readPDH
from .reBin import reBin
from .utils import setLocaleUTF8
from .widgets import PathSelector, showBoolStatus

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ extend-exclude =
.ipynb_checkpoints
per-file-ignores =
__init__.py:F401,
reBin.py:E741
binning.py:E741
extend-ignore = E203

[pytest]
Expand Down

0 comments on commit ec959fb

Please sign in to comment.