Skip to content

Commit 8cacc6e

Browse files
committed
Tweak names for some more consistency
1 parent 6d10cc8 commit 8cacc6e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

rsconnect/models.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ class AppModes(object):
8181
STREAMLIT_APP = AppMode(10, "python-streamlit", "Streamlit Application")
8282
BOKEH_APP = AppMode(11, "python-bokeh", "Bokeh Application")
8383
PYTHON_FASTAPI = AppMode(12, "python-fastapi", "Python FastAPI")
84-
QUARTO_SHINY = AppMode(13, "quarto-shiny", "Quarto Shiny Document")
85-
QUARTO_STATIC = AppMode(14, "quarto-static", "Quarto Document", ".qmd")
84+
SHINY_QUARTO = AppMode(13, "quarto-shiny", "Shiny Quarto Document")
85+
STATIC_QUARTO = AppMode(14, "quarto-static", "Quarto Document", ".qmd")
8686

8787
_modes = [
8888
UNKNOWN,
@@ -98,8 +98,8 @@ class AppModes(object):
9898
STREAMLIT_APP,
9999
BOKEH_APP,
100100
PYTHON_FASTAPI,
101-
QUARTO_SHINY,
102-
QUARTO_STATIC,
101+
SHINY_QUARTO,
102+
STATIC_QUARTO,
103103
]
104104

105105
@classmethod

0 commit comments

Comments
 (0)