Skip to content

Commit

Permalink
type hint
Browse files Browse the repository at this point in the history
Signed-off-by: Ayush Kamat <[email protected]>
  • Loading branch information
ayushkamat committed Nov 13, 2023
1 parent 6c5f2cc commit 17d0cb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion latch_cli/snakemake/serialize_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,5 +228,5 @@ def update_mapping(cur: Path, stem: Path, remote: str, mapping: Dict[str, str]):
underscores = re.compile(r"_+")


def best_effort_display_name(x: str):
def best_effort_display_name(x: str) -> str:
return underscores.sub(" ", x).title().strip()

0 comments on commit 17d0cb0

Please sign in to comment.