Skip to content

Commit 0033331

Browse files
author
ci.datadog-api-spec
committed
pre-commit fixes
1 parent aec3071 commit 0033331

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/datadog_api_client/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def __init__(self, configuration: Configuration):
5555

5656
# Cache for validation performance optimization - persists across requests
5757
# Simple size limiting to prevent memory leaks
58-
self._validation_cache: dict[str, Any] = {}
58+
self._validation_cache = {}
5959
self._validation_cache_max_size = 1000 # Configurable limit
6060
if self.configuration.compress:
6161
self.default_headers["Accept-Encoding"] = "gzip"

0 commit comments

Comments
 (0)