Skip to content

Commit 3048db3

Browse files
robtaylorclaude
andcommitted
Fix lint error: Remove unused config variable
- Remove unused variable assignment that was triggering F841 lint error - Simply validate the config_dict without capturing the result 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 48e286c commit 3048db3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chipflow_lib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def _parse_config_file(config_file):
4949

5050
try:
5151
# Validate with Pydantic
52-
config = Config.model_validate(config_dict)
52+
Config.model_validate(config_dict) # Just validate the config_dict
5353
return config_dict # Return the original dict for backward compatibility
5454
except ValidationError as e:
5555
# Format Pydantic validation errors in a user-friendly way

0 commit comments

Comments
 (0)