Skip to content

Commit

Permalink
WIP: Trying to see how limiting affects it
Browse files Browse the repository at this point in the history
  • Loading branch information
dopplershift committed Oct 27, 2023
1 parent 1c51ab9 commit 65487d2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/make_areas.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def generate_area_file(app):
if area in states_provinces:
code = textwrap.dedent(f"""
.. plot::
:context: reset
:context: close-figs
import matplotlib.pyplot as plt
import cartopy.crs as ccrs
Expand All @@ -76,7 +76,7 @@ def generate_area_file(app):
else:
code = textwrap.dedent(f"""
.. plot::
:context: reset
:context: close-figs
import matplotlib.pyplot as plt
import cartopy.crs as ccrs
Expand All @@ -95,7 +95,7 @@ def generate_area_file(app):
""")
table.write(code)
if not app.config.metpy_generate_all_areas and ind >= 1:
if ind >= 10:
break


Expand Down

0 comments on commit 65487d2

Please sign in to comment.