Skip to content

Commit

Permalink
TCRM-78: Removing unwanted check for single layer multiplier.
Browse files Browse the repository at this point in the history
  • Loading branch information
mahmudulhasanGA committed Jun 21, 2020
1 parent cf4fe2b commit bfcc2b9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ProcessMultipliers/processMultipliers.py
Expand Up @@ -697,9 +697,10 @@ def __init__(self):
self.working_dir = config.get('Output', 'Working_dir')
self.gust_file = config.get('Input', 'Gust_file')

tiles = config.get('Input', 'Tiles')
self.tiles = [item.strip() for item in tiles.split(',')]
log.debug('List of tiles to be processed: {0}'.format(self.tiles))
if config.has_option('Input', 'Tiles'):
tiles = config.get('Input', 'Tiles')
self.tiles = [item.strip() for item in tiles.split(',')]
log.debug('List of tiles to be processed: {0}'.format(self.tiles))
log.info('Multipliers will be written out to %s', self.working_dir)

# Get the multipliers, and process them if need be
Expand Down

0 comments on commit bfcc2b9

Please sign in to comment.