From 06c44b0284fb8a7acd2fb5594200fc6fa0f65aea Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Thu, 31 Oct 2024 15:29:58 +0100 Subject: [PATCH] hashindex: cimport -> import --- src/borg/hashindex.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/borg/hashindex.pyx b/src/borg/hashindex.pyx index be00717ea..4b6373a38 100644 --- a/src/borg/hashindex.pyx +++ b/src/borg/hashindex.pyx @@ -3,7 +3,7 @@ from collections import namedtuple import os import struct -from borghash cimport HashTableNT +from borghash import HashTableNT API_VERSION = '1.2_01'