i think i have something working
This commit is contained in:
9
ARB/arb_util.py
Normal file
9
ARB/arb_util.py
Normal file
@@ -0,0 +1,9 @@
|
||||
def xmlBool(xmlobj):
|
||||
if isinstance(xmlobj, bool):
|
||||
return (xmlobj)
|
||||
if xmlobj.lower() in ('1', 'true'):
|
||||
return(True)
|
||||
elif xmlobj.lower() in ('0', 'false'):
|
||||
return(False)
|
||||
else:
|
||||
return(None)
|
||||
Reference in New Issue
Block a user