Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
## Issue
_Link to the issue resolved by this PR._

## Description
_Description of the approach taken to solve the issue._

## How to test
_How to verify the changes._

## Checklist
- [ ] No redundant \`print()\` statements, commented-out code, or other remnants from the development 👀
- [ ] New/refactored code is following same conventions as the rest of the code base 🧬
- [ ] New/refactored code is tested ⚙
- [ ] Documentation has been updated 🧾
- [ ] Commits are semantic ✅
4 changes: 2 additions & 2 deletions src/sumo/wrapper/_auth_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,8 +325,8 @@ def login(self):
if "error" in flow:
print(
"\n\n \033[31m"
+ "Failed to initiate device-code login. Err: %s"
+ "\033[0m" % json.dumps(flow, indent=4)
+ "Failed to initiate device-code login. Err: %s\033[0m"
% json.dumps(flow, indent=4)
)
return
flow["expires_at"] = (
Expand Down
Loading