Skip to content

Commit

Permalink
better fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bernt-matthias committed Jan 26, 2024
1 parent ff65965 commit 1b3249e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
# MODIFIED END
env:
GALAXY_FORK: galaxyproject
GALAXY_BRANCH: release_23.0 # MODIFIED
GALAXY_BRANCH: release_23.1 # MODIFIED
MAX_CHUNKS: 10 # MODIFIED
jobs:
# the setup job does two things:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ for:
<configfile name="inputs">&lt;%
# This is an exercise in cheating the Cheetah
import json
from collections.abc import MutableMapping

def expand_collection(collection):
# All of this work is just to extract the
Expand All @@ -28,7 +29,7 @@ def expand_collection(collection):
for d in collection]

def stringify(obj):
if type(obj) is dict:
if isinstance(obj, MutableMapping):
new = {}
for key, value in obj.items():
if (key.startswith('__') and key.endswith('__')
Expand Down

0 comments on commit 1b3249e

Please sign in to comment.