handle no args properly

This commit is contained in:
Paul Gauthier 2023-05-11 20:56:09 -07:00
parent ed6ceae544
commit 5e593eb631
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ from aider.coder import Coder
def main(args=None):
if not args:
if args is None:
args = sys.argv[1:]
load_dotenv()