Skip to content

Commit

Permalink
fix collapse
Browse files Browse the repository at this point in the history
  • Loading branch information
ACEnglish committed Aug 26, 2023
1 parent ff205ca commit f34071a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion truvari/collapse.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ def check_params(args):
return check_fail


def CollapseOutput(dict):
class CollapseOutput(dict):
"""
Output writer for collapse
"""
Expand All @@ -383,6 +383,7 @@ def __init__(self, args):
"""
Makes all of the output files for collapse
"""
super().__init__()
truvari.setup_logging(args.debug, show_version=True)
logging.info("Params:\n%s", json.dumps(vars(args), indent=4))

Expand Down

0 comments on commit f34071a

Please sign in to comment.