Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix logic & parameter annotation #242

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions infinigen/core/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def apply_scene_seed(seed, task=None):
np.random.seed(scene_seed)
return scene_seed

def sanitize_override(override: list):
def sanitize_override(override: str):

if (
('=' in override) and
Expand Down Expand Up @@ -163,7 +163,7 @@ def find_config(p):

for mandatory_folder in mandatory_folders:
mandatory_folder = resolve_folder_maybe_relative(mandatory_folder, root)
if not contained_stems(configs, mandatory_folder):
if not any(contained_stems(configs, mandatory_folder)):
raise FileNotFoundError(
f'At least one config file must be loaded from {mandatory_folder} to avoid unexpected behavior'
)
Expand Down