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
from typing import Type, Callable, Iterable, List, TypeVar, Generator, cast | |
import pytest | |
T = TypeVar('T') | |
def class_wraps(original_cls: Type) -> Callable[[Type], Type]: | |
""" A decorator to update the wrapped class's docstring with that of the | |
original class (plus that of the wrapped class). |
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
openapi: 3.0.0 | |
info: | |
version: '3.0' | |
title: Float API | |
description: This API allows 3rd party integration of your Float data. | |
security: | |
- bearerAuth: [] | |
paths: | |
/accounts: |