From e5b1a0c9bee8ba6cc1fe5af99afe725aec2b6509 Mon Sep 17 00:00:00 2001 From: Ofey Chan Date: Wed, 9 Nov 2022 15:28:33 +0800 Subject: [PATCH] [NFC] polish .github/workflows/scripts/generate_release_draft.py code style (#1855) --- .github/workflows/scripts/generate_release_draft.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/scripts/generate_release_draft.py b/.github/workflows/scripts/generate_release_draft.py index fdcd667ae..1c407cf14 100644 --- a/.github/workflows/scripts/generate_release_draft.py +++ b/.github/workflows/scripts/generate_release_draft.py @@ -2,9 +2,10 @@ # coding: utf-8 import argparse -import requests -import re import os +import re + +import requests COMMIT_API = 'https://api.github.com/repos/hpcaitech/ColossalAI/commits' TAGS_API = 'https://api.github.com/repos/hpcaitech/ColossalAI/tags'