Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
JaGeo committed Jul 11, 2024
1 parent cd69cac commit 32972e7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/jobflow/core/flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,6 @@ def append_name(self, append_str: str, prepend: bool = False, dynamic: bool = Tr
for job in self:
job.append_name(append_str, prepend=prepend, dynamic=dynamic)


def update_metadata(
self,
update: dict[str, Any],
Expand Down
2 changes: 1 addition & 1 deletion src/jobflow/core/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,6 @@ def __init__(
else:
self.name = getattr(function, "__qualname__", function.__name__)


self.output = OutputReference(self.uuid, output_schema=self.output_schema)

# check to see if job or flow is included in the job args
Expand Down Expand Up @@ -915,6 +914,7 @@ def append_name(self, append_str: str, prepend: bool = False, dynamic: bool = Tr

if dynamic:
self.name_updates.append({"append_str": append_str, "prepend": prepend})

def update_metadata(
self,
update: dict[str, Any],
Expand Down

0 comments on commit 32972e7

Please sign in to comment.