diff options
author | 2020-10-05 18:51:25 +0800 | |
---|---|---|
committer | 2020-10-05 18:51:25 +0800 | |
commit | d8138538a66d69760c1eac36af05c93745c3e076 (patch) | |
tree | 421e4bc9a0652166634a2eaeb6ce0bd93b8e5b53 | |
parent | update generation of query url (diff) |
fix for flake8 - no need fstring
-rw-r--r-- | bot/exts/halloween/hacktoberstats.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/halloween/hacktoberstats.py b/bot/exts/halloween/hacktoberstats.py index 9d91a310..be750dd4 100644 --- a/bot/exts/halloween/hacktoberstats.py +++ b/bot/exts/halloween/hacktoberstats.py @@ -237,7 +237,7 @@ class HacktoberStats(commands.Cog): base_url = "https://api.github.com/search/issues?q=" not_labels = ("invalid", "spam") action_type = "pr" - is_query = f"public" + is_query = "public" not_query = "draft" date_range = f"{CURRENT_YEAR}-10-01T00:00:00%2B14:00..{CURRENT_YEAR}-10-31T23:59:59-11:00" per_page = "300" |