Index: flexoentity/entity_manager.py
===================================================================
--- flexoentity/entity_manager.py	(revision 3989f0bcf3e21810b516cbf0aacc5bcb74d5c77d)
+++ flexoentity/entity_manager.py	(revision ff50c41ca843ea0861adb6caa91eace8e8409bfc)
@@ -90,5 +90,4 @@
 
     # FIXME: Readd staging backend later
-    
     def all(self):
         """Load all entities as a list of instances."""
Index: flexoentity/flexo_entity.py
===================================================================
--- flexoentity/flexo_entity.py	(revision 3989f0bcf3e21810b516cbf0aacc5bcb74d5c77d)
+++ flexoentity/flexo_entity.py	(revision ff50c41ca843ea0861adb6caa91eace8e8409bfc)
@@ -384,5 +384,6 @@
     def _compute_fingerprint(self) -> str:
         """I recompute the entity's content fingerprint."""
-        return hashlib.blake2s(self.canonical_content().encode("utf-8"), digest_size=8).hexdigest().upper()
+        return hashlib.blake2s(self.canonical_content().encode("utf-8"),
+                               digest_size=8).hexdigest().upper()
 
     def _update_fingerprint(self) -> bool:
