Source code for bgdev.tools.renamer

"""Convenient wrapper to the core and ui modules.

:author: Benoit GIELLY <benoit.gielly@gmail.com>
"""


[docs]def show(*args, **kwargs): """Wrap the show function of the core module.""" from . import core return core.show(*args, **kwargs)