Skip to content

Commit

Permalink
set soba term output to dumb
Browse files Browse the repository at this point in the history
  • Loading branch information
jhidding committed Nov 13, 2017
1 parent e4e0d99 commit 9ef51f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/soba/soba.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from noodles.run.worker import (worker)
from noodles.run.thread_pool import (thread_pool)
from noodles.run.scheduler import (Scheduler)
from noodles.display import NCDisplay
from noodles.display import (NCDisplay, DumbDisplay)

import subprocess
import sys
Expand Down Expand Up @@ -177,5 +177,5 @@ def error_filter(ex_type, ex_value, ex_tb):
jobs = [make_job(td['command'],
td['task'], td['exclude']) for td in input]
wf = noodles.gather(*jobs)
with NCDisplay(error_filter) as display:
with DumbDisplay(error_filter) as display:
run(wf, display=display, n_threads=args.n_threads)

0 comments on commit 9ef51f2

Please sign in to comment.