aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/klippy.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2017-06-06 12:35:13 -0400
committerKevin O'Connor <kevin@koconnor.net>2017-06-06 12:35:13 -0400
commit01ee9e16c5f7820b74d1018c130a842767edd44b (patch)
tree576b2cf5838812e13f410b3cde2bc5d216cb537a /klippy/klippy.py
parent38411fd2e7610eb8049645d4318bcec1f472218b (diff)
downloadkutter-01ee9e16c5f7820b74d1018c130a842767edd44b.tar.gz
kutter-01ee9e16c5f7820b74d1018c130a842767edd44b.tar.xz
kutter-01ee9e16c5f7820b74d1018c130a842767edd44b.zip
klippy: Prefer python dictionary comprehension to dict() call
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/klippy.py')
-rw-r--r--klippy/klippy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/klippy.py b/klippy/klippy.py
index 73819f62..58898374 100644
--- a/klippy/klippy.py
+++ b/klippy/klippy.py
@@ -182,7 +182,7 @@ class Printer:
self.objects['toolhead'] = toolhead.ToolHead(
self, ConfigWrapper(self, 'printer'))
# Validate that there are no undefined parameters in the config file
- valid_sections = dict([(s, 1) for s, o in self.all_config_options])
+ valid_sections = { s: 1 for s, o in self.all_config_options }
for section in self.fileconfig.sections():
section = section.lower()
if section not in valid_sections: