diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2024-10-16 15:04:10 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2024-10-16 15:04:10 +0200 |
commit | 904d04903b52706b94cae6e0f0b2e99f5d3f38dc (patch) | |
tree | 8bf490754fec2ac28527da9961e4c99e532567d6 | |
parent | 32863e21fa16e949fc20c4588e84b90916265367 (diff) | |
download | meteo_toolbox-package_python.tar.gz |
fix importpackage_python
-rwxr-xr-x | metchart/plotter/horizontal.py | 2 | ||||
-rwxr-xr-x | metchart/plotter/vertical_from_grib.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/metchart/plotter/horizontal.py b/metchart/plotter/horizontal.py index 89945c3..7372935 100755 --- a/metchart/plotter/horizontal.py +++ b/metchart/plotter/horizontal.py @@ -8,7 +8,7 @@ import numpy as np import matplotlib.pyplot as plt from metpy.plots import MapPanel, PanelContainer, RasterPlot, ContourPlot -from . import misc +from .. import misc config = { 'source': 'dwd_icon-eu/combined.grib2', diff --git a/metchart/plotter/vertical_from_grib.py b/metchart/plotter/vertical_from_grib.py index c632b0b..bed0ecc 100755 --- a/metchart/plotter/vertical_from_grib.py +++ b/metchart/plotter/vertical_from_grib.py @@ -13,7 +13,7 @@ import numpy as np import skewt -from . import misc +from .. import misc config = { 'source':'dwd_icon-eu/combined.grib2', |