Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jverre committed Sep 17, 2024
1 parent 20c9571 commit 2c2977d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdks/python/src/opik/config.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import configparser
import logging
import pathlib
from typing import Any, Dict, Final, List, Literal, Optional, Tuple, Type, Union, Type
from typing import Any, Dict, Final, List, Literal, Optional, Tuple, Type, Union

import pydantic_settings
from pydantic_settings import BaseSettings, InitSettingsSource
Expand Down Expand Up @@ -36,7 +36,7 @@ class IniConfigSettingsSource(InitSettingsSource, ConfigFileSourceMixin):

def __init__(
self,
settings_cls: Any,
settings_cls: Type[BaseSettings],
):
self.ini_data = self._read_files(CONFIG_FILE_PATH_DEFAULT)
super().__init__(settings_cls, self.ini_data)
Expand Down

0 comments on commit 2c2977d

Please sign in to comment.