Return the binary path to the commandline tool used by a specific subclass. This is a class method so that the tool can be looked for before making a particular MovieWriter subclass available.
(cls)
| 360 | |
| 361 | @classmethod |
| 362 | def bin_path(cls): |
| 363 | """ |
| 364 | Return the binary path to the commandline tool used by a specific |
| 365 | subclass. This is a class method so that the tool can be looked for |
| 366 | before making a particular MovieWriter subclass available. |
| 367 | """ |
| 368 | return str(mpl.rcParams[cls._exec_key]) |
| 369 | |
| 370 | @classmethod |
| 371 | def isAvailable(cls): |
no outgoing calls
no test coverage detected