Currently, our run_apply_migrations() runs like so:
def run_apply_migrations(schemas: list[str], dry_run: bool = False):
migration_failures: list[str] = []
a_lot_of_argument_validation()
# the core loopCurrently, our run_apply_migrations() runs like so:
def run_apply_migrations(schemas: list[str], dry_run: bool = False):
migration_failures: list[str] = []
a_lot_of_argument_validation()
# the core loopI hereby claim:
To claim this, I am signing this object:
| import React from "react"; | |
| import Link from "next/link"; | |
| import PropTypes from "prop-types"; | |
| import formatMoney from "../lib/formatMoney"; | |
| import Title from "../components/styles/Title"; | |
| import ItemStyles from "../components/styles/ItemStyles"; | |
| import PriceTag from "../components/styles/PriceTag"; | |
| import DeleteItem from "../components/DeleteItem"; | |
| import AddToCart from "../components/AddToCart"; |
| class ErrorOnDuplicateSet(object): | |
| """ | |
| This class behaves just like a set type collection, but will error if | |
| a duplicate is added to the collection. | |
| """ | |
| __emulates__ = set | |
| def __init__(self): | |
| self.data = set() |
| class ErrorOnDuplicateSet(object): | |
| """ | |
| This class behaves just like a set type collection, but will error if | |
| a duplicate is added to the collection. | |
| """ | |
| __emulates__ = set | |
| def __init__(self): | |
| self.data = set() |
| def spin_words(sentence): | |
| flipped_list = [] | |
| str_list = sentence.split(" ") | |
| for word in str_list: | |
| if len(word) < 5: | |
| flipped_list.append(word) | |
| else: | |
| flipped_word = "" | |
| for i in range(len(word), 0, -1): | |
| flipped_word = flipped_word + word[i-1] |
| # These are my models (some attributes removed for clarity) | |
| class User(db.Model): | |
| id = db.Column(db.Integer, primary_key=True) | |
| # user many-to-many size associations (using link tables) | |
| sz_shirt_dress_sleeve = db.relationship( | |
| 'SizeKeyShirtDressSleeve', secondary=LinkUserSizeShirtDressSleeve, backref=db.backref('users', lazy='dynamic')) | |
| var fs = require('fs'); | |
| process.stdin.resume(); | |
| process.stdin.setEncoding('utf8'); | |
| var stream = fs.createWriteStream(process.argv[2]); | |
| process.stdin.on('data', function(text) { | |
| if (text === 'quit\n') { | |
| stream.end(); | |
| process.exit(); |