Skip to content

Commit

Permalink
refactor(metrological agents and streams): make imports relative
Browse files Browse the repository at this point in the history
  • Loading branch information
BjoernLudwigPTB committed Jun 23, 2021
1 parent 217e0a6 commit 907cdb2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion agentMET4FOF/metrological_agents.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@
from time_series_buffer import TimeSeriesBuffer
from time_series_metadata.scheme import MetaData

from agentMET4FOF.agents import AgentBuffer, AgentMET4FOF
from .agents import AgentBuffer, AgentMET4FOF
from .metrological_streams import (
MetrologicalDataStreamMET4FOF,
MetrologicalSineGenerator,
)


class MetrologicalAgent(AgentMET4FOF):
# dict like {
# <from>: {
Expand Down
2 changes: 1 addition & 1 deletion agentMET4FOF/metrological_streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import pandas as pd
from scipy.stats import norm

from agentMET4FOF.streams import DataStreamMET4FOF
from .streams import DataStreamMET4FOF


class MetrologicalDataStreamMET4FOF(DataStreamMET4FOF):
Expand Down

0 comments on commit 907cdb2

Please sign in to comment.