Last active
September 3, 2020 15:59
-
-
Save jamilnoyda/1e6b13c82ba2a3ae0632149cf16db0b0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# bad import | |
from sqlalchemy import Boolean, Column, create_engine, DateTime, ForeignKey, Integer, MetaData, String, Table, Text | |
# good import | |
from sqlalchemy import ( | |
Boolean, | |
Column, | |
create_engine, | |
DateTime, | |
ForeignKey, | |
Integer, | |
MetaData, | |
String, | |
Table, | |
Text, | |
) | |
# black standards |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment