Skip to content

Instantly share code, notes, and snippets.

@jamilnoyda
Last active September 3, 2020 15:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamilnoyda/1e6b13c82ba2a3ae0632149cf16db0b0 to your computer and use it in GitHub Desktop.
Save jamilnoyda/1e6b13c82ba2a3ae0632149cf16db0b0 to your computer and use it in GitHub Desktop.
# 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