From 9946e8d6f4e124fe8641dbcadfe38eb3de4c3ebb Mon Sep 17 00:00:00 2001 From: Max Muoto Date: Sun, 13 Oct 2024 15:49:41 -0500 Subject: [PATCH] Fix minor typing issue (#48) --- pgbulk/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgbulk/core.py b/pgbulk/core.py index 578856b..8756462 100644 --- a/pgbulk/core.py +++ b/pgbulk/core.py @@ -254,7 +254,7 @@ def _get_field_db_val( connection: "DefaultConnectionProxy", *, copying: bool = False, -) -> "Any | _DB_DEFAULT": +) -> "Any | type[_DB_DEFAULT]": if _value_is_db_default(value): if not copying: return _DB_DEFAULT