Finish adding param

This commit is contained in:
Ilya Zverev 2018-01-16 17:04:12 +03:00
parent 5cfab45786
commit 7d0a631874

View file

@ -141,7 +141,6 @@ class Profile:
is required, you will be notified of that.
"""
def __init__(self, fileobj):
self.param = None
if isinstance(fileobj, dict):
self.profile = fileobj
elif hasattr(fileobj, 'read'):
@ -940,8 +939,9 @@ def run(profile=None):
if not profile:
logging.debug('Loading profile %s', options.profile)
global param
param = options.param
profile = Profile(profile or options.profile)
profile.param = options.param
dataset = read_dataset(profile, options.source)
if not dataset: