def get_selected_paths()

in src/pathpicker/screen_control.py [0:0]


    def get_selected_paths(self) -> List[LineMatch]:
        return [
            line_obj
            for index, line_obj in enumerate(self.line_matches)
            if line_obj.get_selected()
        ]