Skip to content

Commit 698b8d6

Browse files
fix: fix lint error
1 parent 38c0f10 commit 698b8d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/agent/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,6 @@ def get_agent_config(config: RunnableConfig) -> Configuration:
145145

146146
try:
147147
return Configuration(**filtered_config)
148-
except (TypeError, ValueError, KeyError) as e:
148+
except (TypeError, ValueError, KeyError):
149149
# Log the error in production for debugging
150150
return Configuration()

0 commit comments

Comments
 (0)