From c369cdfa9f7655a8869dceb434545a6638c3eaf3 Mon Sep 17 00:00:00 2001 From: Rodri <rgruiz0001@gmail.com> Date: Tue, 8 Feb 2022 16:40:54 +0100 Subject: [PATCH] another small fix --- km3io/utils/extract-dom-rates.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/km3io/utils/extract-dom-rates.py b/km3io/utils/extract-dom-rates.py index ee592b0..1a0084b 100644 --- a/km3io/utils/extract-dom-rates.py +++ b/km3io/utils/extract-dom-rates.py @@ -50,4 +50,5 @@ def main(): for key, value in doms_rates.items(): f.create_dataset(str(key), data=value) -main() +if __name__ == "__main__": + main() -- GitLab