Skip to content

Commit

Permalink
Merge pull request #267 from eggplants/fix-266
Browse files Browse the repository at this point in the history
fix #266
  • Loading branch information
eggplants authored Oct 3, 2024
2 parents 9e56a0b + 4056e88 commit 6b2508b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
if: ${{ runner.os != 'Linux' }}
run: poetry run task test
- name: Test & publish code coverage
if: ${{ runner.os == 'Linux' && env.CC_TEST_REPORTER_ID != '' }}
if: ${{ runner.os == 'Linux' && secrets.CC_TEST_REPORTER_ID != '' }}
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
Expand Down
2 changes: 1 addition & 1 deletion getjump/getjump.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def get( # noqa: PLR0913

if save_metadata:
print(
json.dumps(res.json(), indent=4),
json.dumps(json_value, indent=4),
file=(save_dir / "metadata.json").open(mode="w"),
)
self.__save_images(pages, save_dir, only_first=only_first, print_log=print_log)
Expand Down

0 comments on commit 6b2508b

Please sign in to comment.