Skip to content

Commit

Permalink
test: attemping to add more uncovered code
Browse files Browse the repository at this point in the history
  • Loading branch information
JensZack committed Dec 2, 2024
1 parent 5ff608c commit a3e0c94
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/r2x/parser/plexos_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,14 @@ def parse_data_file(column_type: DATAFILE_COLUMNS, data_file):
data_file = parse_ts_nmdh(data_file)
case column_type.TS_NYMDH:
data_file = parse_ts_nymdh(data_file)
case "NOTACASE":
a = 4
b = 6
c = 10
x = a / b
y = a * c
z = x + y
return z
case _:
msg = f"Time series format {column_type.value} not yet supported."
raise NotImplementedError(msg)
Expand Down

0 comments on commit a3e0c94

Please sign in to comment.