Skip to content

Commit b426268

Browse files
committed
Addressed xray tool type checking
1 parent f91d310 commit b426268

File tree

1 file changed

+1
-1
lines changed
  • lib/idp_common_pkg/idp_common/agents/error_analyzer/tools

1 file changed

+1
-1
lines changed

lib/idp_common_pkg/idp_common/agents/error_analyzer/tools/xray_tool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ def _get_trace_id_from_dynamodb(document_id: str) -> Optional[str]:
223223

224224
try:
225225
dynamodb = boto3.resource("dynamodb")
226-
tracking_table = dynamodb.Table(tracking_table_name)
226+
tracking_table = dynamodb.Table(tracking_table_name) # type: ignore[attr-defined]
227227

228228
response = tracking_table.get_item(
229229
Key={"PK": f"doc#{document_id}", "SK": "none"}

0 commit comments

Comments
 (0)