From 6dd556b2a9f34eaab918dfbc1efeef7aff27aaa8 Mon Sep 17 00:00:00 2001 From: andreamust Date: Fri, 20 Jan 2023 20:15:48 +0100 Subject: [PATCH] solving pylint problems --- harte/harte.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/harte/harte.py b/harte/harte.py index c5575a9..a4ca71f 100644 --- a/harte/harte.py +++ b/harte/harte.py @@ -44,7 +44,7 @@ def __init__(self, chord: str, **keywords): super().__init__(self._all_degrees) return - elif "root" in parsed_chord: + if "root" in parsed_chord: # chord is not empty # retrieve information from the parsed chord self._root = parsed_chord['root']