You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove backslash from f-string (Patch for Issue: #247) (#248)
Remove backslash from f-string to maintain backward compatibility with
Python 3.10 and 3.11 versions.
Also, corrected little (very minor non-impacting) cosmetic issues.
Patch for Issue: #247
Add additional properties to Room and fix missing arguments in rooms …
…API (#246)
This pull request includes two commits; these changes enhance the
functionality and completeness of the Room class and ensure that the
rooms API works correctly.
The first commit adds additional properties to the Room class, including
`classificationId`, `isAnnouncementOnly`, `isReadOnly`, `isPublic`,
`madePublic`, and `description`.
The second commit fixes missing arguments in the rooms API by adding the
create room args to the `post_data`.
Fixes#244