Replace aiohttp with httpx
This commit is contained in:
parent
46ffe7a70e
commit
299d644bc4
15 changed files with 40 additions and 95 deletions
4
great_ai/errors/__init__.py
Normal file
4
great_ai/errors/__init__.py
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
from .argument_validation_error import ArgumentValidationError
|
||||
from .missing_argument_error import MissingArgumentError
|
||||
from .remote_call_error import RemoteCallError
|
||||
from .wrong_decorator_order_error import WrongDecoratorOrderError
|
||||
2
great_ai/errors/argument_validation_error.py
Normal file
2
great_ai/errors/argument_validation_error.py
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
class ArgumentValidationError(Exception):
|
||||
pass
|
||||
2
great_ai/errors/missing_argument_error.py
Normal file
2
great_ai/errors/missing_argument_error.py
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
class MissingArgumentError(Exception):
|
||||
pass
|
||||
2
great_ai/errors/remote_call_error.py
Normal file
2
great_ai/errors/remote_call_error.py
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
class RemoteCallError(Exception):
|
||||
pass
|
||||
2
great_ai/errors/wrong_decorator_order_error.py
Normal file
2
great_ai/errors/wrong_decorator_order_error.py
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
class WrongDecoratorOrderError(Exception):
|
||||
pass
|
||||
Loading…
Add table
Add a link
Reference in a new issue