OpenMTC/build/lib/futile/os/__init__.py

7 lines
89 B
Python
Raw Normal View History

2017-11-07 14:41:38 +01:00
def get_fileobj(f):
if not hasattr(f, "read"):
return open(f)
return f