aiteamutils 0.2.63__tar.gz → 0.2.64__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.63
3
+ Version: 0.2.64
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
@@ -25,9 +25,12 @@ class BaseRepository(Generic[ModelType]):
25
25
  detail="Model is not set",
26
26
  source_function=f"{self.__class__.__name__}.model"
27
27
  )
28
+ print(f"BaseRepository.__init__() called with session: {session} and model: {model}")
28
29
 
29
30
  self._session = session
30
31
  self.model = model
32
+
33
+ print(f"BaseRepository initialized with session: {session} and model: {model}")
31
34
 
32
35
  @property
33
36
  def session(self) -> AsyncSession:
@@ -0,0 +1,2 @@
1
+ """버전 정보"""
2
+ __version__ = "0.2.64"
@@ -1,2 +0,0 @@
1
- """버전 정보"""
2
- __version__ = "0.2.63"
File without changes
File without changes
File without changes
File without changes