Skip to content

Commit

Permalink
Wait 10 seconds for extra tabs to appear
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Jun 23, 2022
1 parent e5e409f commit 54f1b1c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"python.formatting.provider": "black",
"python.formatting.blackPath": ".venv/bin/black",
"cSpell.words": [
"applescript",
"builtins",
"codecov",
"codehilite",
Expand Down
4 changes: 0 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]

name = "slackoff"
version = "0.2.1"
version = "0.2.2"
description = "Automatically sign out of Slack workspaces on macOS."

license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion slackoff/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def attempt_signout(workspace) -> bool:
click.echo(f"Signed out of {workspace}")
settings.deactivate(workspace)
log.debug("Waiting for extra browser tabs")
time.sleep(5)
time.sleep(10)
browser.close()
return True

Expand Down

0 comments on commit 54f1b1c

Please sign in to comment.