Skip to content

Commit

Permalink
Not creating QC variable for time variables.
Browse files Browse the repository at this point in the history
  • Loading branch information
kenkehoe committed Aug 8, 2024
1 parent 8ac845a commit 5b1fed4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions act/qc/arm.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,10 @@ def add_dqr_to_qc(
if skip_location_vars and var_name in loc_vars:
continue

# Do not process time varibles
if var_name in ['time', 'time_offset']:
continue

# Only process provided variable names
if variable is not None and var_name not in variable:
continue
Expand Down

0 comments on commit 5b1fed4

Please sign in to comment.