Skip to content

Commit

Permalink
fix python build break
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Aug 15, 2019
1 parent 2b2f016 commit eec550e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/python/z3/z3.py
Original file line number Diff line number Diff line change
Expand Up @@ -4298,7 +4298,7 @@ def is_array(a):
return isinstance(a, ArrayRef)

def is_array_sort(a):
return _ast_kind(a.ctx(), a.sort()) == Z3_ARRAY_SORT
return _ast_kind(a.ctx, a.sort()) == Z3_ARRAY_SORT

def is_const_array(a):
"""Return `True` if `a` is a Z3 constant array.
Expand Down

0 comments on commit eec550e

Please sign in to comment.