ahmedbrs's picture
first
254fdf2
raw
history blame contribute delete
300 Bytes
#!/usr/bin/env python3
"""
Project specific pathmanagers for a project as recommended by Detectron2
"""
from iopath.common.file_io import PathManager as PathManagerBase
from iopath.common.file_io import HTTPURLHandler
PathManager = PathManagerBase()
PathManager.register_handler(HTTPURLHandler())