Skip to content

Commit

Permalink
add dummy block with lacking coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
kedhammar committed Dec 11, 2024
1 parent a6712f5 commit 556f529
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions taca/nanopore/instrument_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,18 @@
)


def untested_function():
# TODO remove
print("UH OH! This function is untested! Sure hope someone would annotate it!")
if False is True:
print("This line will never be executed.")
return "I'm untested!"


# TODO remove
untested_function_return = untested_function()


def main(args):
"""Find ONT runs and transfer them to storage.
Archives the run when the transfer is complete."""
Expand Down

0 comments on commit 556f529

Please sign in to comment.