summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--viewstate/parse.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/viewstate/parse.py b/viewstate/parse.py
index 1cd2ccb..5e5f9b4 100644
--- a/viewstate/parse.py
+++ b/viewstate/parse.py
@@ -249,6 +249,7 @@ class Dict(Parser):
d[k] = v
return d, remain
+
class Type(Parser):
@staticmethod
@@ -260,6 +261,7 @@ class Type(Parser):
else:
raise ViewStateException('Unknown type flag at {} bytes {}'.format(len(b), b[:20]))
+
class TypedArray(Parser):
marker = 0x14