The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

a/bindings: Simplify as suggested by IDE

+1 -1
+1 -1
src/xrt/auxiliary/bindings/bindings.py
··· 83 83 for feature in self.features: 84 84 for path in feature.to_monado_paths(): 85 85 length = len(path) 86 - if (length in self.by_length): 86 + if length in self.by_length: 87 87 self.by_length[length].append(path) 88 88 else: 89 89 self.by_length[length] = [path]