🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-15 05:35:28 | PHP 8.1.34
📂
/ (Root)
/
opt
/
imunify360
/
venv
/
lib
/
python3.11
/
site-packages
/
geoip2
📍 /opt/imunify360/venv/lib/python3.11/site-packages/geoip2
🔄 Refresh
✏️
Editing: mixins.py
Read Only
"""This package contains utility mixins""" # pylint: disable=too-few-public-methods from abc import ABCMeta from typing import Any class SimpleEquality(metaclass=ABCMeta): """Naive __dict__ equality mixin""" def __eq__(self, other: Any) -> bool: return isinstance(other, self.__class__) and self.__dict__ == other.__dict__ def __ne__(self, other): return not self.__eq__(other)
💾 Save Changes
❌ Cancel