Skip to content

Commit

Permalink
Rename resolve_mask_i to resolve_mask
Browse files Browse the repository at this point in the history
  • Loading branch information
jrycw committed Jan 15, 2025
1 parent 34d7452 commit 4cbce52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions great_tables/_locations.py
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@ def resolve_rows_i(
)


def resolve_mask_i(
def resolve_mask(
data: GTData | list[str],
expr: PlExpr,
excl_stub: bool = True,
Expand Down Expand Up @@ -930,7 +930,7 @@ def _(loc: LocBody, data: GTData) -> list[CellPos]:
CellPos(col[1], row[1], colname=col[0]) for col, row in itertools.product(cols, rows)
]
else:
cellpos_data = resolve_mask_i(data=data, expr=loc.mask)
cellpos_data = resolve_mask(data=data, expr=loc.mask)
cell_pos = [CellPos(*cellpos) for cellpos in cellpos_data]
return cell_pos

Expand Down

0 comments on commit 4cbce52

Please sign in to comment.