Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,9 @@ ignore=builtin_games
# R0912: too-many-branches - Too many branches
# C0114: missing-module-docstring - Missing module docstring
# R0915: too-many-statements - Too many statements
disable=W1203,W0718,C0415,R0913,R1705,R0917,R0912,C0114,R0915
# C0302: too-many-lines - Too many lines in module
# R0914: too-many-locals - Too many local variables
# R1723: no-else-break - Unnecessary "else" after "break", remove the "else" and de-indent the code inside it
# W0702: bare-except - No exception type(s) specified
# R1724: Unnecessary "else" after "continue", remove the "else" and de-indent the code inside it (no-else-continue)
disable=W1203,W0718,C0415,R0913,R1705,R0917,R0912,C0114,R0915,C0302,R0914,R1723,W0702,R1724
5 changes: 4 additions & 1 deletion lemonade_arcade/lemonade_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,10 @@ async def start_lemonade_server(self):

# Use the unified function to start the server
process = await self.execute_lemonade_server_command(
["serve"], use_popen=True, stdout_file=stdout_file, stderr_file=stderr_file
["serve", "--ctx-size", "16384"],
use_popen=True,
stdout_file=stdout_file,
stderr_file=stderr_file,
)

if process is None:
Expand Down
Loading
Loading