From 37ef414d0bfed80cc95fd2038110afb72f4f5291 Mon Sep 17 00:00:00 2001 From: Filipe Fernandes Date: Thu, 14 Nov 2024 21:08:52 +0100 Subject: [PATCH] remove unused argumente --- compliance_checker/cfutil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compliance_checker/cfutil.py b/compliance_checker/cfutil.py index 8bcce331..22336140 100644 --- a/compliance_checker/cfutil.py +++ b/compliance_checker/cfutil.py @@ -2028,7 +2028,7 @@ def guess_feature_type(nc, variable): return "reduced-grid" -def units_convertible(units1, units2, reftimeistime=True): +def units_convertible(units1, units2): """ Return True if a Unit representing the string units1 can be converted to a Unit representing the string units2, else False.