We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bf3351a + 2498524 commit a379c6cCopy full SHA for a379c6c
1 file changed
odata/metadata.py
@@ -50,7 +50,7 @@ def property_type_to_python(self, edm_type):
50
51
def _type_is_collection(self, typename):
52
if typename.startswith('Collection('):
53
- stripped = typename.lstrip('Collection(').rstrip(')')
+ stripped = typename[11:-1]
54
return True, stripped
55
else:
56
return False, typename
0 commit comments