Skip to content

Commit d1952ef

Browse files
committed
Added string constants structure
1 parent 5aaf9bd commit d1952ef

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

module/string_constants.py

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# -*- coding: utf-8 -*-
2+
"""
3+
| **@created on:** 17/11/17,
4+
| **@author:** prathyushsp,
5+
| **@version:** v0.0.1
6+
|
7+
| **Description:**
8+
|
9+
|
10+
| **Sphinx Documentation Status:** Complete
11+
|
12+
..todo::
13+
--
14+
"""
15+
import enum
16+
from enum import auto
17+
18+
19+
class SampleConstant(enum):
20+
""""
21+
| **@author:** Prathyush SP,
22+
|
23+
| Sample Constants
24+
"""
25+
CONSTANT_1 = auto()
26+
CONSTANT_2 = auto()
27+
CONSTANT_3 = auto()
28+
CONSTANT_4 = auto()

0 commit comments

Comments
 (0)