Skip to content

Commit

Permalink
black hotfix
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Robeer <marcel_robeer@hotmail.com>
  • Loading branch information
MarcelRobeer committed Mar 18, 2024
1 parent 031c3e0 commit 27df2ce
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
7 changes: 7 additions & 0 deletions docs/source/api/explabox.explain.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,10 @@ explabox.explain
:members:
:undoc-members:
:show-inheritance:

*Subpackages*:

.. toctree::
:maxdepth: 4

explabox.explain.text
8 changes: 5 additions & 3 deletions explabox/expose/text/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,11 @@ def input_space(
generators = [generators]

generators = [
GENERATORS[str.lower(generator)]()
if isinstance(generator, str) and str.lower(generator) in GENERATORS
else generator
(
GENERATORS[str.lower(generator)]()
if isinstance(generator, str) and str.lower(generator) in GENERATORS
else generator
)
for generator in generators
]

Expand Down

0 comments on commit 27df2ce

Please sign in to comment.