From d4d5e656304f5dff696d2204217f9aed74a5b1cb Mon Sep 17 00:00:00 2001 From: Carl Johnsen Date: Fri, 13 Sep 2024 10:55:50 +0200 Subject: [PATCH] #34 Add shebang and module docstring to distributions.py and helpers.py --- src/lib/py/distributions.py | 1 + src/lib/py/helpers.py | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/src/lib/py/distributions.py b/src/lib/py/distributions.py index cc789dd..916914e 100644 --- a/src/lib/py/distributions.py +++ b/src/lib/py/distributions.py @@ -1,3 +1,4 @@ +#! /usr/bin/python3 ''' This module contains functions for generating Gaussian, exponential, power, and Lorentzian distributions. ''' diff --git a/src/lib/py/helpers.py b/src/lib/py/helpers.py index b89edf2..c09ab04 100644 --- a/src/lib/py/helpers.py +++ b/src/lib/py/helpers.py @@ -1,3 +1,7 @@ +#! /usr/bin/python3 +''' +This file contains helper functions for loading and updating HDF5 files, generating cylinder masks, and parsing commandline arguments. +''' import sys sys.path.append(sys.path[0]+"/../")