aiteamutils 0.2.14__tar.gz → 0.2.15__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aiteamutils
3
- Version: 0.2.14
3
+ Version: 0.2.15
4
4
  Summary: AI Team Utilities
5
5
  Project-URL: Homepage, https://github.com/yourusername/aiteamutils
6
6
  Project-URL: Issues, https://github.com/yourusername/aiteamutils/issues
@@ -17,7 +17,7 @@ from .enums import ActivityType
17
17
  T = TypeVar("T", bound=BaseColumn)
18
18
 
19
19
  # 전역 데이터베이스 서비스 인스턴스
20
- _database_service: 'DatabaseService' | None = None
20
+ _database_service: Union['DatabaseService', None] = None
21
21
 
22
22
  def get_database_service() -> 'DatabaseService':
23
23
  """DatabaseService 인스턴스를 반환하는 함수
@@ -1,4 +1,4 @@
1
- from typing import Type, Dict, Tuple, Any, Callable
1
+ from typing import Type, Dict, Tuple, Any, Callable, Union
2
2
  from fastapi import Depends, status
3
3
  from fastapi.security import OAuth2PasswordBearer
4
4
  from jose import JWTError, jwt
@@ -12,7 +12,7 @@ class Settings:
12
12
  self.JWT_SECRET = jwt_secret
13
13
  self.JWT_ALGORITHM = jwt_algorithm
14
14
 
15
- _settings: Settings | None = None
15
+ _settings: Union[Settings, None] = None
16
16
 
17
17
  def init_settings(
18
18
  jwt_secret: str,
@@ -0,0 +1,2 @@
1
+ """버전 정보"""
2
+ __version__ = "0.2.15"
@@ -1,2 +0,0 @@
1
- """버전 정보"""
2
- __version__ = "0.2.14"
File without changes
File without changes
File without changes