Changeset ff50c41 in flexoentity
- Timestamp:
- 01/19/26 17:21:01 (6 weeks ago)
- Branches:
- main, master, unify_backends
- Children:
- a039f4a
- Parents:
- 3989f0b
- Location:
- flexoentity
- Files:
-
- 2 edited
-
entity_manager.py (modified) (1 diff)
-
flexo_entity.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
flexoentity/entity_manager.py
r3989f0b rff50c41 90 90 91 91 # FIXME: Readd staging backend later 92 93 92 def all(self): 94 93 """Load all entities as a list of instances.""" -
flexoentity/flexo_entity.py
r3989f0b rff50c41 384 384 def _compute_fingerprint(self) -> str: 385 385 """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() 387 388 388 389 def _update_fingerprint(self) -> bool:
Note:
See TracChangeset
for help on using the changeset viewer.
