Skip to content

Commit

Permalink
Fix type hints (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicasyu authored Feb 16, 2023
1 parent f9936a1 commit 15249f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/container_collection/batch/register_batch_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


@task
def register_batch_job(job_definition: dict) -> None:
def register_batch_job(job_definition: dict) -> str:
client = boto3.client("batch")

response = client.describe_job_definitions(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

@task
def summarize_manifest_files(
manifest: pd.DataFrame, name: str, conditions: list[dict], seeds: list[str]
manifest: pd.DataFrame, name: str, conditions: list[dict], seeds: list[int]
) -> str:
condition_keys = [f"{name}_{condition['key']}" for condition in conditions]
manifest_keys = manifest.set_index("KEY").filter(regex=f"^{name}", axis="index").reset_index()
Expand Down

0 comments on commit 15249f7

Please sign in to comment.