dblume commited on 2022-10-02 14:11:54
Showing 1 changed files, with 8 additions and 0 deletions.
| ... | ... |
@@ -1,4 +1,6 @@ |
| 1 | 1 |
#!/usr/bin/env python3 |
| 2 |
+"""An example Python project to use for testing.""" |
|
| 3 |
+ |
|
| 2 | 4 |
import os |
| 3 | 5 |
import sys |
| 4 | 6 |
import time |
| ... | ... |
@@ -16,6 +18,12 @@ try: |
| 16 | 18 |
except ModuleNotFoundError: |
| 17 | 19 |
marshmallow_imported = False |
| 18 | 20 |
|
| 21 |
+__author__ = "David Blume" |
|
| 22 |
+__copyright__ = "Copyright 2016-2022, David Blume" |
|
| 23 |
+__license__ = "MIT" |
|
| 24 |
+__version__ = "1.0" |
|
| 25 |
+__status__ = "Development" |
|
| 26 |
+ |
|
| 19 | 27 |
v_print:Callable |
| 20 | 28 |
def set_v_print(verbose: bool) -> None: |
| 21 | 29 |
""" |
| 22 | 30 |