add missing keys() method

This commit is contained in:
Jakob Ketterl 2020-04-02 18:21:45 +02:00
parent 112eda2021
commit 2301141b44
1 changed files with 3 additions and 0 deletions

View File

@ -33,6 +33,9 @@ class CommandMapper(object):
self.static = static
return self
def keys(self):
return self.mappings.keys()
class CommandMapping(ABC):
@abstractmethod