Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
ernestoarbitrio committed Jul 3, 2024
1 parent 95c6170 commit 4340975
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/cr/cube/matrix/cubemeasure.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,7 @@ def factory(cls, counts, diff_nans, cube, dimensions, slice_idx):
(
"MR"
if dim_type == DT.MR
else "ARR"
if dim_type in DT.ARRAY_TYPES
else "CAT"
else "ARR" if dim_type in DT.ARRAY_TYPES else "CAT"
)
for dim_type in cube.dimension_types[-2:]
)
Expand Down

0 comments on commit 4340975

Please sign in to comment.