Skip to content

Commit

Permalink
Remove method to check smtlib backend (#513)
Browse files Browse the repository at this point in the history
* Remove method to check smtlib backend

* Improve lint
  • Loading branch information
twizmwazin authored Sep 23, 2024
1 parent 0cf49e8 commit 73eda9a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions claripy/backends/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ class Backend:
_convert() to see if the backend can handle that type of object.
"""

# pylint: disable=too-many-positional-arguments

__slots__ = (
"_op_raw",
"_op_expr",
Expand All @@ -75,10 +77,6 @@ def __init__(self, solver_required=None):
self._true_cache = weakref.WeakKeyDictionary()
self._false_cache = weakref.WeakKeyDictionary()

@property
def is_smt_backend(self):
return False

@property
def _object_cache(self):
try:
Expand Down

0 comments on commit 73eda9a

Please sign in to comment.