Files
sunnypilot/tools/lib/filereader.py
Willem Melching d849706bc9 remove parallel url downloader
old-commit-hash: 927ef086f7
2020-09-21 10:32:08 +02:00

9 lines
204 B
Python

from tools.lib.url_file import URLFile
def FileReader(fn, debug=False):
if fn.startswith("http://") or fn.startswith("https://"):
return URLFile(fn, debug=debug)
else:
return open(fn, "rb")