mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-06-23 08:19:32 +08:00
Fix: text -> self.text in clone method.
This commit is contained in:
parent
222718035f
commit
6995bb435c
@ -66,7 +66,7 @@ class Cursor:
|
|||||||
|
|
||||||
def clone(self):
|
def clone(self):
|
||||||
# python's immutable strings should mean the actual string data for text is not copied
|
# python's immutable strings should mean the actual string data for text is not copied
|
||||||
clone = Cursor(text)
|
clone = Cursor(self.text, skip_space=self.skip_space, consume=self.consume, space=self.space)
|
||||||
# pos is the main purpose of the clone
|
# pos is the main purpose of the clone
|
||||||
clone.pos = self.pos
|
clone.pos = self.pos
|
||||||
# this other stuff, we're just cloning for completeness
|
# this other stuff, we're just cloning for completeness
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user