ruff: Fix FURB177 Prefer `Path.cwd()` over `Path().resolve()`.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2024-06-30 14:32:54 -04:00 committed by Tim Abbott
parent 7b69c93c50
commit 8e9ead2575
1 changed files with 2 additions and 2 deletions

View File

@ -1,10 +1,10 @@
#!/usr/bin/env python3
import argparse
import os
import pathlib
import subprocess
import sys
from collections import defaultdict
from pathlib import Path
from typing import Dict, List
bot_commits = 0
@ -36,7 +36,7 @@ def retrieve_log(repo: str, revisions: str) -> List[str]:
def find_path(repository: str) -> str:
return str(pathlib.Path().resolve().parents[0] / repository)
return str(Path.cwd().parent / repository)
def process_repo(