Skip to content

Commit

Permalink
fix: Makes config required
Browse files Browse the repository at this point in the history
  • Loading branch information
ntlhui committed Dec 14, 2024
1 parent c74ff90 commit b1f0dea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion label_studio_slack_reporter/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def main():
"""Main entry point
"""
parser = argparse.ArgumentParser()
parser.add_argument('--config', type=Path)
parser.add_argument('--config', type=Path, required=True)
parser.add_argument('--debug', action='store_true')

args = vars(parser.parse_args())
Expand Down

0 comments on commit b1f0dea

Please sign in to comment.