Skip to content

Commit

Permalink
Disabled sharing by default
Browse files Browse the repository at this point in the history
  • Loading branch information
andreped committed Oct 25, 2023
1 parent 25fa374 commit c0abadd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions demo/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def main():
parser.add_argument(
"--share",
type=int,
default=1,
default=0,
help="Whether to enable the app to be accessible online"
"-> setups a public link which requires internet access.",
)
Expand All @@ -30,7 +30,7 @@ def main():
"The 'share' argument can only be set to 0 or 1, but was:",
args.share,
)

print("Current cwd:", args.cwd)

# initialize and run app
Expand Down

0 comments on commit c0abadd

Please sign in to comment.