Skip to content

Commit

Permalink
remove psiturk_org_services
Browse files Browse the repository at this point in the history
  • Loading branch information
deargle committed Oct 13, 2020
1 parent 16d5d48 commit a45c7d5
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion psiturk/amt_services_wrapper.py
Expand Up @@ -17,7 +17,6 @@
from .psiturk_exceptions import *
from .psiturk_statuses import *
from .psiturk_config import PsiturkConfig
from .psiturk_org_services import PsiturkOrgServices
from .amt_services import MTurkServices
from sqlalchemy import or_, and_
from sqlalchemy.sql.operators import eq
Expand Down
1 change: 0 additions & 1 deletion psiturk/command_line.py
Expand Up @@ -5,7 +5,6 @@
import sys
import os
from psiturk.version import version_number
from psiturk.psiturk_org_services import ExperimentExchangeServices


def process():
Expand Down
2 changes: 1 addition & 1 deletion psiturk/experiment_server.py
Expand Up @@ -55,7 +55,7 @@ def load_user_config(self):
if workers == "auto":
workers = str(multiprocessing.cpu_count() * 2 + 1)

if int(workers) > 1 and config.get('Server Parameters',
if int(workers) > 1 and config.getboolean('Server Parameters',
'do_scheduler'):
raise Exception((
'Scheduler is not thread-safe, '
Expand Down
1 change: 0 additions & 1 deletion psiturk/psiturk_shell.py
Expand Up @@ -17,7 +17,6 @@
from psiturk.psiturk_statuses import *
from psiturk.psiturk_config import PsiturkConfig
from psiturk.version import version_number
from psiturk.psiturk_org_services import PsiturkOrgServices
from psiturk.amt_services_wrapper import MTurkServicesWrapper
from .psiturk_exceptions import *
import sqlalchemy as sa
Expand Down

0 comments on commit a45c7d5

Please sign in to comment.