-
Notifications
You must be signed in to change notification settings - Fork 585
Fix Error: calling "initialize": invalid trailing data at the end of stream. #457
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from 6 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
d18bf91
Change fastmcp dependency version to 2.12.5
gajzzs b9c7365
Update fastmcp dependency version constraint
gajzzs aa81ee6
Fix issue https://github.com/CoplayDev/unity-mcp/issues/430
gajzzs 7fefa18
Merge branch 'CoplayDev:main' into main
gajzzs 3f88185
Merge branch 'CoplayDev:main' into main
gajzzs 0f89329
Changes https://github.com/CoplayDev/unity-mcp/pull/457\#issuecomment…
gajzzs 816c089
Merge branch 'CoplayDev:main' into main
gajzzs 2c09a78
docs(utils): enhance CRStripper docstrings and type hinting
gajzzs File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| """ | ||
| SUMMARY: Utils package initialization. | ||
| """ | ||
| from .cr_stripper import CRStripper | ||
|
|
||
| __all__ = ["CRStripper"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
|
|
||
| # This utility strips carriage return characters (\r) from bytes or strings | ||
| class CRStripper: | ||
| def __init__(self, stream): | ||
| self._stream = stream | ||
|
|
||
| def write(self, data): | ||
| if isinstance(data, bytes): | ||
| return self._stream.write(data.replace(b'\r', b'')) | ||
| if isinstance(data, str): | ||
| return self._stream.write(data.replace('\r', '')) | ||
| return self._stream.write(data) | ||
gajzzs marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| def flush(self): | ||
| return self._stream.flush() | ||
|
|
||
| def __getattr__(self, name): | ||
| return getattr(self._stream, name) | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.