asm
This commit is contained in:
20
asm/venv/lib/python3.11/site-packages/icecream/__init__.py
Executable file
20
asm/venv/lib/python3.11/site-packages/icecream/__init__.py
Executable file
@@ -0,0 +1,20 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
#
|
||||
# IceCream - Never use print() to debug again
|
||||
#
|
||||
# Ansgar Grunseid
|
||||
# grunseid.com
|
||||
# grunseid@gmail.com
|
||||
#
|
||||
# License: MIT
|
||||
#
|
||||
|
||||
from os.path import dirname, join as pjoin
|
||||
|
||||
from .icecream import * # noqa
|
||||
from .builtins import install, uninstall
|
||||
|
||||
# Import all variables in __version__.py without explicit imports.
|
||||
from . import __version__
|
||||
globals().update(dict((k, v) for k, v in __version__.__dict__.items()))
|
||||
Reference in New Issue
Block a user