mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-01-24 21:30:15 +08:00
Fix bad merge of terminal_service
This commit is contained in:
parent
63a00aedb5
commit
fe64070b41
@ -26,16 +26,10 @@ class TerminalService:
|
|||||||
def update_size(self):
|
def update_size(self):
|
||||||
columns, lines = self.get_terminal_size()
|
columns, lines = self.get_terminal_size()
|
||||||
changed = False
|
changed = False
|
||||||
<<<<<<< HEAD:comfy/api_server/services/terminal_service.py
|
|
||||||
if sz.columns != self.cols:
|
|
||||||
self.cols = sz.columns
|
|
||||||
changed = True
|
|
||||||
=======
|
|
||||||
|
|
||||||
if columns != self.cols:
|
if columns != self.cols:
|
||||||
self.cols = columns
|
self.cols = columns
|
||||||
changed = True
|
changed = True
|
||||||
>>>>>>> 6e8cdcd3cb542ba9eb5a5e5a420eff06f59dd268:api_server/services/terminal_service.py
|
|
||||||
|
|
||||||
if lines != self.rows:
|
if lines != self.rows:
|
||||||
self.rows = lines
|
self.rows = lines
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user