From a31097171dd3b8d39371cc9708ccc641f2f78f96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=85ke=20Forslund?= Date: Sun, 2 Jul 2017 09:06:08 +0200 Subject: [PATCH] Fix spacing. Remove a single tab that hid itself among the normal " " and remove some trailing whitespaces. --- __init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/__init__.py b/__init__.py index 5b3838b..ed5b69c 100644 --- a/__init__.py +++ b/__init__.py @@ -74,7 +74,7 @@ class DesktopLauncherSkill(MycroftSkill): "LaunchDesktopApplicationIntent").require("LaunchKeyword").require( "Application").build() self.register_intent(launch_intent, self.handle_launch_desktop_app) - + close_intent = IntentBuilder( "CloseDesktopApplicationIntent").require("CloseKeyword").require( "Application").build() @@ -95,10 +95,10 @@ class DesktopLauncherSkill(MycroftSkill): apps = self.appmap.get(app_name) if apps and len(apps) > 0: apps[0].launch() - + def handle_close_desktop_app(self, message): app_name = message.data.get('Application') - subprocess.call( [ "killall", "-9", app_name ] ) + subprocess.call( [ "killall", "-9", app_name ] ) def handle_launch_website(self, message): site = message.data.get("Website")