From 6973e227e6920b74e98c8c632144d8d33959d046 Mon Sep 17 00:00:00 2001 From: srcarter3 Date: Wed, 9 Sep 2020 11:28:29 -0600 Subject: [PATCH] move "matplotlib inline" after imports --- examples/notebooks/METAR_Station_Plot_with_MetPy.ipynb | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/examples/notebooks/METAR_Station_Plot_with_MetPy.ipynb b/examples/notebooks/METAR_Station_Plot_with_MetPy.ipynb index 474d05b..9a53894 100644 --- a/examples/notebooks/METAR_Station_Plot_with_MetPy.ipynb +++ b/examples/notebooks/METAR_Station_Plot_with_MetPy.ipynb @@ -1,14 +1,5 @@ { "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, { "cell_type": "markdown", "metadata": {}, @@ -33,6 +24,7 @@ "from metpy.plots import StationPlot, StationPlotLayout\n", "from metpy.units import units\n", "import warnings\n", + "%matplotlib inline\n", "warnings.filterwarnings(\"ignore\",category =RuntimeWarning)\n", "\n", "def get_cloud_cover(code):\n",