Skip to content

Commit e42e157

Browse files
committed
Update black to 20.8b1
1 parent 0e3d768 commit e42e157

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/psf/black
3-
rev: stable
3+
rev: 20.8b1
44
hooks:
55
- id: black
66
language_version: python3.8

update.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ def unpack_tzdb_tarballs(download_locations: typing.List[pathlib.Path]) -> pathl
6666
for tarball in download_locations:
6767
logging.info("Unpacking %s to %s", tarball, target_dir)
6868
subprocess.run(
69-
["tar", "-xf", os.fspath(tarball.absolute())], cwd=target_dir, check=True,
69+
["tar", "-xf", os.fspath(tarball.absolute())],
70+
cwd=target_dir,
71+
check=True,
7072
)
7173

7274
return target_dir

0 commit comments

Comments
 (0)