Skip to content

Instantly share code, notes, and snippets.

View Marto32's full-sized avatar

Michael Martorella Marto32

View GitHub Profile
@Marto32
Marto32 / gist:007703611f0b3454b24ac1952da5ba27
Created March 22, 2021 18:53
Example that throws exception.
# Created to illustrate an example for:
# https://github.com/sqlalchemy/sqlalchemy/issues/6102
from typing import List
from sqlalchemy import (Column, Integer, String)
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import Session
Base = declarative_base()