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