Skip to content

Commit

Permalink
fix E501
Browse files Browse the repository at this point in the history
also put report_failure to the end to match the style
  • Loading branch information
yslan authored and inducer committed Jan 11, 2025
1 parent 733317e commit 3296283
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion course/page/code_feedback.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ def check_numpy_array_sanity(self, name, num_axes, data):
0, f"'{name}' does not consist of floating point numbers--"
f"got: '{data.dtype}'")

def check_numpy_array_features(self, name, ref, data, report_failure=True, check_finite=True):
def check_numpy_array_features(self, name, ref, data, check_finite=True,
report_failure=True):

import numpy as np
assert isinstance(ref, np.ndarray)

Expand Down

0 comments on commit 3296283

Please sign in to comment.