Skip to content

Commit f6973f9

Browse files
committed
Reordered python imports
1 parent c705a66 commit f6973f9

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

backend/PyMatcha/routes/api/ping_pong.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
You should have received a copy of the GNU General Public License
1717
along with this program. If not, see <https://www.gnu.org/licenses/>.
1818
"""
19-
20-
from flask import Blueprint, jsonify
19+
from flask import Blueprint
20+
from flask import jsonify
2121

2222
ping_pong_bp = Blueprint("ping_pong", __name__)
2323

backend/PyMatcha/utils/confirm_token.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
You should have received a copy of the GNU General Public License
1717
along with this program. If not, see <https://www.gnu.org/licenses/>.
1818
"""
19-
2019
import logging
2120

22-
from itsdangerous import URLSafeTimedSerializer, SignatureExpired, BadSignature
23-
21+
from itsdangerous import BadSignature
22+
from itsdangerous import SignatureExpired
23+
from itsdangerous import URLSafeTimedSerializer
2424
from PyMatcha import application
2525

2626
ACCEPTED_TOKEN_TYPES = ["confirm", "reset"]

backend/PyMatcha/utils/orm/_field.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from datetime import datetime
22

33
import pymysql
4-
54
from PyMatcha import database_config
65

76
# Connect to the database

backend/PyMatcha/utils/password.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
You should have received a copy of the GNU General Public License
1717
along with this program. If not, see <https://www.gnu.org/licenses/>.
1818
"""
19-
2019
import hashlib
2120
import logging
2221
import uuid

0 commit comments

Comments
 (0)