Skip to content

Commit

Permalink
Merge pull request #10 from jorenham/bugfix/do_ne
Browse files Browse the repository at this point in the history
fix incorrect `optype.do_ne` annotation
  • Loading branch information
jorenham authored Mar 16, 2024
2 parents 68caaef + 4521be6 commit bc4ece3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion optype/_do.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
do_lt: _d.DoesLt = _o.lt
do_le: _d.DoesLe = _o.le
do_eq: _d.DoesEq = _o.eq
do_ne: _d.DoesEq = _o.ne
do_ne: _d.DoesNe = _o.ne
do_gt: _d.DoesGt = _o.gt
do_ge: _d.DoesGe = _o.ge

Expand Down

0 comments on commit bc4ece3

Please sign in to comment.