Skip to content

Commit ed7a9e8

Browse files
committed
added a beauty a little
1 parent b04229d commit ed7a9e8

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

icecream/builtins.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,14 @@
1616
builtins = __import__('builtins')
1717

1818

19-
def install(ic: str='ic', configured_ic: Optional[icecream.IceCreamDebugger] = None) -> None:
19+
def install(
20+
ic: str = 'ic',
21+
configured_ic: Optional[icecream.IceCreamDebugger] = None
22+
) -> None:
2023
if configured_ic is None:
2124
configured_ic = icecream.ic
2225
setattr(builtins, ic, configured_ic)
2326

2427

25-
def uninstall(ic: str='ic') -> None:
28+
def uninstall(ic: str = 'ic') -> None:
2629
delattr(builtins, ic)

0 commit comments

Comments
 (0)