File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -86,12 +86,12 @@ def init(self) -> None:
86
86
raise SphinxError (__ ('You must set applehelp_bundle_id before '
87
87
'building Apple Help output' ))
88
88
89
- self .bundle_path = path . join ( self .outdir , # type: ignore
90
- self .config . applehelp_bundle_name + '.help' )
91
- self . outdir = path . join ( self . bundle_path ,
92
- 'Contents ' ,
93
- 'Resources ' ,
94
- self . config . applehelp_locale + '.lproj' )
89
+ self .bundle_path = self .outdir / ( self . config . applehelp_bundle_name + '.help' )
90
+ self .outdir = self . bundle_path . joinpath (
91
+ 'Contents' ,
92
+ 'Resources ' ,
93
+ self . config . applehelp_locale + '.lproj ' ,
94
+ )
95
95
96
96
def handle_finish (self ) -> None :
97
97
super ().handle_finish ()
Original file line number Diff line number Diff line change @@ -42,4 +42,4 @@ description =
42
42
extras =
43
43
lint
44
44
commands =
45
- mypy sphinxcontrib/
45
+ mypy sphinxcontrib/ --explicit-package-bases
You can’t perform that action at this time.
0 commit comments