Skip to content

Commit 07b381b

Browse files
committed
Cleanup usage of 1 instead of True
1 parent 4cc01af commit 07b381b

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

synapse/models/files.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ async def _onSetFileBytesMime(node, oldv):
348348
'doc': 'The fused knowledge of the association of a file:bytes node and a file:path.',
349349
}),
350350

351-
('file:mime', ('str', {'lower': 1}), {
351+
('file:mime', ('str', {'lower': True}), {
352352
'doc': 'A file mime name string.',
353353
'ex': 'text/plain',
354354
}),

synapse/models/infotech.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -978,7 +978,7 @@ async def _onPropSoftverVers(node, oldv):
978978
('it:reveng:filefunc', ('comp', {'fields': (('file', 'file:bytes'), ('function', 'it:reveng:function'))}), {
979979
'doc': 'An instance of a function in an executable.',
980980
}),
981-
('it:reveng:impfunc', ('str', {'lower': 1}), {
981+
('it:reveng:impfunc', ('str', {'lower': True}), {
982982
'doc': 'A function from an imported library.',
983983
}),
984984
('it:sec:c2:config', ('guid', {}), {

synapse/models/telco.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -169,11 +169,11 @@ def _normPyInt(self, valu):
169169
('tel:mob:telem', ('guid', {}), {
170170
'doc': 'A single mobile telemetry measurement.'}),
171171

172-
('tel:mob:mcc', ('str', {'regex': '^[0-9]{3}$', 'strip': 1}), {
172+
('tel:mob:mcc', ('str', {'regex': '^[0-9]{3}$', 'strip': True}), {
173173
'doc': 'ITU Mobile Country Code.',
174174
}),
175175

176-
('tel:mob:mnc', ('str', {'regex': '^[0-9]{2,3}$', 'strip': 1}), {
176+
('tel:mob:mnc', ('str', {'regex': '^[0-9]{2,3}$', 'strip': True}), {
177177
'doc': 'ITU Mobile Network Code.',
178178
}),
179179

@@ -233,7 +233,7 @@ def _normPyInt(self, valu):
233233
('recipients', ('array', {'type': 'tel:phone', 'uniq': True, 'sorted': True}), {
234234
'doc': 'An array of phone numbers for additional recipients of the message.',
235235
}),
236-
('svctype', ('str', {'enums': 'sms,mms,rcs', 'strip': 1, 'lower': 1}), {
236+
('svctype', ('str', {'enums': 'sms,mms,rcs', 'strip': True, 'lower': True}), {
237237
'doc': 'The message service type (sms, mms, rcs).',
238238
}),
239239
('time', ('time', {}), {
@@ -251,13 +251,13 @@ def _normPyInt(self, valu):
251251
('org', ('ou:org', {}), {
252252
'doc': 'The org guid for the manufacturer.',
253253
}),
254-
('manu', ('str', {'lower': 1}), {
254+
('manu', ('str', {'lower': True}), {
255255
'doc': 'The TAC manufacturer name.',
256256
}),
257-
('model', ('str', {'lower': 1}), {
257+
('model', ('str', {'lower': True}), {
258258
'doc': 'The TAC model name.',
259259
}),
260-
('internal', ('str', {'lower': 1}), {
260+
('internal', ('str', {'lower': True}), {
261261
'doc': 'The TAC internal model name.',
262262
}),
263263
)),

0 commit comments

Comments
 (0)