We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc7297f commit 38779a6Copy full SHA for 38779a6
opentelemetry-api/src/opentelemetry/metrics/_internal/__init__.py
@@ -270,13 +270,11 @@ def _register_instrument(
270
else:
271
self._instrument_ids[instrument_id] = advisory
272
273
- return (
274
- _InstrumentRegistrationStatus(
275
- instrument_id=instrument_id,
276
- already_registered=already_registered,
277
- conflict=conflict,
278
- current_advisory=current_advisory,
279
- ),
+ return _InstrumentRegistrationStatus(
+ instrument_id=instrument_id,
+ already_registered=already_registered,
+ conflict=conflict,
+ current_advisory=current_advisory,
280
)
281
282
@abstractmethod
0 commit comments