Skip to content

Commit

Permalink
[fix] Flake warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
marxsk committed Aug 15, 2024
1 parent d5a3b3b commit 2690532
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/component.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def run(self):
self.validate_image_parameters(REQUIRED_IMAGE_PARS)
params = self.configuration.parameters

logging.info (params)
logging.info(params)
# Access parameters in data/config.json
if params.get(KEY_COLUMNS):
logging.info(params[KEY_COLUMNS])
Expand All @@ -66,6 +66,7 @@ def run(self):
# Write new state - will be available next run
self.write_state_file({"some_state_parameter": "value"})


"""
Main entrypoint
"""
Expand Down

0 comments on commit 2690532

Please sign in to comment.