OpenMTC/build/lib/futile/os/__init__.py
2017-11-07 14:41:38 +01:00

7 lines
89 B
Python

def get_fileobj(f):
if not hasattr(f, "read"):
return open(f)
return f