-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
🔧 chore: fix msteams client typing #89449
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅ ✅ All tests successful. No failed tests found. Additional details and impacted files@@ Coverage Diff @@
## master #89449 +/- ##
=======================================
Coverage 87.73% 87.73%
=======================================
Files 10161 10161
Lines 573611 573650 +39
Branches 22565 22565
=======================================
+ Hits 503229 503278 +49
+ Misses 69948 69938 -10
Partials 434 434 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# MsTeamsClientMixin abstract client does not handle setting the base url or auth token | ||
class MsTeamsClientMixin: | ||
# MsTeamsClientABC abstract client does not handle setting the base url or auth token | ||
class MsTeamsClientABC(ApiClient, ABC): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ideally the mixin would be converted to free functions since it's not really sound (and this patch adds a diamond inheritance) -- but this is an improvement at least
No description provided.