We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbcc717 commit f61ac3dCopy full SHA for f61ac3d
interpreter/__init__.py
@@ -12,20 +12,20 @@
12
13
Configuration
14
------------
15
->>> from interpreter import Interpreter, Config
+>>> from interpreter import Interpreter, Profile
16
17
Use defaults:
18
19
>>> interpreter = Interpreter()
20
21
Load from custom profile:
22
23
->>> config = Config.from_file("~/custom_profile.py")
24
->>> interpreter = Interpreter(config)
+>>> profile = Profile.from_file("~/custom_profile.py")
+>>> interpreter = Interpreter(profile)
25
26
Save current settings:
27
28
->>> interpreter.save_config("~/my_settings.py")
+>>> interpreter.save_profile("~/my_settings.py")
29
"""
30
31
# Use lazy imports to avoid loading heavy modules immediately
0 commit comments