Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92b1189 commit ad79cc1Copy full SHA for ad79cc1
miss_islington/__main__.py
@@ -40,7 +40,13 @@ async def main(request):
40
await router.dispatch(event, gh)
41
try:
42
print(
43
- f"GH requests remaining: {gh.rate_limit.remaining}/{gh.rate_limit.limit}, reset time: {gh.rate_limit.reset_datetime:%b-%d-%Y %H:%M:%S %Z}"
+ f"""\
44
+GH requests remaining: {gh.rate_limit.remaining}/{gh.rate_limit.limit}, \
45
+reset time: {gh.rate_limit.reset_datetime:%b-%d-%Y %H:%M:%S %Z}, \
46
+oauth token length {len(oauth_token)}, \
47
+last 4 digits {oauth_token[-4:]}, \
48
+GH delivery ID {event.delivery_id} \
49
+"""
50
)
51
except AttributeError:
52
pass
0 commit comments