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 b04229d commit ed7a9e8Copy full SHA for ed7a9e8
icecream/builtins.py
@@ -16,11 +16,14 @@
16
builtins = __import__('builtins')
17
18
19
-def install(ic: str='ic', configured_ic: Optional[icecream.IceCreamDebugger] = None) -> None:
+def install(
20
+ ic: str = 'ic',
21
+ configured_ic: Optional[icecream.IceCreamDebugger] = None
22
+) -> None:
23
if configured_ic is None:
24
configured_ic = icecream.ic
25
setattr(builtins, ic, configured_ic)
26
27
-def uninstall(ic: str='ic') -> None:
28
+def uninstall(ic: str = 'ic') -> None:
29
delattr(builtins, ic)
0 commit comments