From 336cabee396af9b1b1ae1403e1e665850e439512 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 16 Jan 2020 18:29:31 +0000 Subject: [PATCH] METAR and TAF are experimental --- memfs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/memfs.py b/memfs.py index 32a0ab7df..52c471ced 100755 --- a/memfs.py +++ b/memfs.py @@ -9,7 +9,8 @@ assert len(sys.argv) > 2 # For now exclude GRIB3 as it is still experimental # The BUFR codetables is not used in the engine -EXCLUDED = ['grib3', 'codetables'] +# METAR and TAF are also experimental +EXCLUDED = ['grib3', 'codetables', 'taf', 'metar'] dirs = [os.path.realpath(x) for x in sys.argv[1:-1]] print(dirs)