You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pyctuator._integrate_flask() does not use passed customizer: Optional[Callable]
def _integrate_flask(
self,
app: Any,
pyctuator_impl: PyctuatorImpl,
customizer: Optional[Callable],
disabled_endpoints: Endpoints,
) -> bool:
"""
This method should only be called if we detected that Flask is installed.
It will then check whether the given app is a Flask app, and if so - it will add the Pyctuator
endpoints to it.
"""
from flask import Flask
if isinstance(app, Flask):
from pyctuator.impl.flask_pyctuator import FlaskPyctuator
FlaskPyctuator(app, pyctuator_impl, disabled_endpoints)
return True
return False`
The text was updated successfully, but these errors were encountered:
pyctuator._integrate_flask() does not use passed customizer: Optional[Callable]
The text was updated successfully, but these errors were encountered: