We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aaf9bd commit d1952efCopy full SHA for d1952ef
module/string_constants.py
@@ -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