Add missing for_async argument

This commit is contained in:
Flavio Curella 2025-05-05 11:16:42 -05:00
parent 08ba324d1b
commit 9afa1ece06
No known key found for this signature in database
GPG key ID: 1AD0556F485696BF

View file

@ -228,7 +228,7 @@ class BaseDatabaseWrapper:
# ##### Backend-specific methods for creating connections and cursors #####
def get_connection_params(self):
def get_connection_params(self, for_async=False):
"""Return a dict of parameters suitable for get_new_connection."""
raise NotImplementedError(
"subclasses of BaseDatabaseWrapper may require a get_connection_params() "