Skip to content

Commit 04b04d9

Browse files
committed
updating docstrings
1 parent fd45a3f commit 04b04d9

File tree

9 files changed

+39
-2
lines changed

9 files changed

+39
-2
lines changed

coverage.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" ?>
2-
<coverage version="7.5.1" timestamp="1715879204939" lines-valid="682" lines-covered="198" line-rate="0.2903" branches-covered="0" branches-valid="0" branch-rate="0" complexity="0">
2+
<coverage version="7.5.1" timestamp="1715879394607" lines-valid="682" lines-covered="198" line-rate="0.2903" branches-covered="0" branches-valid="0" branch-rate="0" complexity="0">
33
<!-- Generated by coverage.py: https://coverage.readthedocs.io/en/7.5.1 -->
44
<!-- Based on https://raw.githubusercontent.com/cobertura/web/master/htdocs/xml/coverage-04.dtd -->
55
<sources>

examples/cal_example.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# -*- coding: utf-8 -*-
2+
"""
3+
Author: Mike Ryan
4+
Date: 2024/05/16
5+
License: MIT
6+
"""
27
from dsg_lib.common_functions import calendar_functions
38

49
month_list: list = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]

examples/csv_example.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# -*- coding: utf-8 -*-
2+
"""
3+
Author: Mike Ryan
4+
Date: 2024/05/16
5+
License: MIT
6+
"""
27
from dsg_lib.common_functions.file_functions import create_sample_files, open_csv, save_csv
38
from dsg_lib.common_functions.logging_config import config_log
49

examples/fastapi_example.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# -*- coding: utf-8 -*-
2-
2+
"""
3+
Author: Mike Ryan
4+
Date: 2024/05/16
5+
License: MIT
6+
"""
37
import datetime
48
import secrets
59
import time

examples/json_example.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# -*- coding: utf-8 -*-
2+
"""
3+
Author: Mike Ryan
4+
Date: 2024/05/16
5+
License: MIT
6+
"""
27
from dsg_lib.common_functions.file_functions import open_json, save_json
38

49
example_json = {

examples/log_example.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# -*- coding: utf-8 -*-
2+
"""
3+
Author: Mike Ryan
4+
Date: 2024/05/16
5+
License: MIT
6+
"""
27
import logging
38
import random
49
import secrets

examples/pattern_example.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# -*- coding: utf-8 -*-
2+
"""
3+
Author: Mike Ryan
4+
Date: 2024/05/16
5+
License: MIT
6+
"""
27
import pprint
38
from random import randint
49

examples/text_example.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# -*- coding: utf-8 -*-
2+
"""
3+
Author: Mike Ryan
4+
Date: 2024/05/16
5+
License: MIT
6+
"""
27
from dsg_lib.common_functions.file_functions import open_text, save_text
38

49
example_text = """

examples/validate_emails.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@
3333
validate_email_address(email: str, **kwargs: dict) -> dict: Validates an email address using the provided
3434
configuration and returns a dictionary with the results.
3535
36+
Author: Mike Ryan
37+
Date: 2024/05/16
38+
License: MIT
3639
"""
3740
from dsg_lib.common_functions.email_validation import validate_email_address
3841

0 commit comments

Comments
 (0)