From 299ea998c395734b3664acb89936b02f7d60f877 Mon Sep 17 00:00:00 2001 From: Samuel Colvin Date: Wed, 1 May 2024 13:50:05 +0100 Subject: [PATCH] fix linting --- .../tests/test_fastapi_instrumentation.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/instrumentation/opentelemetry-instrumentation-fastapi/tests/test_fastapi_instrumentation.py b/instrumentation/opentelemetry-instrumentation-fastapi/tests/test_fastapi_instrumentation.py index cebf764e6e..135a12d412 100644 --- a/instrumentation/opentelemetry-instrumentation-fastapi/tests/test_fastapi_instrumentation.py +++ b/instrumentation/opentelemetry-instrumentation-fastapi/tests/test_fastapi_instrumentation.py @@ -558,10 +558,10 @@ def __len__(self): return len(self._items) def __getitem__(self, __key): - raise NotImplementedError('use .items() instead') + raise NotImplementedError("use .items() instead") def __iter__(self): - raise NotImplementedError('use .items() instead') + raise NotImplementedError("use .items() instead") def items(self): return self._items