_utils.NoLock.__exit__: Use standard parameter names

In any case, `type` is a builtin.
This commit is contained in:
Allan Lewis
2016-04-27 11:29:55 +01:00
parent 17cfffbff1
commit 32728cb8d1

View File

@@ -28,7 +28,7 @@ class NoLock(object):
def __enter__(self): def __enter__(self):
pass pass
def __exit__(self, type, value, traceback): def __exit__(self, exc_type, exc_value, traceback):
pass pass
try: try: