From 6b2fdaa9d58d82ad9cd456a5d7e085149c1afbe2 Mon Sep 17 00:00:00 2001 From: PhilipTrauner Date: Sun, 31 Jan 2016 20:39:30 +0100 Subject: [PATCH] Added int and float (why weren't they there in the first place?) --- Shared/DataTypes.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Shared/DataTypes.py b/Shared/DataTypes.py index 23ec2ae..2d1246f 100644 --- a/Shared/DataTypes.py +++ b/Shared/DataTypes.py @@ -1,4 +1,6 @@ str = b"s" json = b"j" bin = b"b" -other = b"o" \ No newline at end of file +other = b"o" +int = b"i" +float = b"f" \ No newline at end of file