From 5404209b6b8d3915ab3a68a237e79bca2e439630 Mon Sep 17 00:00:00 2001 From: Alba Vilanova Cortezon Date: Thu, 28 Jul 2022 13:46:01 +0200 Subject: [PATCH] Remove non implemented error --- nes/load_nes.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/nes/load_nes.py b/nes/load_nes.py index 9d28afa..5507e4f 100644 --- a/nes/load_nes.py +++ b/nes/load_nes.py @@ -67,8 +67,6 @@ def open_netcdf(path, comm=None, xarray=False, info=False, parallel_method='Y', if parallel_method == 'Y': warnings.warn("Parallel method cannot be 'Y' to create points NES. Setting it to 'X'") parallel_method = 'X' - elif parallel_method == 'T': - raise NotImplementedError("Parallel method T not implemented yet") if __is_points_ghost(dataset): # Points - GHOST nessy = PointsNesGHOST(comm=comm, dataset=dataset, xarray=xarray, info=info, -- GitLab