From 51edb8ab33c5ee6bd3b9b05ea5809299f37c4fbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Tue, 16 Mar 2021 18:32:47 +0100 Subject: [PATCH] chg: Remove references to ExpandedPyMISP Fix #721 --- pymisp/abstract.py | 2 +- pymisp/api.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pymisp/abstract.py b/pymisp/abstract.py index 368242d..af4a724 100644 --- a/pymisp/abstract.py +++ b/pymisp/abstract.py @@ -107,7 +107,7 @@ class AbstractMISP(MutableMapping, MISPFileCache, metaclass=ABCMeta): NOTE: Every method in every classes inheriting this one are doing changes in memory and do not modify data on a remote MISP instance. To do so, you need to call the respective add_* or update_* - methods in ExpandedPyMISP/PyMISP. + methods in PyMISP. """ super().__init__() self.__edited: bool = True # As we create a new object, we assume it is edited diff --git a/pymisp/api.py b/pymisp/api.py index 6efff1e..9a41515 100644 --- a/pymisp/api.py +++ b/pymisp/api.py @@ -1736,7 +1736,7 @@ class PyMISP: def add_server(self, server: MISPServer, pythonify: bool = False) -> Union[Dict, MISPServer]: """Add a server to synchronise with. - Note: You probably want to use ExpandedPyMISP.get_sync_config and ExpandedPyMISP.import_server instead + Note: You probably want to use PyMISP.get_sync_config and PyMISP.import_server instead :param server: sync server config :param pythonify: Returns a PyMISP Object instead of the plain json output