Skip to content

Commit ef699a1

Browse files
Arjun Barrettnilfm99
authored andcommitted
remove explicit default
1 parent 04f47f4 commit ef699a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/vmaf/core/executor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -437,8 +437,8 @@ def _open_workfiles_in_fifo_mode(self, asset):
437437
sem.acquire()
438438

439439
def _open_procfiles(self, asset):
440-
self._open_ref_procfile(asset, open_sem=None, fifo_mode=False)
441-
self._open_dis_procfile(asset, open_sem=None, fifo_mode=False)
440+
self._open_ref_procfile(asset, fifo_mode=False)
441+
self._open_dis_procfile(asset, fifo_mode=False)
442442

443443
def _open_procfiles_in_fifo_mode(self, asset):
444444
sem = multiprocessing.Semaphore(0)

0 commit comments

Comments
 (0)