From 528d3ce9fa09bf133d16192d1318658c9514ad49 Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Thu, 6 Jun 2024 00:53:08 -0400 Subject: [PATCH] fix a type --- hatch_hooks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hatch_hooks.py b/hatch_hooks.py index 8f443d74..b7cd9c77 100644 --- a/hatch_hooks.py +++ b/hatch_hooks.py @@ -19,7 +19,7 @@ def initialize(self, version, build_data) -> None: for package in build_data["dependencies"] if package.startswith("psycopg2-binary") ] - build_data["depenndencies"].pop(psycopg2_binary_pinned) + build_data["dependencies"].pop(psycopg2_binary_pinned) psycopg2_pinned = psycopg2_binary_pinned.replace("-binary", "") build_data["dependencies"].append(psycopg2_pinned)