Skip to content

Commit 349f70a

Browse files
whitespace
1 parent d112da0 commit 349f70a

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

sentry_sdk/integrations/chalice.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from chalice import Chalice, ChaliceViewError
1818
from chalice import __version__ as CHALICE_VERSION
1919
from chalice.app import ( # type: ignore
20-
EventSourceHandler as ChaliceEventSourceHandler,
20+
EventSourceHandler as ChaliceEventSourceHandler,
2121
)
2222
except ImportError:
2323
raise DidNotEnable("Chalice is not installed")

sentry_sdk/integrations/clickhouse_driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def __getitem__(self, _):
3333
from clickhouse_driver import VERSION # type: ignore[import-not-found]
3434
from clickhouse_driver.client import Client # type: ignore[import-not-found]
3535
from clickhouse_driver.connection import ( # type: ignore[import-not-found]
36-
Connection,
36+
Connection,
3737
)
3838

3939
except ImportError:

sentry_sdk/integrations/falcon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
if FALCON3: # falcon.request._UNSET is only available in Falcon 3.0+
4545
with capture_internal_exceptions():
4646
from falcon.request import ( # type: ignore[import-not-found, no-redef]
47-
_UNSET as _FALCON_UNSET,
47+
_UNSET as _FALCON_UNSET,
4848
)
4949

5050

sentry_sdk/integrations/gql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
Transport,
1515
)
1616
from gql.transport.exceptions import ( # type: ignore[import-not-found]
17-
TransportQueryError,
17+
TransportQueryError,
1818
)
1919
from graphql import (
2020
DocumentNode,

sentry_sdk/integrations/langchain.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878

7979
try:
8080
from langchain_google_vertexai import ( # type: ignore[import-not-found]
81-
VertexAIEmbeddings,
81+
VertexAIEmbeddings,
8282
)
8383
except ImportError:
8484
VertexAIEmbeddings = None
@@ -95,14 +95,14 @@
9595

9696
try:
9797
from langchain_mistralai import ( # type: ignore[import-not-found]
98-
MistralAIEmbeddings,
98+
MistralAIEmbeddings,
9999
)
100100
except ImportError:
101101
MistralAIEmbeddings = None
102102

103103
try:
104104
from langchain_huggingface import ( # type: ignore[import-not-found]
105-
HuggingFaceEmbeddings,
105+
HuggingFaceEmbeddings,
106106
)
107107
except ImportError:
108108
HuggingFaceEmbeddings = None

sentry_sdk/integrations/mcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
from mcp.server.lowlevel import Server # type: ignore[import-not-found]
2626
from mcp.server.lowlevel.server import request_ctx # type: ignore[import-not-found]
2727
from mcp.server.streamable_http import ( # type: ignore[import-not-found]
28-
StreamableHTTPServerTransport,
28+
StreamableHTTPServerTransport,
2929
)
3030
except ImportError:
3131
raise DidNotEnable("MCP SDK not installed")

sentry_sdk/integrations/opentelemetry/integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
try:
2020
from opentelemetry.instrumentation.django import ( # type: ignore[import-not-found]
21-
DjangoInstrumentor,
21+
DjangoInstrumentor,
2222
)
2323
except ImportError:
2424
DjangoInstrumentor = None

0 commit comments

Comments
 (0)