python-hl7 icon indicating copy to clipboard operation
python-hl7 copied to clipboard

fixed --quiet cli option bug

Open svecile opened this issue 2 years ago • 0 comments

The --quiet option for the CLI doesn't do anything. The action was "store_true" with a default of true which means even if you add the --quiet option it still prints ACKs to the stdout. I have changed the action to "store_false" so now when you use --quiet it doesn't print the ACKs anymore.

svecile avatar Jul 12 '23 15:07 svecile