See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| from flask import Flask | |
| from flask_sqlalchemy import SQLAlchemy | |
| def create_app(config: str=None): | |
| app = Flask(__name__, instance_relative_config=True) | |
| if config is None: | |
| app.config.from_pyfile('dev.py') | |
| else: | |
| logger.debug('Using %s as configuration', config) | |
| app.config.from_pyfile(config) |