Skip to content

Commit

Permalink
fix unused argumment warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-wolbeck committed Jan 9, 2024
1 parent 0f4bbfa commit 8fdc6bc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_distns.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ def classification_data():
return X_train, X_test, y_train, y_test


def is_t_distribution(dist, learner, regression_data):
def is_t_distribution(
dist, learner, regression_data
): # pylint: disable=unused-argument
return dist == T


Expand Down

0 comments on commit 8fdc6bc

Please sign in to comment.