From 0245e47a74fd23f7cdc523ce7389a14ffa22cbfc Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 11 Feb 2020 09:53:38 +0100 Subject: [PATCH] cleanup docs, up version --- setup.py | 2 +- src/galaxy/api/plugin.py | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 4cc73a0..08d47c1 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name="galaxy.plugin.api", - version="0.63", + version="0.64", description="GOG Galaxy Integrations Python API", author='Galaxy team', author_email='galaxy@gog.com', diff --git a/src/galaxy/api/plugin.py b/src/galaxy/api/plugin.py index bb0d3d0..339e579 100644 --- a/src/galaxy/api/plugin.py +++ b/src/galaxy/api/plugin.py @@ -1039,11 +1039,9 @@ class Plugin: """Override this method to handle operations after local game size import is finished (like updating cache).""" async def get_subscriptions(self) -> List[Subscription]: - """Override this method to return a list of available + """Override this method to return a list of Subscriptions available on platform. This method is called by the GOG Galaxy Client. - - Example of possible override of the method: """ raise NotImplementedError()