Skip to content

Commit

Permalink
fixed variable names
Browse files Browse the repository at this point in the history
Signed-off-by: Devansh Agarwal <devansh.kv@gmail.com>
  • Loading branch information
devanshkv committed Oct 15, 2020
1 parent 7dff906 commit d9af176
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bin/your_heimdall.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
)

logging.info("Input Arguments:-")
for arg, value in sorted(vars(args).items()):
for arg, value in sorted(vars(values).items()):
logging.info("%s: %r", arg, value)

your_object = Your(file=values.files)
Expand Down
1 change: 1 addition & 0 deletions bin/your_rfimask.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import argparse
import logging
from datetime import datetime

import numpy as np
from rich.logging import RichHandler
Expand Down

0 comments on commit d9af176

Please sign in to comment.