Skip to content

Commit 842bd8b

Browse files
committed
mod: fix for Python 3.8 compatibility
Python 3.8 ix still in use for the Windows builds
1 parent 90134f9 commit 842bd8b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

plugins/mod/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
1818
# 02110-1301, USA.
1919

20+
# For Python 3.8 compatibility
21+
from __future__ import annotations
22+
2023
PLUGIN_NAME = 'MOD files'
2124
PLUGIN_AUTHOR = 'Philipp Wolfer'
2225
PLUGIN_DESCRIPTION = (
@@ -25,7 +28,7 @@
2528
'There is limited support for writing the title tag as track name for '
2629
'some formats.'
2730
)
28-
PLUGIN_VERSION = "0.2"
31+
PLUGIN_VERSION = "0.2.1"
2932
PLUGIN_API_VERSIONS = ["2.8"]
3033
PLUGIN_LICENSE = "GPL-2.0"
3134
PLUGIN_LICENSE_URL = "https://www.gnu.org/licenses/gpl-2.0.html"

0 commit comments

Comments
 (0)