Skip to content

Commit

Permalink
Remove unnecessary underscore from module names
Browse files Browse the repository at this point in the history
  • Loading branch information
alegonz committed May 16, 2020
1 parent 5aac6d9 commit d30aa60
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion baikal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# Make the most relevant classes importable from root
from baikal._core.model import Model
from baikal.steps import Step, Input, make_step
from baikal._core._config import get_config, set_config
from baikal._core.config import get_config, set_config
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion baikal/_core/step.py
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@ def _repr(self, n_char_max=700, n_max_elements_to_show=30, depth=None):
-------
repr string of the object.
"""
from baikal._core._pprint import _EstimatorPrettyPrinter, post_process_repr
from baikal._core.pprint import _EstimatorPrettyPrinter, post_process_repr

pp = _EstimatorPrettyPrinter(
compact=True,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[tool.black]
line-length = 88
target-version = ['py35', 'py36', 'py37', 'py38']
force-exclude = "baikal/_core/_pprint.py"
force-exclude = "baikal/_core/pprint.py"

0 comments on commit d30aa60

Please sign in to comment.