-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathFileHead.template.py
More file actions
29 lines (23 loc) · 810 Bytes
/
FileHead.template.py
File metadata and controls
29 lines (23 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/python
# -*- coding: utf-8 -*-
r"""!
____ ____ ______ __ __ __ _____
/ __ )/ __ \/ ___/ | / /___ _/ /______/ /_ |__ /
/ __ / / / /\__ \| | /| / / __ `/ __/ ___/ __ \ /_ <
/ /_/ / /_/ /___/ /| |/ |/ / /_/ / /_/ /__/ / / / ___/ /
/_____/\____//____/ |__/|__/\__,_/\__/\___/_/ /_/ /____/
German BOS Information Script
by Bastian Schroll
@file: FileHead.template.py
@date: ##.##.2018
@author: Bastian Schroll
@description: That is the FileHead that should be used for all files
"""
import logging
# from boswatch.module import file
logging.debug("- %s loaded", __name__)
class ClassName:
r"""!General class comment"""
def __init__(self):
r"""!init comment"""
pass