mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-12 02:45:18 +00:00
args bug
This commit is contained in:
parent
67c61e0ac8
commit
4c36fb4df2
1 changed files with 1 additions and 1 deletions
|
|
@ -54,7 +54,7 @@ class PRReviewer:
|
||||||
|
|
||||||
def parse_args(self, args):
|
def parse_args(self, args):
|
||||||
is_incremental = False
|
is_incremental = False
|
||||||
if len(args) >= 1:
|
if args and len(args) >= 1:
|
||||||
arg = args[0]
|
arg = args[0]
|
||||||
if arg == "-i":
|
if arg == "-i":
|
||||||
is_incremental = True
|
is_incremental = True
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue