Skip to content

Commit

Permalink
refactor(signal_agents): refactor signal_agents.py by applying black
Browse files Browse the repository at this point in the history
  • Loading branch information
BjoernLudwigPTB committed Jun 29, 2021
1 parent 34f626b commit 396a95e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions agentMET4FOF/agents/signal_agents.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from agentMET4FOF.agents.base_agents import AgentMET4FOF
from agentMET4FOF.streams import SineGenerator
from .base_agents import AgentMET4FOF
from ..streams import SineGenerator


class SineGeneratorAgent(AgentMET4FOF):
Expand Down Expand Up @@ -32,4 +32,4 @@ def agent_loop(self):
"""
if self.current_state == "Running":
sine_data = self._sine_stream.next_sample() # dictionary
self.send_output(sine_data["quantities"])
self.send_output(sine_data["quantities"])

0 comments on commit 396a95e

Please sign in to comment.