Skip to content

Commit

Permalink
Format Python code with Black
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacCheng9 authored and github-actions[bot] committed Apr 3, 2024
1 parent dd4d984 commit 0dfce97
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/travel_buddy/helpers/helper_carpool.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Helper functions for the carpool system and related functionality.
"""


import sqlite3
from datetime import datetime, timedelta
from typing import List, Tuple
Expand Down
1 change: 1 addition & 0 deletions src/travel_buddy/helpers/helper_general.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Handles helper functions for general use cases, such as getting database path.
"""

import datetime
import json
import os
Expand Down
1 change: 1 addition & 0 deletions src/travel_buddy/helpers/helper_limiter.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Sets up rate limiting for the application.
"""

from flask_limiter import Limiter
from flask_limiter.util import get_remote_address

Expand Down
1 change: 1 addition & 0 deletions src/travel_buddy/views/trends.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Handles the view for long term trends and estimations for a user.
"""

import travel_buddy.helpers.helper_routes as helper_routes
import travel_buddy.helpers.helper_general as helper_general

Expand Down
1 change: 1 addition & 0 deletions tests/test_general.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Tests integrity of general helper functions.
"""

import datetime

import travel_buddy.helpers.helper_general as helper_general
Expand Down

0 comments on commit 0dfce97

Please sign in to comment.