mirror of
https://github.com/etesync/server
synced 2025-07-02 21:32:34 +00:00
6 lines
120 B
Python
6 lines
120 B
Python
from distutils.util import strtobool
|
|
|
|
def argbool(arg):
|
|
if arg == None: return None
|
|
return bool(strtobool(arg))
|