Skip to content

Commit

Permalink
Indent
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanebruckert committed Jan 23, 2025
1 parent c831028 commit e9e31e2
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions spotipy/oauth2.py
Original file line number Diff line number Diff line change
Expand Up @@ -1225,20 +1225,20 @@ def do_GET(self):
return

self._write(f"""<html>
<script>
window.close()
</script>
<body>
<h1>Authentication status: {status}</h1>
This window can be closed.
<script>
window.close()
</script>
<button class="closeButton" style="cursor: pointer" onclick="window.close();">
Close Window
</button>
</body>
</html>""")
<script>
window.close()
</script>
<body>
<h1>Authentication status: {status}</h1>
This window can be closed.
<script>
window.close()
</script>
<button class="closeButton" style="cursor: pointer" onclick="window.close();">
Close Window
</button>
</body>
</html>""")

def _write(self, text):
return self.wfile.write(text.encode("utf-8"))
Expand Down

0 comments on commit e9e31e2

Please sign in to comment.