1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-15 08:40:34 +03:00

Fixed module docstring

This commit is contained in:
A_D 2020-09-18 23:05:40 +02:00
parent 5ae269d7f6
commit 0577c08d54
No known key found for this signature in database
GPG Key ID: 4BE9EB7DF45076C4

View File

@ -1,7 +1,7 @@
"""
Example EDMC plugin.
It adds a single button to the EDMC interface that displays the number of times it has been reset.
It adds a single button to the EDMC interface that displays the number of times it has been clicked.
"""
import logging
@ -13,7 +13,7 @@ from config import appname, config
PLUGIN_NAME = "ClickCounter"
logger = logging.getLogger(f"{appname}")
logger = logging.getLogger(f"{appname}.{PLUGIN_NAME}")
class ClickCounter: