From d48376d15bb9d16f860a18302ca5a3e1bd6be156 Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Mon, 5 Jul 2021 18:27:14 +0200 Subject: pyGHDL: reformatting --- pyGHDL/libghdl/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyGHDL/libghdl/__init__.py b/pyGHDL/libghdl/__init__.py index 612737824..7852d4eba 100644 --- a/pyGHDL/libghdl/__init__.py +++ b/pyGHDL/libghdl/__init__.py @@ -64,8 +64,9 @@ class LibGHDLException(GHDLBaseException): def _get_libghdl_name() -> Path: """Get the name of the libghdl library (with version and extension).""" ver = __version__.replace("-", "_").replace(".", "_") - ext = {"win32": "dll", "cygwin": "dll", "msys": "dll", - "darwin": "dylib"}.get(sys_platform, "so") + ext = {"win32": "dll", "cygwin": "dll", "msys": "dll", "darwin": "dylib"}.get( + sys_platform, "so" + ) return Path("libghdl-{version}.{ext}".format(version=ver, ext=ext)) -- cgit v1.2.3