aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTinWoodman92 <chrhodgden@gmail.com>2023-06-19 22:11:46 -0500
committerTinWoodman92 <chrhodgden@gmail.com>2023-06-19 22:11:46 -0500
commitca8239c3da418db7262493db58f5e0101b431b44 (patch)
tree08f29ad8bc11c8912d055858f1dc5dc3ae768054
parentdbf602496e1dff78f83cf4593254fb389d8abe11 (diff)
Added data type reference dictionary.
-rw-r--r--dialoguer/data_type_ref.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/dialoguer/data_type_ref.py b/dialoguer/data_type_ref.py
new file mode 100644
index 0000000..6d45ba5
--- /dev/null
+++ b/dialoguer/data_type_ref.py
@@ -0,0 +1,10 @@
+data_type_dict = {
+ 'str': str,
+ 'character': str,
+ 'int': int,
+ 'integer': int,
+ 'bool': bool,
+ 'logical': bool,
+ 'NoneType': type(None),
+ 'None': None
+} \ No newline at end of file