Skip to content

Commit

Permalink
Fix after CR
Browse files Browse the repository at this point in the history
  • Loading branch information
shalevr committed Jun 11, 2023
1 parent 5dc8f4b commit fe3c784
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,6 @@ class View:
card characters should not be used with this attribute if the view has also a
``name`` defined.
instrument_unit: This is an instrument matching attribute: the unit the
instrument must have to match the view.
meter_name: This is an instrument matching attribute: the name the
instrument meter must have to match the view.
Expand All @@ -79,6 +76,9 @@ class View:
corresponding metrics stream. If `None` an instance of
`DefaultAggregation` will be used.
instrument_unit: This is an instrument matching attribute: the unit the
instrument must have to match the view.
This class is not intended to be subclassed by the user.
"""

Expand All @@ -88,14 +88,14 @@ def __init__(
self,
instrument_type: Optional[Type[Instrument]] = None,
instrument_name: Optional[str] = None,
instrument_unit: Optional[str] = None,
meter_name: Optional[str] = None,
meter_version: Optional[str] = None,
meter_schema_url: Optional[str] = None,
name: Optional[str] = None,
description: Optional[str] = None,
attribute_keys: Optional[Set[str]] = None,
aggregation: Optional[Aggregation] = None,
instrument_unit: Optional[str] = None,
):
if (
instrument_type
Expand Down

0 comments on commit fe3c784

Please sign in to comment.