Skip to content

Commit

Permalink
refactor(metrological_streams): refactor metrological_streams.py into…
Browse files Browse the repository at this point in the history
… a package metrological_streams and include classes into streams
  • Loading branch information
BjoernLudwigPTB committed Jun 30, 2021
1 parent 34ff2d0 commit 9da3744
Show file tree
Hide file tree
Showing 4 changed files with 377 additions and 357 deletions.
352 changes: 0 additions & 352 deletions agentMET4FOF/metrological_streams.py

This file was deleted.

17 changes: 17 additions & 0 deletions agentMET4FOF/metrological_streams/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
"""This module ensures backwards compatibility of the module to package refactoring
Up until version 0.8.1 we had several modules instead of the packages `agents` and
`streams`. We have included this package to not break the previously needed import
statements.
"""
from ..streams.base_streams import MetrologicalDataStreamMET4FOF
from ..streams.signal_streams import (
MetrologicalMultiWaveGenerator,
MetrologicalSineGenerator,
)

__all__ = [
"MetrologicalDataStreamMET4FOF",
"MetrologicalMultiWaveGenerator",
"MetrologicalSineGenerator",
]
Loading

0 comments on commit 9da3744

Please sign in to comment.