Skip to content

Commit

Permalink
[#186925787]: Fix black after update
Browse files Browse the repository at this point in the history
  • Loading branch information
slobodan-ilic committed Jan 29, 2024
1 parent 965142b commit dc011b3
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 @@ -134,9 +134,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 dc011b3

Please sign in to comment.