Skip to content

Commit 77dab76

Browse files
fix: qa issues
1 parent 54e364c commit 77dab76

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

src/askui/agent_base.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,9 @@ def __init__(
119119
self.locate_settings = LocateSettings()
120120
self.caching_settings = CachingSettings()
121121

122-
@telemetry.record_call(exclude={"goal", "act_settings", "tools", "tracing_settings"})
122+
@telemetry.record_call(
123+
exclude={"goal", "act_settings", "tools", "tracing_settings"}
124+
)
123125
@validate_call(config=ConfigDict(arbitrary_types_allowed=True))
124126
def act(
125127
self,

src/askui/telemetry/otel.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import base64
21
import logging
32

43
from opentelemetry import trace
@@ -26,7 +25,7 @@ class OtelSettings(BaseSettings):
2625
enabled: bool = Field(default=False)
2726
b64_secret: SecretStr | None = Field(
2827
default=None,
29-
description="Secret for OTLP authentication, encoded as base64 array." \
28+
description="Secret for OTLP authentication, encoded as base64 array."
3029
"Required when enabled=True.",
3130
)
3231
service_name: str = Field(default="askui-python-sdk")

0 commit comments

Comments
 (0)