File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ version NEXT
10
10
`cf.Field.regrids ` and `cf.Field.regridc `
11
11
(https://github.com/NCAS-CMS/cf-python/issues/715)
12
12
* Improve the performance of reading and accessing the data of PP and
13
- UM fields files (https://github.com/NCAS-CMS/cf-python/issues/7?? )
13
+ UM fields files (https://github.com/NCAS-CMS/cf-python/issues/746 )
14
14
* Improve `cf.Field.collapse ` performance by lazily computing reduced
15
15
axis coordinates (https://github.com/NCAS-CMS/cf-python/issues/741)
16
16
* Improve `cf.Field.__getitem__ ` performance by not re-calculating
Original file line number Diff line number Diff line change @@ -454,8 +454,11 @@ def __getitem__(self, indices):
454
454
# below.
455
455
if org_cyclic:
456
456
new_cyclic = new_data.cyclic()
457
- [new.cyclic(i, iscyclic=False) for i in org_cyclic if i not in new_cyclic]
458
-
457
+ [
458
+ new.cyclic(i, iscyclic=False)
459
+ for i in org_cyclic
460
+ if i not in new_cyclic
461
+ ]
459
462
460
463
# ------------------------------------------------------------
461
464
# Subspace constructs with data
You can’t perform that action at this time.
0 commit comments