(self)
| 606 | profile_dir = Instance('IPython.core.application.ProfileDir', allow_none=True) |
| 607 | @property |
| 608 | def profile(self): |
| 609 | if self.profile_dir is not None: |
| 610 | name = os.path.basename(self.profile_dir.location) |
| 611 | return name.replace('profile_','') |
| 612 | |
| 613 | |
| 614 | # Private interface |
nothing calls this directly
no outgoing calls
no test coverage detected