Skip to content

Commit

Permalink
Update dependency starlette to v0.45.2 (#1532)
Browse files Browse the repository at this point in the history
* temp shitcode

* Update dependency starlette to v0.45.2

---------

Co-authored-by: 好耶! <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] and cloudw233 authored Jan 13, 2025
1 parent d1b21bb commit 46e8bee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions modules/mcserver/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async def query_java_server(
query_msg = []

try:
server = JavaServer.lookup(address)
server = JavaServer.lookup(address.replace(':25565',''))
status = await server.async_status()
Logger.debug(str(status))
query_msg.append("[JE]")
Expand Down Expand Up @@ -63,7 +63,7 @@ async def query_bedrock_server(msg, address, raw=False):
query_msg = []

try:
server = BedrockServer.lookup(address)
server = BedrockServer.lookup(address.replace(':19132',''))
status = await server.async_status()
Logger.debug(str(status))
query_msg.append("[BE]")
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ slowapi==0.1.9 ; python_full_version >= "3.12.0" and python_version < "4.0"
sniffio==1.3.1 ; python_full_version >= "3.12.0" and python_version < "4.0"
soupsieve==2.6 ; python_full_version >= "3.12.0" and python_full_version < "4.0.0"
sqlalchemy==2.0.37 ; python_full_version >= "3.12.0" and python_version < "4.0"
starlette==0.41.3 ; python_full_version >= "3.12.0" and python_full_version < "4.0.0"
starlette==0.45.2 ; python_full_version >= "3.12.0" and python_full_version < "4.0.0"
tabulate==0.9.0 ; python_full_version >= "3.12.0" and python_full_version < "4.0.0"
tenacity==9.0.0 ; python_full_version >= "3.12.0" and python_version < "4.0"
tiktoken==0.8.0 ; python_full_version >= "3.12.0" and python_full_version < "4.0.0"
Expand Down

0 comments on commit 46e8bee

Please sign in to comment.