Skip to content

Commit

Permalink
FIX: Fix failing ci isinstance (#1448)
Browse files Browse the repository at this point in the history
* FIX: Add isinstance checks to improve linting

* FIX: Fix the isinstance test
  • Loading branch information
mgrover1 committed Aug 18, 2023
1 parent 172bbcf commit ba7f353
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/retrieve/test_echo_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def test_data_limits_table():
"RhoHV": (-5.23, -50.0),
}

assert type(dlimits_dict) == dict
assert isinstance(dlimits_dict, dict)
assert dlimits_dict == test_dict


Expand Down

0 comments on commit ba7f353

Please sign in to comment.