Skip to content

Commit

Permalink
fix variables
Browse files Browse the repository at this point in the history
  • Loading branch information
RexWzh committed Mar 10, 2024
1 parent f3b6646 commit 2cf74ba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion askchat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = """Rex Wang"""
__email__ = '[email protected]'
__version__ = '1.0.1'
__version__ = '1.0.2'

import asyncio

Expand Down
1 change: 1 addition & 0 deletions askchat/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ def setup():
with open(CONFIG_FILE, 'w') as cf:
cf.write("# Initial configuration\n")
load_dotenv(CONFIG_FILE, override=True)
chattool.load_envs()

# load environment variables from the configuration file
setup()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from setuptools import setup, find_packages

VERSION = '1.0.1'
VERSION = '1.0.2'

with open('README.md') as readme_file:
readme = readme_file.read()
Expand Down

0 comments on commit 2cf74ba

Please sign in to comment.