Disable sharing by default in demo
Browse files- demo/app.py +1 -1
demo/app.py
CHANGED
@@ -13,7 +13,7 @@ def main():
|
|
13 |
parser.add_argument(
|
14 |
"--share",
|
15 |
type=int,
|
16 |
-
default=
|
17 |
help="Whether to enable the app to be accessible online"
|
18 |
"-> setups a public link which requires internet access.",
|
19 |
)
|
|
|
13 |
parser.add_argument(
|
14 |
"--share",
|
15 |
type=int,
|
16 |
+
default=0,
|
17 |
help="Whether to enable the app to be accessible online"
|
18 |
"-> setups a public link which requires internet access.",
|
19 |
)
|