From ff9741d708aeb85c069a6fc6b44e3e721619b591 Mon Sep 17 00:00:00 2001 From: Chris Steege Date: Tue, 20 Jun 2023 18:34:57 -0500 Subject: [PATCH] Remove unused TypeVar import from model.py: Co-authored-by: MindFlow --- mindflow/core/types/model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mindflow/core/types/model.py b/mindflow/core/types/model.py index 07cc4aa..fcafc39 100644 --- a/mindflow/core/types/model.py +++ b/mindflow/core/types/model.py @@ -1,6 +1,6 @@ from abc import ABC, abstractmethod import time -from typing import Optional, TypeVar, Union +from typing import Optional, Union import openai import anthropic