Skip to content

Instantly share code, notes, and snippets.

@sweettuse
sweettuse / inspect_inline_annotations.py
Created July 28, 2018 00:02
inspect inline annotations in python
import ast
import inspect
import textwrap
from contextlib import suppress
from collections import defaultdict
from typing import Union, Dict, Callable, Type, Any, Tuple, List
def is_union(t) -> bool: