Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
mauricesvp committed Jan 31, 2024
1 parent 8a7fa71 commit c287c13
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions backend/mousse/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
mauricesvp 2021
"""

import os

import mysql.connector
Expand Down Expand Up @@ -41,6 +42,7 @@ def get_db(self) -> CMySQLConnection:
host="mysql", password=PASSWORD, database=MYSQL_DB
)

@retry(5, debug=True)
def get_cursor(self) -> CMySQLCursor:
"""Return connection cursor."""
if not self.db:
Expand Down
1 change: 1 addition & 0 deletions backend/mousse/log.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
mauricesvp 2021
"""

import logging


Expand Down
1 change: 1 addition & 0 deletions backend/mousse/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
mauricesvp 2021
"""

# import csv
# import os
import re
Expand Down
1 change: 1 addition & 0 deletions backend/mousse/mkg.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
mauricesvp 2021
"""

from typing import Tuple

import requests
Expand Down
1 change: 1 addition & 0 deletions backend/mousse/saml.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- This is fine :')
"""

import os
import time
from typing import List
Expand Down
1 change: 1 addition & 0 deletions backend/mousse/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
mauricesvp 2021
"""

import functools
from time import sleep
from typing import Any, Callable
Expand Down

0 comments on commit c287c13

Please # to comment.