Skip to content

Commit

Permalink
fix: compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler committed Nov 25, 2024
1 parent c7d4c11 commit aa7a0c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion a_sync/a_sync/_flags.pxd
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
cdef inline bint negate_if_necessary(str flag, bint flag_value)
cdef inline bint validate_flag_value(str flag, object flag_value)
cdef bint validate_flag_value(str flag, object flag_value)
cdef bint validate_and_negate_if_necessary(str flag, object flag_value)
2 changes: 1 addition & 1 deletion a_sync/a_sync/base.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ cdef str _parse_flag_name_from_list(object cls, object items):
return present_flags[0]


cdef bint _get_a_sync_flag_value_from_class_def(object cls, str flag):
cdef inline bint _get_a_sync_flag_value_from_class_def(object cls, str flag):
cdef object spec
for spec in [cls, *cls.__bases__]:
if flag in spec.__dict__:
Expand Down

0 comments on commit aa7a0c7

Please sign in to comment.