aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/libghdl/__init__.py
diff options
context:
space:
mode:
authorumarcor <unai.martinezcorral@ehu.eus>2021-06-22 12:26:43 +0200
committerumarcor <unai.martinezcorral@ehu.eus>2021-06-22 18:51:02 +0200
commit51e9764f04da876993a80f6f09910e019eb84446 (patch)
treee58928ecfbafb74bf33e8873423e7ed5874422c2 /pyGHDL/libghdl/__init__.py
parent25a3580831170f8a0acd0a79aca2c94ea4652338 (diff)
downloadghdl-51e9764f04da876993a80f6f09910e019eb84446.tar.gz
ghdl-51e9764f04da876993a80f6f09910e019eb84446.tar.bz2
ghdl-51e9764f04da876993a80f6f09910e019eb84446.zip
fix issues reported by Codacy
Diffstat (limited to 'pyGHDL/libghdl/__init__.py')
-rw-r--r--pyGHDL/libghdl/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyGHDL/libghdl/__init__.py b/pyGHDL/libghdl/__init__.py
index 1477d9361..0d3c75fa1 100644
--- a/pyGHDL/libghdl/__init__.py
+++ b/pyGHDL/libghdl/__init__.py
@@ -52,7 +52,7 @@ class LibGHDLException(GHDLBaseException):
def _get_libghdl_name() -> Path:
- """Get the name of the libghdl library (with version and extension)"""
+ """Get the name of the libghdl library (with version and extension)."""
ver = __version__.replace("-", "_").replace(".", "_")
ext = {"win32": "dll", "cygwin": "dll", "darwin": "dylib"}.get(sys.platform, "so")
return Path("libghdl-{version}.{ext}".format(version=ver, ext=ext))