Skip to content

Commit

Permalink
ignoring Flake8 E499 for now in [*index]
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Aschwanden committed Dec 19, 2023
1 parent 42f74ec commit faee8d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pypism/extract_profile.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
# Copyright (C) 2015, 2016, 2018, 2021 Constantine Khroulev and Andy Aschwanden
# Copyright (C) 2015, 2016, 2018, 2021, 2023 Constantine Khroulev and Andy Aschwanden
#

# nosetests --with-coverage --cover-branches --cover-html
Expand Down Expand Up @@ -722,7 +722,7 @@ def read_subset(t=0, z=0):
index.append(indexes[dim])
except KeyError:
index.append(Ellipsis)
return variable[*index]
return variable[*index] # noqa: E499

n_points = len(profile.x)

Expand Down

0 comments on commit faee8d5

Please sign in to comment.