diff --git a/docs/conf.py b/docs/conf.py index 5036bda..e00acb0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -42,4 +42,4 @@ "show-inheritance": True, # Show the base class(es) of a class "members": True, } -autosummary_generate = True \ No newline at end of file +autosummary_generate = True diff --git a/setup.py b/setup.py index a3a6a0e..d24ff2a 100644 --- a/setup.py +++ b/setup.py @@ -11,6 +11,6 @@ if not match: raise ValueError("Could not find the latest version in CHANGELOG.md") - version = match['version'] + version = match["version"] setuptools.setup(version=version) diff --git a/src/libretro/core.py b/src/libretro/core.py index a923680..23cc130 100644 --- a/src/libretro/core.py +++ b/src/libretro/core.py @@ -1,5 +1,5 @@ from abc import abstractmethod -from collections.abc import Sequence, Buffer +from collections.abc import Buffer, Sequence from copy import deepcopy from ctypes import ( CDLL,