Skip to content

Commit

Permalink
removed extra lines and double import
Browse files Browse the repository at this point in the history
  • Loading branch information
Evana Gizzi committed Oct 6, 2023
1 parent ced65ec commit 3bfd5ee
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions onair/src/ai_components/learners_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
Data driven learning class for managing all data driven AI components
"""
import importlib.util
import importlib.util

from ..util.data_conversion import *

Expand Down Expand Up @@ -41,6 +40,3 @@ def render_reasoning(self):
for plugin in self.ai_constructs:
diagnoses[plugin.component_name] = plugin.render_reasoning()
return diagnoses



4 changes: 0 additions & 4 deletions onair/src/ai_components/planners_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
Planners interface class for managing all planning-based AI components
"""
import importlib.util
import importlib.util

from ..util.data_conversion import *

Expand Down Expand Up @@ -41,6 +40,3 @@ def render_reasoning(self):
for plugin in self.ai_constructs:
diagnoses[plugin.component_name] = plugin.render_reasoning()
return diagnoses



0 comments on commit 3bfd5ee

Please sign in to comment.