Skip to content

Commit

Permalink
Fix typing error
Browse files Browse the repository at this point in the history
Fixes:	7a08b60 ("simple_project: Add new ReuseOtherProjectBuildDir")
  • Loading branch information
jrtc27 committed May 21, 2024
1 parent db30c92 commit 78f8023
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pycheribuild/projects/simple_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def __init__(
self.dir_for_target = dir_for_target
self.do_update = do_update

def get_real_build_dir(self, caller: "type[SimpleProject]", base_project_build_dir: Optional[Path]) -> Path:
def get_real_build_dir(self, caller: "SimpleProject", base_project_build_dir: Optional[Path]) -> Path:
if base_project_build_dir is not None:
return base_project_build_dir
return self.build_project.get_build_dir(caller, cross_target=self.dir_for_target) / self.subdirectory
Expand Down

0 comments on commit 78f8023

Please sign in to comment.