From 53f5f08645fc1eb6d7a0a9c8fa2be9130e0c9618 Mon Sep 17 00:00:00 2001 From: Guy Martin Date: Mon, 17 Oct 2022 21:34:55 +0200 Subject: [PATCH] Fix linting (maybe?). --- mycroft/skills/mycroft_skill/mycroft_skill.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mycroft/skills/mycroft_skill/mycroft_skill.py b/mycroft/skills/mycroft_skill/mycroft_skill.py index ff4cc7fc405a..2404e9fae945 100644 --- a/mycroft/skills/mycroft_skill/mycroft_skill.py +++ b/mycroft/skills/mycroft_skill/mycroft_skill.py @@ -1048,7 +1048,7 @@ def register_entity_file(self, entity_file): raise FileNotFoundError('Unable to find "{}"'.format(entity_file)) name = '{}:{}_{}'.format(self.skill_id, basename(entity_file), - str(md5(entity_file.encode('utf-8')).hexdigest())) + str(md5(entity_file.encode('utf-8')).hexdigest())) self.intent_service.register_padatious_entity(name, filename) def handle_enable_intent(self, message):