Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion WrenchCL/Connect/ProcessingTracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@
from ..Decorators import SingletonClass

# from ..Types.TTLSet import TTLSet
TTLSet = set # type: ignore[assignment] # TODO: TTLSet not yet implemented
class TTLSet(set): # type: ignore[override]
"""Stub for TTLSet — accepts ttl kwarg, behaves as a plain set until TTLSet is implemented."""

def __init__(self, *args: object, ttl: int = 0, **kwargs: object) -> None:
super().__init__(*args, **kwargs)

if TYPE_CHECKING:
from mypy_boto3_rds import RDSClient
Expand Down
2 changes: 1 addition & 1 deletion WrenchCL/Connect/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def _dep_available(name: str) -> bool:
f"AWS functionality requires additional dependencies.\n"
f"Missing Packages:\n -{missing_str}\n"
f"Install with: pip install 'WrenchCL[aws]'"
)
) from None

from .AwsClientHub import AwsClientHub
from .Lambda import handle_lambda_response
Expand Down
1 change: 0 additions & 1 deletion WrenchCL/_Internal/Logging/Api/__init__.py

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 0 additions & 1 deletion WrenchCL/_Internal/Logging/Api/base_logger.py

This file was deleted.

1 change: 0 additions & 1 deletion WrenchCL/_Internal/Logging/Api/internal_api.py

This file was deleted.

1 change: 0 additions & 1 deletion WrenchCL/_Internal/Logging/Api/managed_loggers.py

This file was deleted.

1 change: 0 additions & 1 deletion WrenchCL/_Internal/Logging/Api/stream_manager.py

This file was deleted.

1 change: 0 additions & 1 deletion WrenchCL/_Internal/Logging/Api/usage_example.py

This file was deleted.

1 change: 0 additions & 1 deletion WrenchCL/_Internal/Logging/ColorService.py

This file was deleted.

1 change: 0 additions & 1 deletion WrenchCL/_Internal/Logging/ContextFilter.py

This file was deleted.

1 change: 0 additions & 1 deletion WrenchCL/_Internal/Logging/DataClasses.py

This file was deleted.

1 change: 0 additions & 1 deletion WrenchCL/_Internal/Logging/DatadogTraceInjectionFilter.py

This file was deleted.

1 change: 0 additions & 1 deletion WrenchCL/_Internal/Logging/Formatters.py

This file was deleted.

1 change: 0 additions & 1 deletion WrenchCL/_Internal/Logging/LogManagers.py

This file was deleted.

1 change: 0 additions & 1 deletion WrenchCL/_Internal/Logging/LoggerConfigState.py

This file was deleted.

1 change: 0 additions & 1 deletion WrenchCL/_Internal/Logging/MarkupHandlers.py

This file was deleted.

1 change: 0 additions & 1 deletion WrenchCL/_Internal/Logging/MessageProcessors.py

This file was deleted.

1 change: 0 additions & 1 deletion WrenchCL/_Internal/Logging/__init__.py

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 0 additions & 1 deletion WrenchCL/_Internal/Logging/logging_utils.py

This file was deleted.

46 changes: 0 additions & 46 deletions WrenchCL/_Internal/_ExceptionSuggestor.py

This file was deleted.

10 changes: 0 additions & 10 deletions WrenchCL/_Internal/_custom_types.py

This file was deleted.

1 change: 0 additions & 1 deletion WrenchCL/_Internal/cLogger.py

This file was deleted.

Loading