This commit is contained in:
Paul Gauthier 2024-01-23 08:55:08 -08:00
parent e6a4edf2e2
commit 85383079f6

View file

@ -1,15 +1,12 @@
#!/usr/bin/env python
import io
import sys
import time
from collections import defaultdict
from pathlib import Path
from rich.console import Console
from rich.markdown import Markdown
from aider.dump import dump
from aider.dump import dump # noqa: F401
_text = """
# Header
@ -38,9 +35,9 @@ def greeting():
The end.
"""
""" # noqa: E501
_text = 5 * _text # noqa: 501
_text = 5 * _text
# print(text)