File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -1940,7 +1940,7 @@ def main_curses(
1940
1940
args : List [str ],
1941
1941
config : Config ,
1942
1942
interactive : bool = True ,
1943
- locals_ : Optional [MutableMapping [str , str ]] = None ,
1943
+ locals_ : Optional [Dict [str , Any ]] = None ,
1944
1944
banner : Optional [str ] = None ,
1945
1945
) -> Tuple [Tuple [Any , ...], str ]:
1946
1946
"""main function for the curses convenience wrapper
Original file line number Diff line number Diff line change 48
48
Optional ,
49
49
Type ,
50
50
Union ,
51
- MutableMapping ,
52
51
Callable ,
53
52
Dict ,
54
53
TYPE_CHECKING ,
@@ -109,7 +108,7 @@ class Interpreter(code.InteractiveInterpreter):
109
108
110
109
def __init__ (
111
110
self ,
112
- locals : Optional [MutableMapping [str , Any ]] = None ,
111
+ locals : Optional [Dict [str , Any ]] = None ,
113
112
) -> None :
114
113
"""Constructor.
115
114
You can’t perform that action at this time.
0 commit comments