Skip to content

Commit 9889f77

Browse files
committed
Remove unused imports
1 parent 11f5cee commit 9889f77

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/hello.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from datetime import datetime
22
from flask import Flask, request, flash, url_for, redirect, \
3-
render_template, abort
3+
render_template
44
from flask_sqlalchemy import SQLAlchemy
55

66

flask_sqlalchemy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
from sqlalchemy.orm.session import Session as SessionBase
3030

3131
from flask_sqlalchemy.model import Model
32-
from ._compat import itervalues, string_types, to_str, xrange
32+
from ._compat import itervalues, string_types, xrange
3333
from .model import DefaultMeta
3434

3535
__version__ = '2.3.2'

0 commit comments

Comments
 (0)