Skip to content

Commit

Permalink
try again after fixing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
geordie666 committed Sep 9, 2024
1 parent 760589d commit 1793ebf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
Expand Down
2 changes: 1 addition & 1 deletion py/desitarget/QA.py
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ def qasystematics_skyplot(pixmap, colname, qadir='.', downclip=None, upclip=None
# ADM if downclip was passed as a number, turn it to a string with
# ADM an exclamation mark to mask the plot background completely.
if downclip is not None:
if not isinstance(downclip, str)
if not isinstance(downclip, str):
downclip = '!' + str(downclip)

# ADM prepare the data to be plotted by matplotlib routines.
Expand Down

0 comments on commit 1793ebf

Please sign in to comment.