Skip to content

Commit

Permalink
Remove threading.Lock
Browse files Browse the repository at this point in the history
  • Loading branch information
stuhood committed May 31, 2019
1 parent 396cfd8 commit bef33a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/pants/binaries/binary_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class BinaryToolBase(Subsystem):

def __init__(self, *args, **kwargs):
super(BinaryToolBase, self).__init__(*args, **kwargs)
self._snapshot_lock = threading.RLock()
self._snapshot_lock = threading.Lock()

@classmethod
def subsystem_dependencies(cls):
Expand Down

0 comments on commit bef33a3

Please sign in to comment.