Skip to content

Commit bc26f7c

Browse files
committed
push
1 parent d6a54b1 commit bc26f7c

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ repos:
1212
types_or: [python, pyi, jupyter]
1313

1414
- repo: https://github.com/pre-commit/mirrors-mypy
15-
rev: v1.8.0
15+
rev: v1.18.2
1616
hooks:
1717
- id: mypy
1818
additional_dependencies:

langfuse/_client/client.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,9 +211,7 @@ def __init__(
211211
additional_headers: Optional[Dict[str, str]] = None,
212212
tracer_provider: Optional[TracerProvider] = None,
213213
):
214-
self._host = host or cast(
215-
str, os.environ.get(LANGFUSE_HOST, "https://cloud.langfuse.com")
216-
)
214+
self._host = host or os.environ.get(LANGFUSE_HOST, "https://cloud.langfuse.com")
217215
self._environment = environment or cast(
218216
str, os.environ.get(LANGFUSE_TRACING_ENVIRONMENT)
219217
)

0 commit comments

Comments
 (0)