Skip to content

Commit

Permalink
lint - kamangir/bolt#1234
Browse files Browse the repository at this point in the history
  • Loading branch information
kamangir committed Feb 18, 2024
1 parent 80bcb29 commit c11afc5
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions abcli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
"""awesome-bash-cli: 🚀 a language to speak AI.
"""

import os

NAME = "abcli"

VERSION = "7.2685.1"
VERSION = "7.2686.1"

DESCRIPTION = "🚀 a language to speak AI."


def fullname():
return f"abcli-{VERSION}-{os.getenv('abcli_git_branch','unknown')}"

def fullname() -> str:
"""return full name.
LOG_ON = 1
LOG_ALL = 2
log_level = LOG_ON

PLOT_ON = 1
PLOT_ALL = 2
plot_level = PLOT_ON
Returns:
str: full name.
"""
return f"abcli-{VERSION}-{os.getenv('abcli_git_branch','unknown')}"

0 comments on commit c11afc5

Please sign in to comment.