Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ utils/__pycache__
results
*~
.coverage
htmlcov
htmlcov
__pycache__
5 changes: 3 additions & 2 deletions spreadsheet_ram.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@ class SSRAMGenerator:
def __init__(self, config_file, util_file):
"""Initializer"""
self._import_custom_mappings(util_file)
# Process is required for the voltage
self._process = Process(RunUtils.get_config(config_file))
if config_file:
# Use config to get voltage
self._process = Process(RunUtils.get_config(config_file))

def _import_custom_mappings(self, file_name):
"""
Expand Down
Loading
Loading