Skip to content

Commit 8f8a083

Browse files
committed
chore(ve_identity): Remove unused _NoOpAuthProcessor import and cleanup
Eliminated the unused _NoOpAuthProcessor import and reference from ve_identity/__init__.py. Also removed a trailing blank line in processors/__init__.py and added a missing comma in NoOpRunProcessor's decorator signature for consistency.
1 parent 6e29ec0 commit 8f8a083

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

veadk/integrations/ve_identity/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ async def get_github_repos(access_token: str):
4646
from veadk.integrations.ve_identity.auth_processor import (
4747
AuthRequestConfig,
4848
AuthRequestProcessor,
49-
_NoOpAuthProcessor,
5049
MockOauth2AuthPoller,
5150
get_function_call_auth_config,
5251
get_function_call_id,
@@ -96,7 +95,6 @@ async def get_github_repos(access_token: str):
9695
"VeIdentityAuthConfig",
9796
# Auth processor
9897
"AuthRequestProcessor",
99-
"_NoOpAuthProcessor",
10098
"AuthRequestConfig",
10199
"is_pending_auth_event",
102100
"get_function_call_id",

veadk/processors/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,3 @@
2424
"BaseRunProcessor",
2525
"NoOpRunProcessor",
2626
]
27-

veadk/processors/base_run_processor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def process_run(
113113
"""
114114

115115
def decorator(
116-
event_generator_func: Callable[[], AsyncGenerator]
116+
event_generator_func: Callable[[], AsyncGenerator],
117117
) -> Callable[[], AsyncGenerator]:
118118
return event_generator_func
119119

0 commit comments

Comments
 (0)