Changeset ff50c41 in flexoentity


Ignore:
Timestamp:
01/19/26 17:21:01 (6 weeks ago)
Author:
Enrico Schwass <ennoausberlin@…>
Branches:
main, master, unify_backends
Children:
a039f4a
Parents:
3989f0b
Message:

small formattings

Location:
flexoentity
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • flexoentity/entity_manager.py

    r3989f0b rff50c41  
    9090
    9191    # FIXME: Readd staging backend later
    92    
    9392    def all(self):
    9493        """Load all entities as a list of instances."""
  • flexoentity/flexo_entity.py

    r3989f0b rff50c41  
    384384    def _compute_fingerprint(self) -> str:
    385385        """I recompute the entity's content fingerprint."""
    386         return hashlib.blake2s(self.canonical_content().encode("utf-8"), digest_size=8).hexdigest().upper()
     386        return hashlib.blake2s(self.canonical_content().encode("utf-8"),
     387                               digest_size=8).hexdigest().upper()
    387388
    388389    def _update_fingerprint(self) -> bool:
Note: See TracChangeset for help on using the changeset viewer.