# HG changeset patch # User Mads Kiilerich # Date 2020-06-11 21:07:24 # Node ID cc909683116c8733a2bdadd349027a53c582b2be # Parent 32757d5e9d0b75eb35b58a0ca5c0e3b25ad59286 db: drop unused _hash_key A bit less md5 ... diff --git a/kallithea/model/db.py b/kallithea/model/db.py --- a/kallithea/model/db.py +++ b/kallithea/model/db.py @@ -61,10 +61,6 @@ log = logging.getLogger(__name__) # BASE CLASSES #============================================================================== -def _hash_key(k): - return hashlib.md5(safe_bytes(k)).hexdigest() - - class BaseDbModel(object): """ Base Model for all classes