diff options
author | TinWoodman92 <chrhodgden@gmail.com> | 2023-06-19 22:11:46 -0500 |
---|---|---|
committer | TinWoodman92 <chrhodgden@gmail.com> | 2023-06-19 22:11:46 -0500 |
commit | ca8239c3da418db7262493db58f5e0101b431b44 (patch) | |
tree | 08f29ad8bc11c8912d055858f1dc5dc3ae768054 | |
parent | dbf602496e1dff78f83cf4593254fb389d8abe11 (diff) |
Added data type reference dictionary.
-rw-r--r-- | dialoguer/data_type_ref.py | 10 |
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 |