Source code for msa.api.patchable_api

# _!/usr/bin/env python
# -*- coding: utf-8 -*-


[docs]class MsaApi(dict): def __init__(self, *args, **kwargs): super(MsaApi, self).__init__(*args, **kwargs) self.__dict__ = self def __str__(self): return ( f"<{self.__class__.__module__}.{self.__class__.__name__} at {hex(id(self))}" )