diff --git a/src/peracotta/parsers/read_decode_dimms.py b/src/peracotta/parsers/read_decode_dimms.py index e5b8200..16f5cea 100755 --- a/src/peracotta/parsers/read_decode_dimms.py +++ b/src/peracotta/parsers/read_decode_dimms.py @@ -38,7 +38,7 @@ def parse_decode_dimms(dimms: str, interactive: bool = False) -> List[dict]: for line in dimm.splitlines(): if line.startswith("Fundamental Memory type"): dimms[i]["ram-type"] = line.split(" ")[-2].lower() - if dimms[i]["ram-type"] == "UNKNOWN": + if dimms[i]["ram-type"] == "unknown": del dimms[i]["ram-type"] if line.startswith("Maximum module speed"):