Skip to content

Commit

Permalink
Remove prematurely committed internal rc changes
Browse files Browse the repository at this point in the history
  • Loading branch information
lukelbd committed May 29, 2022
1 parent 15e70c7 commit edf3941
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,9 @@
# -- Create files --------------------------------------------------------------

# Create RST table and sample proplotrc file
from proplot.internals import settings
path = os.path.join('_static', 'rctable.rst')
table = settings._generate_rst_table()
with open(path, 'w') as f:
f.write(table)
path = os.path.join('_static', 'proplotrc')
table = settings._generate_yaml_table()
with open(path, 'w') as f:
f.write(table)
from proplot.config import rc
rc._save_rst(os.path.join('_static', 'rctable.rst'))
rc._save_yaml(os.path.join('_static', 'proplotrc'))

# -- Setup basemap --------------------------------------------------------------

Expand Down

0 comments on commit edf3941

Please sign in to comment.