createCustomStandard.py [125:138]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    controlMappingSources = []

                    # Adding each data source to a
                    # list to feed into the control creation
                    for data_source in input[control_set][control]["controlMappingSources"]:
                        # Converting keywords to uppercase if not already
                        if "sourceKeyword" in data_source:
                            keyword = data_source["sourceKeyword"]["keywordValue"]
                            if keyword.isupper() is not True:
                                uppercase_keyword = keyword.upper()
                                data_source["sourceKeyword"]["keywordValue"] = uppercase_keyword
                        controlMappingSources.append(data_source)
                    # Create control
                    try:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



createCustomStandard.py [163:176]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                controlMappingSources = []

                # Adding each data source to a
                # list to feed into the control creation
                for data_source in input[control_set][control]["controlMappingSources"]:
                    # Converting keywords to uppercase if not already
                    if "sourceKeyword" in data_source:
                        keyword = data_source["sourceKeyword"]["keywordValue"]
                        if keyword.isupper() is not True:
                            uppercase_keyword = keyword.upper()
                            data_source["sourceKeyword"]["keywordValue"] = uppercase_keyword
                    controlMappingSources.append(data_source)
                # Create control
                try:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



