Move ffm stuff from aiohttp to requests

This commit is contained in:
Joscha
2019-04-25 19:01:53 +00:00
parent 9bae030186
commit 82adeb324f
2 changed files with 19 additions and 38 deletions

View File

@ -1,10 +1,10 @@
#from .ffm import *
from .ffm import *
from .ilias import *
#from .norbert import *
from .utils import *
__all__ = []
#__all__ += ffm.__all__
__all__ += ffm.__all__
__all__ += ilias.__all__
#__all__ += norbert.__all__
__all__ += utils.__all__