Skip to content

Commit

Permalink
remove explicit default
Browse files Browse the repository at this point in the history
  • Loading branch information
Arjun Barrett authored and nilfm99 committed Jul 5, 2024
1 parent 04f47f4 commit ef699a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/vmaf/core/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,8 +437,8 @@ def _open_workfiles_in_fifo_mode(self, asset):
sem.acquire()

def _open_procfiles(self, asset):
self._open_ref_procfile(asset, open_sem=None, fifo_mode=False)
self._open_dis_procfile(asset, open_sem=None, fifo_mode=False)
self._open_ref_procfile(asset, fifo_mode=False)
self._open_dis_procfile(asset, fifo_mode=False)

def _open_procfiles_in_fifo_mode(self, asset):
sem = multiprocessing.Semaphore(0)
Expand Down

0 comments on commit ef699a1

Please sign in to comment.