aboutsummaryrefslogtreecommitdiffstats
path: root/reaktor/commands/caps
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2018-06-28 19:05:27 +0200
committerlassulus <lassulus@lassul.us>2018-06-28 19:05:27 +0200
commit284e77bfe5d4a68f021a311041cc4576b7be912a (patch)
tree6bd0761e82f664d27128a299ca48f5c3f14088c7 /reaktor/commands/caps
parent139a1116c35f57888853ebb3ff585e28921780ff (diff)
Make Flake (somewhat) happy
Diffstat (limited to 'reaktor/commands/caps')
-rwxr-xr-xreaktor/commands/caps18
1 files changed, 12 insertions, 6 deletions
diff --git a/reaktor/commands/caps b/reaktor/commands/caps
index b5d6642..6f26540 100755
--- a/reaktor/commands/caps
+++ b/reaktor/commands/caps
@@ -2,12 +2,18 @@
import imp
import os
+
def load_config(filename):
- dirname = os.path.dirname(filename)
- modname, ext = os.path.splitext(os.path.basename(filename))
- file, pathname, description = imp.find_module(modname, [ dirname ])
- return imp.load_module(modname, file, pathname, description)
+ dirname = os.path.dirname(filename)
+ modname, ext = os.path.splitext(os.path.basename(filename))
+ file, pathname, description = imp.find_module(modname, [dirname])
+ return imp.load_module(modname, file, pathname, description)
+
config = load_config(os.environ['config_filename'])
-print('Private: '+' '.join(filter(None,[ x.get('capname',None) for x in config.commands])))
-print('Public: '+' '.join(filter(None,[ x.get('capname',None) for x in config.public_commands])))
+print('Private: '+' '.join(filter(
+ None, [x.get('capname', None) for x in config.commands]
+)))
+print('Public: '+' '.join(filter(
+ None, [x.get('capname', None) for x in config.public_commands]
+)))