From 7309905866afb1fe506146b0db530884ac06945e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <h.tomwoerden@indiscale.com>
Date: Fri, 23 Feb 2024 21:03:17 +0100
Subject: [PATCH] FIX: remove duplicate argument

---
 src/caoscrawler/identifiable.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/caoscrawler/identifiable.py b/src/caoscrawler/identifiable.py
index b7be840f..788e1ad8 100644
--- a/src/caoscrawler/identifiable.py
+++ b/src/caoscrawler/identifiable.py
@@ -76,7 +76,7 @@ class Identifiable():
         if backrefs is not None:
             self._backrefs = backrefs
         self._representation = sha256(
-            self._create_hashable_string(self).encode('utf-8')).hexdigest()
+            self._create_hashable_string().encode('utf-8')).hexdigest()
 
     @property
     def record_id(self):
-- 
GitLab