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(
19401940 args : List [str ],
19411941 config : Config ,
19421942 interactive : bool = True ,
1943- locals_ : Optional [MutableMapping [str , str ]] = None ,
1943+ locals_ : Optional [Dict [str , Any ]] = None ,
19441944 banner : Optional [str ] = None ,
19451945) -> Tuple [Tuple [Any , ...], str ]:
19461946 """main function for the curses convenience wrapper
Original file line number Diff line number Diff line change 4848 Optional ,
4949 Type ,
5050 Union ,
51- MutableMapping ,
5251 Callable ,
5352 Dict ,
5453 TYPE_CHECKING ,
@@ -109,7 +108,7 @@ class Interpreter(code.InteractiveInterpreter):
109108
110109 def __init__ (
111110 self ,
112- locals : Optional [MutableMapping [str , Any ]] = None ,
111+ locals : Optional [Dict [str , Any ]] = None ,
113112 ) -> None :
114113 """Constructor.
115114
You can’t perform that action at this time.
0 commit comments