Skip to content

Commit

Permalink
little fix
Browse files Browse the repository at this point in the history
  • Loading branch information
adusachev committed May 30, 2023
1 parent 09e0cb7 commit 596feec
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Build

on:
on:
- push
- workflow_dispatch

jobs:
Expand Down
6 changes: 3 additions & 3 deletions src/qoi_compress/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@ def run_multiple_experiments(dir_with_png: str, dir_with_qoi: str) -> None:
# qoi_filename = str(BASE_DIR / 'qoi_images/tmp.qoi')
# run_single_experiment(png_filename, qoi_filename)

# dir_with_png = str(BASE_DIR / "debug_png_images/")
# dir_with_qoi = str(BASE_DIR / "qoi_images/")
# run_multiple_experiments(dir_with_png, dir_with_qoi)
dir_with_png = str(BASE_DIR / "debug_png_images/")
dir_with_qoi = str(BASE_DIR / "qoi_images/")
run_multiple_experiments(dir_with_png, dir_with_qoi)

0 comments on commit 596feec

Please sign in to comment.