Skip to content

Commit

Permalink
pylint: disable=E1101
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmed-irfan committed Dec 18, 2024
1 parent 404d7e2 commit f7dd417
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions yices/Context.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def check_context_with_model_and_hint(self, params, model, python_array_or_tuple
alist = list(python_array_or_tuple) + list(python_array_or_tuple_hints)
alen = len(alist)
a = yapi.make_term_array(alist)
status = yapi.yices_check_context_with_model_and_hint(self.context, params, model.model, alen, a, m)
status = yapi.yices_check_context_with_model_and_hint(self.context, params, model.model, alen, a, m) # pylint: disable=E1101
if status == Status.ERROR:
raise YicesException('check_context_with_model_and_hint')
return status
Expand All @@ -150,7 +150,7 @@ def mcsat_set_fixed_var_order(self, python_array_or_tuple):
assert self.context is not None
alen = len(python_array_or_tuple)
a = yapi.make_term_array(python_array_or_tuple)
status = yapi.yices_mcsat_set_fixed_var_order(self.context, alen, a)
status = yapi.yices_mcsat_set_fixed_var_order(self.context, alen, a) # pylint: disable=E1101
if status == Status.ERROR:
raise YicesException('mcsat_set_fixed_var_order')
return status
Expand All @@ -159,7 +159,7 @@ def mcsat_set_initial_var_order(self, python_array_or_tuple):
assert self.context is not None
alen = len(python_array_or_tuple)
a = yapi.make_term_array(python_array_or_tuple)
status = yapi.yices_mcsat_set_initial_var_order(self.context, alen, a)
status = yapi.yices_mcsat_set_initial_var_order(self.context, alen, a) # pylint: disable=E1101
if status == Status.ERROR:
raise YicesException('mcsat_set_initial_var_order')
return status
Expand Down

0 comments on commit f7dd417

Please sign in to comment.