Skip to content

Commit

Permalink
Replace Pick.any with Pick.any_
Browse files Browse the repository at this point in the history
  • Loading branch information
ryn5 committed Jan 8, 2024
1 parent e86eed2 commit ef78b7f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,9 @@ def process(f):
statics.add_static('asc', Order.asc)
statics.add_static('desc', Order.desc)

Pick = Enum('Pick', ' any none')
Pick = Enum('Pick', ' any_ none')

statics.add_static('any', Pick.any)
statics.add_static('any_', Pick.any_)
statics.add_static('none', Pick.none)

Pop = Enum('Pop', ' all_ first last mixed')
Expand Down

0 comments on commit ef78b7f

Please sign in to comment.