From d8cf72f6d9a151e6983892a00464e0712d7abab8 Mon Sep 17 00:00:00 2001 From: Ryan Pavlik Date: Tue, 27 Apr 2021 11:00:57 -0500 Subject: [PATCH] a/bindings: Simplify as suggested by IDE --- src/xrt/auxiliary/bindings/bindings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xrt/auxiliary/bindings/bindings.py b/src/xrt/auxiliary/bindings/bindings.py index b20c3a1e5..f165591a7 100755 --- a/src/xrt/auxiliary/bindings/bindings.py +++ b/src/xrt/auxiliary/bindings/bindings.py @@ -83,7 +83,7 @@ class Profile: for feature in self.features: for path in feature.to_monado_paths(): length = len(path) - if (length in self.by_length): + if length in self.by_length: self.by_length[length].append(path) else: self.by_length[length] = [path]