We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28a4f2f commit 9223640Copy full SHA for 9223640
beet/library/base.py
@@ -1248,12 +1248,12 @@ def all(
1248
proxy = self[file_type]
1249
for path in proxy.match(*match or ["*"]):
1250
yield path, proxy[path]
1251
- if self.overlay_parent is None:
1252
- for overlay in self.overlays.values():
1253
- if extend:
1254
- yield from overlay.all(*match, extend=extend)
1255
- else:
1256
- yield from overlay.all(*match)
+ if self.overlay_parent is None:
+ for overlay in self.overlays.values():
+ if extend:
+ yield from overlay.all(*match, extend=extend)
+ else:
+ yield from overlay.all(*match)
1257
1258
@property
1259
def supported_formats(self) -> Optional[SupportedFormats]:
0 commit comments