Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sarafonseca-123 authored and ocelotl committed Feb 5, 2024
1 parent 2ac9b9e commit 91a1265
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ def create_gauge(
unit: str = "",
description: str = "",
) -> Gauge:
"""Creates an `Gauge` instrument
"""Creates a `Gauge` instrument
Args:
name: The name of the instrument to be created
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -398,9 +398,7 @@ def _create_real_instrument(
)

class Gauge(Synchronous):
"""A Gauge is a synchronous `Instrument` which reports non-additive value(s) (e.g.
the room temperature - it makes no sense to report the temperature value from multiple rooms
and sum them up) when the instrument is being observed."""
"""A Gauge is a synchronous `Instrument` which can be used to record non-additive values as they occur."""
@abstractmethod
def set(
self,
Expand Down

0 comments on commit 91a1265

Please sign in to comment.