Skip to content

Commit

Permalink
Import pickle directly in base.py (#490)
Browse files Browse the repository at this point in the history
  • Loading branch information
twizmwazin authored Sep 13, 2024
1 parent 7005421 commit 4175e11
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions claripy/ast/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import itertools
import logging
import math
import pickle
import struct
from collections import deque
from contextlib import suppress
Expand All @@ -25,11 +26,6 @@
from claripy import Backend
from claripy.annotation import Annotation

try:
import _pickle as pickle
except ImportError:
import pickle

l = logging.getLogger("claripy.ast")

blake2b_unpacker = struct.Struct("Q")
Expand Down

0 comments on commit 4175e11

Please sign in to comment.