@@ -169,11 +169,11 @@ def _normPyInt(self, valu):
169
169
('tel:mob:telem' , ('guid' , {}), {
170
170
'doc' : 'A single mobile telemetry measurement.' }),
171
171
172
- ('tel:mob:mcc' , ('str' , {'regex' : '^[0-9]{3}$' , 'strip' : 1 }), {
172
+ ('tel:mob:mcc' , ('str' , {'regex' : '^[0-9]{3}$' , 'strip' : True }), {
173
173
'doc' : 'ITU Mobile Country Code.' ,
174
174
}),
175
175
176
- ('tel:mob:mnc' , ('str' , {'regex' : '^[0-9]{2,3}$' , 'strip' : 1 }), {
176
+ ('tel:mob:mnc' , ('str' , {'regex' : '^[0-9]{2,3}$' , 'strip' : True }), {
177
177
'doc' : 'ITU Mobile Network Code.' ,
178
178
}),
179
179
@@ -233,7 +233,7 @@ def _normPyInt(self, valu):
233
233
('recipients' , ('array' , {'type' : 'tel:phone' , 'uniq' : True , 'sorted' : True }), {
234
234
'doc' : 'An array of phone numbers for additional recipients of the message.' ,
235
235
}),
236
- ('svctype' , ('str' , {'enums' : 'sms,mms,rcs' , 'strip' : 1 , 'lower' : 1 }), {
236
+ ('svctype' , ('str' , {'enums' : 'sms,mms,rcs' , 'strip' : True , 'lower' : True }), {
237
237
'doc' : 'The message service type (sms, mms, rcs).' ,
238
238
}),
239
239
('time' , ('time' , {}), {
@@ -251,13 +251,13 @@ def _normPyInt(self, valu):
251
251
('org' , ('ou:org' , {}), {
252
252
'doc' : 'The org guid for the manufacturer.' ,
253
253
}),
254
- ('manu' , ('str' , {'lower' : 1 }), {
254
+ ('manu' , ('str' , {'lower' : True }), {
255
255
'doc' : 'The TAC manufacturer name.' ,
256
256
}),
257
- ('model' , ('str' , {'lower' : 1 }), {
257
+ ('model' , ('str' , {'lower' : True }), {
258
258
'doc' : 'The TAC model name.' ,
259
259
}),
260
- ('internal' , ('str' , {'lower' : 1 }), {
260
+ ('internal' , ('str' , {'lower' : True }), {
261
261
'doc' : 'The TAC internal model name.' ,
262
262
}),
263
263
)),
0 commit comments