mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 18:25:00 +00:00
handle no args properly
This commit is contained in:
parent
ed6ceae544
commit
5e593eb631
2 changed files with 2 additions and 2 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue