From 2c45c730963dc376c4fff68f654a71f57c918989 Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Fri, 9 Feb 2024 09:04:27 -0600 Subject: [PATCH] document function (about) --- healthcareio/__main__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/healthcareio/__main__.py b/healthcareio/__main__.py index d93c318..c6c642c 100644 --- a/healthcareio/__main__.py +++ b/healthcareio/__main__.py @@ -107,7 +107,9 @@ def config(email:str,provider:str='sqlite') : print (_msg) @app.command(name='about') def copyright(): - + r""" + This function will return information about the {meta.__name__} + """ for note in [meta.__name__,meta.__author__,meta.__license__]: print (note)