Commit c560dae0 authored by Denis Bilenko's avatar Denis Bilenko

_semaphore: avoid compiler warnings for unused variables

parent fe867ee5
......@@ -126,5 +126,5 @@ class Semaphore(object):
def __enter__(self):
self.acquire()
def __exit__(self, typ, val, tb):
def __exit__(self, *args):
self.release()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment