diff options
author | Frederick Muriuki Muriithi | 2023-12-18 16:16:01 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-12-18 16:16:38 +0300 |
commit | dd0673f95ed3508d42c93fd9cdfc2523979db284 (patch) | |
tree | 5215d57232d12e560b75ec98c8db4a4eb91c18c0 | |
parent | 8de7afc643b3b2d627d55896af06b9150eb0ddaa (diff) | |
download | genenetwork2-dd0673f95ed3508d42c93fd9cdfc2523979db284.tar.gz |
Fix typo.
-rw-r--r-- | wqflask/wqflask/oauth2/collections.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/oauth2/collections.py b/wqflask/wqflask/oauth2/collections.py index d4bfe7f0..63bf206e 100644 --- a/wqflask/wqflask/oauth2/collections.py +++ b/wqflask/wqflask/oauth2/collections.py @@ -4,7 +4,7 @@ from .checks import user_logged_in from .client import oauth2_get, no_token_get def num_collections() -> int: - """Compute the number of collections available for tte current sussion.""" + """Compute the number of collections available for the current session.""" anon_id = session_info()["anon_id"] all_collections = no_token_get( f"auth/user/collections/{anon_id}/list").either( |