Skip to content

Commit

Permalink
Clarify documentation string.
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonKrughoff committed Jun 5, 2019
1 parent 4022a6a commit e0c72cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions data/utils/defectsFromBias.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@

if __name__ == "__main__":
parser = argparse.ArgumentParser(
description="""Construct a defects file from the mask plane of a test camera bias frame.
description=f"""Construct a defects file from the mask plane of a test camera bias frame.
To use this command you must setup ip_isr and astropy.
Output is written to the current directory as file %r, which must not already exist.
""" % (DefectsPath,)
Output is written to the current directory as file {DefectsPath}, which must not already exist.
"""
)
parser.add_argument("bias", help="path to bias image for the test camera")
args = parser.parse_args()
Expand Down

0 comments on commit e0c72cc

Please sign in to comment.