Pylance linting issue fixed
diff --git a/hamilton/driver.py b/hamilton/driver.py
index 973371c..c4c4392 100644
--- a/hamilton/driver.py
+++ b/hamilton/driver.py
@@ -11,7 +11,7 @@
import uuid
from datetime import datetime
from types import ModuleType
-from typing import Any, Callable, Collection, Dict, List, Optional, Set, Tuple, Union
+from typing import Any, Callable, Collection, Dict, List, Optional, Sequence, Set, Tuple, Union
import pandas as pd
@@ -504,7 +504,7 @@
def execute(
self,
- final_vars: List[Union[str, Callable, Variable]],
+ final_vars: Sequence[Union[str, Callable, Variable]],
overrides: Dict[str, Any] = None,
display_graph: bool = False,
inputs: Dict[str, Any] = None,