Skip to content

Commit 62575bc

Browse files
committed
isort changes (minus spacing)
1 parent 346b123 commit 62575bc

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

app.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
from datetime import datetime
21
import os
2+
from datetime import datetime
33

4-
from flask import Flask, render_template, request, redirect, url_for, send_from_directory
5-
from flask_sqlalchemy import SQLAlchemy
4+
from flask import Flask, redirect, render_template, request, send_from_directory, url_for
65
from flask_migrate import Migrate
6+
from flask_sqlalchemy import SQLAlchemy
77
from flask_wtf.csrf import CSRFProtect
88

99

azureproject/development.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from pathlib import Path
21
import os
2+
from pathlib import Path
33

44
# Build paths inside the project like this: BASE_DIR / 'subdir'.
55
BASE_DIR = Path(__file__).resolve().parent.parent

models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from sqlalchemy import Column, Integer, String, ForeignKey, DateTime
1+
from sqlalchemy import Column, DateTime, ForeignKey, Integer, String
22
from sqlalchemy.orm import validates
33

44
from app import db

0 commit comments

Comments
 (0)