Skip to content

Commit

Permalink
🏷️ Fix typing error
Browse files Browse the repository at this point in the history
  • Loading branch information
i-be-snek committed Nov 4, 2024
1 parent d1f4bc6 commit 26180a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Database/scr/normalize_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pathlib
import re
from datetime import datetime
from typing import Tuple, Union
from typing import Any, Tuple, Union

import pandas as pd
import pycountry
Expand Down Expand Up @@ -239,7 +239,7 @@ def __init__(self):
self.logger = Logging.get_logger("normalize-utils-json")

@staticmethod
def infer_date_from_dict(x: any) -> str:
def infer_date_from_dict(x: Any) -> str:
"""
This function normalizes date output in various formats by some LLMs.
Current usecases:
Expand Down

0 comments on commit 26180a5

Please sign in to comment.