Skip to content

Commit de462aa

Browse files
committed
Fix indentation
1 parent b24728a commit de462aa

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pysteps/io/interface.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ def get_method(name, type):
4747
return importers.import_fmi_pgm
4848
elif name.lower() == "mch_gif":
4949
return importers.import_mch_gif
50+
elif name.lower() == "mch_metranet":
51+
return importers._import_mch_metranet
5052
elif name.lower() == "odim_hdf5":
5153
return importers.import_odim_hdf5
5254
else:
@@ -55,7 +57,7 @@ def get_method(name, type):
5557
elif type.lower() == "exporter":
5658
if name.lower() == "netcdf":
5759
return exporters.initialize_forecast_exporter_netcdf
58-
else:
60+
else:
5961
raise ValueError("unknown exporter method %s" % name)
6062

6163

0 commit comments

Comments
 (0)