mcp-sharepoint-us 2.0.10__tar.gz → 2.0.11__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mcp-sharepoint-us might be problematic. Click here for more details.
- {mcp_sharepoint_us-2.0.10 → mcp_sharepoint_us-2.0.11}/PKG-INFO +1 -1
- {mcp_sharepoint_us-2.0.10 → mcp_sharepoint_us-2.0.11}/pyproject.toml +1 -1
- {mcp_sharepoint_us-2.0.10 → mcp_sharepoint_us-2.0.11}/src/mcp_sharepoint/auth.py +3 -2
- {mcp_sharepoint_us-2.0.10 → mcp_sharepoint_us-2.0.11}/src/mcp_sharepoint_us.egg-info/PKG-INFO +1 -1
- {mcp_sharepoint_us-2.0.10 → mcp_sharepoint_us-2.0.11}/LICENSE +0 -0
- {mcp_sharepoint_us-2.0.10 → mcp_sharepoint_us-2.0.11}/README.md +0 -0
- {mcp_sharepoint_us-2.0.10 → mcp_sharepoint_us-2.0.11}/setup.cfg +0 -0
- {mcp_sharepoint_us-2.0.10 → mcp_sharepoint_us-2.0.11}/src/mcp_sharepoint/__init__.py +0 -0
- {mcp_sharepoint_us-2.0.10 → mcp_sharepoint_us-2.0.11}/src/mcp_sharepoint/__main__.py +0 -0
- {mcp_sharepoint_us-2.0.10 → mcp_sharepoint_us-2.0.11}/src/mcp_sharepoint_us.egg-info/SOURCES.txt +0 -0
- {mcp_sharepoint_us-2.0.10 → mcp_sharepoint_us-2.0.11}/src/mcp_sharepoint_us.egg-info/dependency_links.txt +0 -0
- {mcp_sharepoint_us-2.0.10 → mcp_sharepoint_us-2.0.11}/src/mcp_sharepoint_us.egg-info/entry_points.txt +0 -0
- {mcp_sharepoint_us-2.0.10 → mcp_sharepoint_us-2.0.11}/src/mcp_sharepoint_us.egg-info/requires.txt +0 -0
- {mcp_sharepoint_us-2.0.10 → mcp_sharepoint_us-2.0.11}/src/mcp_sharepoint_us.egg-info/top_level.txt +0 -0
|
@@ -30,8 +30,9 @@ def _patch_datetime_bug():
|
|
|
30
30
|
# Store the original __init__
|
|
31
31
|
original_init = authentication_context.AuthenticationContext.__init__
|
|
32
32
|
|
|
33
|
-
def patched_init(self,
|
|
34
|
-
|
|
33
|
+
def patched_init(self, *args, **kwargs):
|
|
34
|
+
# Call original init with all arguments
|
|
35
|
+
original_init(self, *args, **kwargs)
|
|
35
36
|
# Make token_expires timezone-aware to prevent comparison errors
|
|
36
37
|
if hasattr(self, '_token_expires') and self._token_expires is not None:
|
|
37
38
|
if self._token_expires.tzinfo is None:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mcp_sharepoint_us-2.0.10 → mcp_sharepoint_us-2.0.11}/src/mcp_sharepoint_us.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mcp_sharepoint_us-2.0.10 → mcp_sharepoint_us-2.0.11}/src/mcp_sharepoint_us.egg-info/requires.txt
RENAMED
|
File without changes
|
{mcp_sharepoint_us-2.0.10 → mcp_sharepoint_us-2.0.11}/src/mcp_sharepoint_us.egg-info/top_level.txt
RENAMED
|
File without changes
|