Return list of all sources in the current project.
(self)
| 599 | # ------------------------------------------------------------------ |
| 600 | |
| 601 | def source_list(self) -> list: |
| 602 | """Return list of all sources in the current project.""" |
| 603 | result = self.command("project.source.list") |
| 604 | return result.get("sources", []) |
| 605 | |
| 606 | def source_add(self) -> int: |
| 607 | """Add a new source (Commercial only). Returns the new sourceId.""" |