Skip to content

Commit

Permalink
Remove unnecessary pylint comment
Browse files Browse the repository at this point in the history
We do not need to explicitly disable invalid-name in the .py files because that
is handled in pylintrc
  • Loading branch information
mnlevy1981 committed Feb 14, 2023
1 parent 2af2980 commit 5558e7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MARBL_tools/netcdf_comparison.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,8 @@ def _parse_args():
logging.basicConfig(format='%(message)s', level=logging.INFO)
LOGGER = logging.getLogger(__name__)

args = _parse_args() # pylint: disable=invalid-name
ds_base_in, ds_new_in = _open_files(args.baseline, args.new_file) # pylint: disable=invalid-name
args = _parse_args()
ds_base_in, ds_new_in = _open_files(args.baseline, args.new_file)
if args.strict == 'loose':
if ds_comparison_loose(ds_base_in, ds_new_in, args.rtol, args.atol, args.thres):
LOGGER.error("Differences found between files!")
Expand Down

0 comments on commit 5558e7b

Please sign in to comment.