summaryrefslogtreecommitdiff
path: root/poezio/plugin.py
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2022-08-21 17:34:07 +0200
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2022-08-21 20:57:26 +0200
commitf3a751b3953032a8eb73af96a725cef902bde020 (patch)
tree7eb9173caaec479ab124be24ed605814ae5d23b0 /poezio/plugin.py
parent940f5e0c8a695048e6b7dfd3dd13e49e0c3476a5 (diff)
downloadpoezio-f3a751b3953032a8eb73af96a725cef902bde020.tar.gz
poezio-f3a751b3953032a8eb73af96a725cef902bde020.tar.bz2
poezio-f3a751b3953032a8eb73af96a725cef902bde020.tar.xz
poezio-f3a751b3953032a8eb73af96a725cef902bde020.zip
mypy: Type some more things
This lets us pass under mypy 0.971, and is yet another step towards mypyc compatibility perhaps.
Diffstat (limited to 'poezio/plugin.py')
-rw-r--r--poezio/plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/plugin.py b/poezio/plugin.py
index 9101c6bb..f38e47e2 100644
--- a/poezio/plugin.py
+++ b/poezio/plugin.py
@@ -426,7 +426,7 @@ class BasePlugin(object, metaclass=SafetyMetaclass):
self.init()
@property
- def name(self):
+ def name(self) -> str:
"""
Get the name (module name) of the plugin.
"""