Skip to content

Commit

Permalink
Replaced NotImplementedError with NotImplemented
Browse files Browse the repository at this point in the history
Signed-off-by: fazledyn-or <[email protected]>
  • Loading branch information
fazledyn-or committed Nov 16, 2023
1 parent 5c82dc5 commit 42101fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nox/_parametrize.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def __eq__(self, other: object) -> bool:
elif isinstance(other, dict):
return dict(zip(self.arg_names, self.args)) == other

raise NotImplementedError
return NotImplemented


def _apply_param_specs(param_specs: Iterable[Param], f: Any) -> Any:
Expand Down

0 comments on commit 42101fc

Please sign in to comment.