Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jul 26, 2024
1 parent c86422d commit a6ac1eb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions api/datalake/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# -*- coding: utf-8 -*-
from datalake.utils import register_formatter
from datalake.formatters import *
2 changes: 1 addition & 1 deletion api/datalake/formatters.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# =============================================
# Formatters that are responsible for converting
# Formatters that are responsible for converting
# raw JSON records to Datalake table rows.
# =============================================
from typing import List, Tuple
Expand Down
2 changes: 1 addition & 1 deletion api/datalake/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# - Pydantic Models Representing Datalake Tables.
# These models describe the format that every
# row sent to the Datalake must follow.
# - Also, configuration of the table name,
# - Also, configuration of the table name,
# dataset, etc must be provided.
# =============================================
from typing import Optional
Expand Down
2 changes: 1 addition & 1 deletion api/datalake/uploader.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
import os
import uuid
import shutil
import shutil
import base64
from typing import Optional

Expand Down
1 change: 1 addition & 0 deletions api/datalake/utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
import pandas as pd
from typing import Callable
from loguru import logger
Expand Down

0 comments on commit a6ac1eb

Please sign in to comment.