(self, profile_dir)
| 737 | self.ipython_dir = get_ipython_dir() |
| 738 | |
| 739 | def init_profile_dir(self, profile_dir): |
| 740 | if profile_dir is not None: |
| 741 | self.profile_dir = profile_dir |
| 742 | return |
| 743 | self.profile_dir =\ |
| 744 | ProfileDir.create_profile_dir_by_name(self.ipython_dir, 'default') |
| 745 | |
| 746 | def init_instance_attrs(self): |
| 747 | self.more = False |
no test coverage detected