Skip to content

Commit

Permalink
Merge branch 'main' into ci-modernize
Browse files Browse the repository at this point in the history
  • Loading branch information
jpn-- authored Mar 18, 2024
2 parents efe9aee + 25351d4 commit 8700d3d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repos:

- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.2.2
rev: v0.3.2
hooks:
# Run the linter.
- id: ruff
Expand Down
6 changes: 3 additions & 3 deletions sharrow/relationships.py
Original file line number Diff line number Diff line change
Expand Up @@ -1341,9 +1341,9 @@ def mapper_get(x, mapper=mapper):
if p_dataset[k].equals(offsets):
# we found a match, so we'll assign this name to
# the match's memory storage instead of replicating it.
obj._graph.nodes[r.parent_data][
"dataset"
] = p_dataset.assign({r_parent_name_new: p_dataset[k]})
obj._graph.nodes[r.parent_data]["dataset"] = (
p_dataset.assign({r_parent_name_new: p_dataset[k]})
)
# r_parent_name_new = k
break
else:
Expand Down

0 comments on commit 8700d3d

Please sign in to comment.