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 be8d660 commit 076b060Copy full SHA for 076b060
openandroidinstaller/installer_config.py
@@ -98,7 +98,7 @@ def from_file(cls, path):
98
99
def _find_config_file(device_code: str, config_path: Path) -> Optional[Path]:
100
"""Find the config file which is supported by the given device code."""
101
- for path in config_path.rglob("*.yaml"):
+ for path in config_path.glob("*.yaml"):
102
with open(path, "r", encoding="utf-8") as stream:
103
try:
104
raw_config = dict(yaml.safe_load(stream))
0 commit comments