6 lines
163 B
Python
6 lines
163 B
Python
def skip_file_descriptor_check(func):
|
|
def func_wrapper(item):
|
|
item._skip_file_descriptor_test = True
|
|
return func(item)
|
|
return func_wrapper
|