File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 22
33## v1.9 (Upcoming)
44
5+ ### BL3 Mod Menu v1.7
6+ - Upgraded to support unrealsdk v2.0.0
7+ - Linting fixes.
8+
59### [ Console Mod Menu v1.6] ( https://github.com/bl-sdk/console_mod_menu/blob/master/Readme.md#v16 )
610> - Linting fixes.
711
Original file line number Diff line number Diff line change 4646class ModInfo :
4747 module : str
4848 location : Path
49- duplicates : list [ModInfo ] = field (default_factory = list )
49+ duplicates : list [ModInfo ] = field (default_factory = list [ "ModInfo" ] )
5050
5151
5252def init_debugpy () -> None :
Original file line number Diff line number Diff line change 77 "__version_info__" ,
88]
99
10- __version_info__ : tuple [int , int ] = (1 , 6 )
10+ __version_info__ : tuple [int , int ] = (1 , 7 )
1111__version__ : str = f"{ __version_info__ [0 ]} .{ __version_info__ [1 ]} "
1212__author__ : str = "bl-sdk"
1313
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ class vars will be passed as a fallback. These actions are:
8484
8585 _controller_default_idx : int | None = field (default = None , init = False , repr = False )
8686 _result_mapping : dict [str , DialogBoxChoice ] = field (
87- default_factory = dict ,
87+ default_factory = dict [ str , DialogBoxChoice ] ,
8888 init = False ,
8989 repr = False ,
9090 )
You can’t perform that action at this time.
0 commit comments