myems-aggregation/offline_meter_carbon.py
Function main
has a Cognitive Complexity of 131 (exceeds 5 allowed). Consider refactoring. Open
Open
def main(logger):
while True:
# the outermost while loop
################################################################################################################
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Avoid deeply nested control flow statements. Open
Open
if current_factor is not None \
and isinstance(current_factor, Decimal) \
and current_energy is not None \
and isinstance(current_energy, Decimal):
aggregated_value['actual_value'] = current_energy * current_factor
Avoid deeply nested control flow statements. Open
Open
if aggregated_value['actual_value'] is not None and \
isinstance(aggregated_value['actual_value'], Decimal):
add_values += " (" + str(offline_meter['id']) + ","
add_values += "'" + aggregated_value['start_datetime_utc'].isoformat()[0:19] + "',"
add_values += str(aggregated_value['actual_value']) + "), "