summaryrefslogtreecommitdiff
path: root/build-aux/mbim-codegen
diff options
context:
space:
mode:
Diffstat (limited to 'build-aux/mbim-codegen')
-rw-r--r--build-aux/mbim-codegen/Message.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/build-aux/mbim-codegen/Message.py b/build-aux/mbim-codegen/Message.py
index 324eb25..fe3f576 100644
--- a/build-aux/mbim-codegen/Message.py
+++ b/build-aux/mbim-codegen/Message.py
@@ -38,10 +38,10 @@ class Message:
self.name = dictionary['name']
# Gather types of command
- self.query = True if 'query' in dictionary else False
- self.set = True if 'set' in dictionary else False
- self.response = True if 'response' in dictionary else False
- self.notification = True if 'notify' in dictionary else False
+ self.query = True if 'query' in dictionary else False
+ self.set = True if 'set' in dictionary else False
+ self.response = True if 'response' in dictionary else False
+ self.notification = True if 'notification' in dictionary else False
# Build Fullname
self.fullname = 'MBIM Message ' + self.name