Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
mike dupont committed Sep 17, 2023
1 parent f3876c8 commit a41c94e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/introspector/observe.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from .modes import get_inputs as get_mode
from .concepts import get_inputs as get_concept
from .get_inputs import get_ont_inputs
from .find_inputs import find_inputs

def observe():
Expand All @@ -8,7 +9,7 @@ def observe():

if mode == "concept-inputs":
yield from find_inputs(concept)
elif amode == "one-input":
yield from get_inputs.get_inputs()
elif mode == "one-input":
yield from get_one_input()
else:
st.write("something")

0 comments on commit a41c94e

Please sign in to comment.