✏️ 正在编辑: mixins.py
路径:
/opt/imunify360/venv/lib/python3.11/site-packages/geoip2/mixins.py
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
"""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)
💾 保存文件
← 返回文件管理器