blob: 34a7956fd00aef10f6313742bf901c0d6ad343c3 [file] [log] [blame]
# Copyright lowRISC contributors.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
r'''
Class describing lint configuration object
'''
from LintCfg import LintCfg
class CdcCfg(LintCfg):
'''Derivative class for linting purposes.'''
flow = 'cdc'
def __init__(self, flow_cfg_file, hjson_data, args, mk_config):
super().__init__(flow_cfg_file, hjson_data, args, mk_config)
self.results_title = f'{self.name.upper()} CDC Results'