Skip to content

Commit

Permalink
fix: add missing param
Browse files Browse the repository at this point in the history
  • Loading branch information
justinmerrell committed Dec 20, 2023
1 parent f854051 commit 10b177b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI-test_worker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r builder/requirements.txt
apt-get install ffmpeg libsm6 libxext6
apt-get install ffmpeg libsm6 libxext6 -y
- name: Execute Tests
run: |
Expand Down
7 changes: 6 additions & 1 deletion src/rp_schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,10 @@
'required': False,
'default': 1,
'constraints': lambda img_count: 3 > img_count > 0
}
},
'high_noise_frac': {
'type': float,
'required': False,
'default': None
},
}

0 comments on commit 10b177b

Please sign in to comment.