Skip to content

Commit

Permalink
Initialize Job.scan with None
Browse files Browse the repository at this point in the history
  • Loading branch information
alongd committed Jul 31, 2019
1 parent f50f8d1 commit 8dbc00b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arc/job/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class Job(object):
"""
def __init__(self, project, ess_settings, species_name, xyz, job_type, level_of_theory, multiplicity,
project_directory, charge=0, conformer=-1, fine=False, shift='', software=None, is_ts=False, scan='',
project_directory, charge=0, conformer=-1, fine=False, shift='', software=None, is_ts=False, scan=None,
pivots=None, memory=14, comments='', trsh='', scan_trsh='', ess_trsh_methods=None, bath_gas=None,
initial_trsh=None, job_num=None, job_server_name=None, job_name=None, job_id=None, server=None,
initial_time=None, occ=None, max_job_time=120, scan_res=None, checkfile=None, number_of_radicals=None,
Expand Down
2 changes: 1 addition & 1 deletion arc/job/jobTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def test_as_dict(self):
'occ': None,
'pivots': [],
'project_directory': os.path.join(arc_path, 'Projects', 'project_test'),
'scan': '',
'scan': None,
'server': 'server1',
'shift': '',
'max_job_time': 120,
Expand Down

0 comments on commit 8dbc00b

Please sign in to comment.