diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-05-24 11:46:29 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-05-24 11:46:50 +0200 |
commit | b70ce24512fe2c4c8baa379f1204017c177a3230 (patch) | |
tree | 849f14dfe2e62ec696ce2530207ddcbb7229929f /ishtar_common/models.py | |
parent | 880075af959c2989724599258036529c0627fb2f (diff) | |
download | Ishtar-b70ce24512fe2c4c8baa379f1204017c177a3230.tar.bz2 Ishtar-b70ce24512fe2c4c8baa379f1204017c177a3230.zip |
DocumentItem: fix inapropriate heritage
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 67e6f5371..521a3239e 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -1846,8 +1846,7 @@ class GeoItem(models.Model): return self._geojson_serialize('multi_polygon') -class BaseHistorizedItem(DocumentItem, FullSearch, Imported, JsonData, - FixAssociated): +class BaseHistorizedItem(FullSearch, Imported, JsonData, FixAssociated): """ Historized item with external ID management. All historized items are searchable and have a data json field. |