feat: async db client (#2076)

This commit is contained in:
Andy Li
2025-05-12 17:15:14 -07:00
committed by GitHub
parent d67c425532
commit 8e2417aa2f
29 changed files with 723 additions and 466 deletions

View File

@@ -812,7 +812,7 @@ def printd(*args, **kwargs):
print(*args, **kwargs)
def united_diff(str1, str2):
def united_diff(str1: str, str2: str) -> str:
lines1 = str1.splitlines(True)
lines2 = str2.splitlines(True)
diff = difflib.unified_diff(lines1, lines2)