Skip to content

Commit

Permalink
Merge pull request #44 from TeskaLabs/Bug/Fix-from-testing
Browse files Browse the repository at this point in the history
WIP: More testing and Fix unit tests testing
  • Loading branch information
ateska authored Nov 15, 2023
2 parents 5c73e77 + a28ea22 commit 179baf2
Show file tree
Hide file tree
Showing 6 changed files with 965 additions and 274 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ channel=general
3. Name your app and choose its home (workspace).
4. Select "Create App"
5. Configure "OAuth & Permissions".
6. Add the necessary scopes: `chat:write`, `files:write`, `files:read`, `channels:read`.
6. Add the necessary scopes: `chat:write`, `files:write`, `files:read`, `channels:read`, `channels:read`, `groups:read`, `mpim:read`, and `im:read`
7. Select "Install to Workspace".
8. "Allow"
9. Copy the OAuth access token.
Expand Down
2 changes: 1 addition & 1 deletion asabiris/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def __init__(self, message=None, *args, format=None):
if message is not None:
super().__init__(message, *args)
elif format is not None:
message = "Unsupported template format {!r}.".format(format)
message = "Unsupported conversion format {!r}.".format(format)
super().__init__(message, *args)
else:
super().__init__(message, *args)
Loading

0 comments on commit 179baf2

Please sign in to comment.