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
| git clone <PRIVATE REPO> | |
| cd sdk | |
| git fetch --all | |
| git pull --all | |
| for branch in $(git branch --all | grep '^\s*remotes' | egrep --invert-match '(:?HEAD|master)$'); do | |
| git branch --track "${branch##*/}" "$branch" | |
| done | |
| git fetch --all | |
| git pull --all | |
| cd .. |
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
| import weakref | |
| from sqlalchemy import \ | |
| Column, Integer, String, MetaData, ForeignKey | |
| from sqlalchemy.ext.declarative import \ | |
| declarative_base, DeclarativeMeta, declared_attr | |
| from sqlalchemy.orm import \ | |
| relationship | |
| # noinspection PyProtectedMember | |
| from sqlalchemy.ext.declarative.api import \ | |
| _declarative_constructor |
OlderNewer