mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 12:24:59 +00:00
style: format Python code with black linter
This commit is contained in:
parent
e9627cb3c6
commit
b46de7127d
1 changed files with 4 additions and 2 deletions
|
@ -113,8 +113,10 @@ def comment_and_close_duplicate(issue, oldest_issue):
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
parser = argparse.ArgumentParser(description='Handle duplicate GitHub issues')
|
parser = argparse.ArgumentParser(description="Handle duplicate GitHub issues")
|
||||||
parser.add_argument('--yes', action='store_true', help='Automatically close duplicates without prompting')
|
parser.add_argument(
|
||||||
|
"--yes", action="store_true", help="Automatically close duplicates without prompting"
|
||||||
|
)
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
if not TOKEN:
|
if not TOKEN:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue