(fix) linting fix for wandb logger

This commit is contained in:
ishaan-jaff 2023-10-17 18:06:14 -07:00
parent 46cd3cb7a4
commit da3625e2f3

View file

@ -20,7 +20,7 @@ try:
V = TypeVar("V")
class OpenAIResponse(Protocol[K, V]):
class OpenAIResponse(Protocol[K, V]): # type: ignore
# contains a (known) object attribute
object: Literal["chat.completion", "edit", "text_completion"]