File size: 300 Bytes
254fdf2
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
#!/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())