Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kennyworkman committed Nov 12, 2023
1 parent 0b38bd8 commit 8b9d7ac
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions latch_cli/snakemake/config/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,9 @@ def generate_metadata(
old_metadata_path.rename(metadata_path)
elif old_metadata_path.exists() and metadata_path.exists():
click.secho(
(
"Warning: Found both `latch_metadata.py` and"
" `latch_metadata/__init__.py` in current directory."
" `latch_metadata.py` will be ignored."
),
"Warning: Found both `latch_metadata.py` and"
" `latch_metadata/__init__.py` in current directory."
" `latch_metadata.py` will be ignored.",
fg="yellow",
)

Expand Down Expand Up @@ -187,9 +185,6 @@ def generate_metadata(
# Import these into your `__init__.py` file:
#
# from .parameters import generated_parameters
#
# Use fully qualified names for types from typing (eg. typing.List,
# typing.Optional)
generated_parameters = {
__params__
Expand Down

0 comments on commit 8b9d7ac

Please sign in to comment.