Skip to content

Commit

Permalink
fix: lint driven fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
evilsocket committed Jan 21, 2025
1 parent 7351436 commit 7220c4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dyana/loaders/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def __init__(
if args:
self.build_args = self.settings.parse_build_args(args)
self.args = self.settings.parse_args(args)
self.need_artifacts = any(arg.artifact for arg in self.args)
self.need_artifacts = any(arg.artifact for arg in self.args) if self.args else False
else:
self.settings = None

Expand Down

0 comments on commit 7220c4c

Please sign in to comment.