Skip to content

Commit

Permalink
Merge pull request #12 from alishahali1382/fix-BasicClassifier-constr…
Browse files Browse the repository at this point in the history
…uctor

remove NotImplementedError from BasicClassifier constructor
  • Loading branch information
amirhossein-razlighi authored May 31, 2024
2 parents d3cfccd + 73a605d commit 9fe8b77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Logic/core/classification/basic_classifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class BasicClassifier:
def __init__(self):
raise NotImplementedError()
pass

def fit(self, x, y):
raise NotImplementedError()
Expand Down

0 comments on commit 9fe8b77

Please sign in to comment.