mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-02-09 04:52:32 +08:00
Fix pylint issues
This commit is contained in:
parent
5ff6b64459
commit
a94cd0b626
@ -31,7 +31,7 @@ class SPieceTokenizer:
|
|||||||
return self._vocab
|
return self._vocab
|
||||||
|
|
||||||
def __call__(self, string):
|
def __call__(self, string):
|
||||||
out = self.tokenizer.encode(string)
|
out = self.tokenizer.encode(string) # pylint: disable=no-member
|
||||||
return {"input_ids": out}
|
return {"input_ids": out}
|
||||||
|
|
||||||
def serialize_model(self):
|
def serialize_model(self):
|
||||||
|
|||||||
@ -60,3 +60,4 @@ watchdog
|
|||||||
PySoundFile
|
PySoundFile
|
||||||
networkx>=2.6.3
|
networkx>=2.6.3
|
||||||
joblib
|
joblib
|
||||||
|
jaxtyping
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user