Skip to content

Commit

Permalink
BugFix: TypeError when invoking pyscenic from the command line.
Browse files Browse the repository at this point in the history
  • Loading branch information
bramvds committed Nov 29, 2018
1 parent e4cd5f9 commit c56f83f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pyscenic/cli/pyscenic.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
import os

# Set number of threads to use for OpenBLAS.
os.environ["OPENBLAS_NUM_THREADS"] = 1
os.environ["OPENBLAS_NUM_THREADS"] = "1"

# Set number of threads to use for MKL.
os.environ["MKL_NUM_THREADS"] = 1
os.environ["MKL_NUM_THREADS"] = "1"

import argparse
import logging
Expand Down

0 comments on commit c56f83f

Please sign in to comment.