Skip to content

Commit

Permalink
handled missing-function-docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
ojadeyemi committed May 3, 2024
1 parent 41bf798 commit 6c304d0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions data_pipeline/database_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@


def update_usports_bball_db(mysql_password: str):
"""
Updates the usports_bball database with team and player statistics.
"""
# Configure logging
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
team_dtypes = {'team_name':types.NVARCHAR(length=255), 'conference':types.NVARCHAR(length=50),
Expand Down
1 change: 1 addition & 0 deletions usport_flask_app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@


def create_app(config_name=DevelopmentConfig):
"""Create flask app instance"""
app = Flask(__name__)

app.config.from_object(config_name)
Expand Down

0 comments on commit 6c304d0

Please sign in to comment.