Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Commit b213fe4

Browse files
fix linting
1 parent 3018937 commit b213fe4

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

src/codegate/providers/crud/__init__.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,10 @@
66
initialize_provider_endpoints,
77
)
88

9-
__all__ = ["ProviderCrud", "initialize_provider_endpoints", "ProviderNotFoundError", "ProviderModelsNotFoundError", "ProviderInvalidAuthConfigError"]
9+
__all__ = [
10+
"ProviderCrud",
11+
"initialize_provider_endpoints",
12+
"ProviderNotFoundError",
13+
"ProviderModelsNotFoundError",
14+
"ProviderInvalidAuthConfigError",
15+
]

src/codegate/providers/crud/crud.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,11 @@
2020
class ProviderNotFoundError(Exception):
2121
pass
2222

23+
2324
class ProviderModelsNotFoundError(Exception):
2425
pass
2526

27+
2628
class ProviderInvalidAuthConfigError(Exception):
2729
pass
2830

0 commit comments

Comments
 (0)