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 sqlalchemy.orm.exc import NoResultFound | |
| from sqlalchemy.exc import IntegrityError | |
| from rates.extensions import db | |
| class LoadSingleton: | |
| @classmethod | |
| def load(cls): | |
| id_ = {"id": 1} | |
| try: |
OlderNewer