Skip to content

Commit

Permalink
refactor(signal_agents): reintroduce NoiseAgent placeholder after mod…
Browse files Browse the repository at this point in the history
…ule refactorization
  • Loading branch information
BjoernLudwigPTB committed Jul 23, 2021
1 parent 6eaaf82 commit f97f4d9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions agentMET4FOF/agents/signal_agents.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,8 @@ def agent_loop(self):
if self.current_state == "Running":
sine_data = self._sine_stream.next_sample() # dictionary
self.send_output(sine_data["quantities"])


class NoiseAgent(AgentMET4FOF):
def on_received_message(self, message):
raise NotImplementedError

0 comments on commit f97f4d9

Please sign in to comment.