"""Represents current userbot version"""
__version__ = (1, 6, 0)
import os
import git
try:
branch = git.Repo(
path=os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
).active_branch.name
except Exception:
branch = "master"