Skip to content

Commit

Permalink
Merge pull request #664 from sigma67/pyupgrade
Browse files Browse the repository at this point in the history
pyupgrade --py38-plus
  • Loading branch information
derks authored Feb 20, 2024
2 parents 12fbe1d + ef3b0a0 commit 497701b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/utils/test_fs.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,4 @@ def test_backup_dir_trailing_slash(tmp):

def test_backup_timestamp(tmp):
bkfile = fs.backup(tmp.file, timestamp=True)
assert re.match('(.*).bak-[\d]+-[\d]+-[\d]+(.*)', bkfile) # noqa: W605
assert re.match(r'(.*).bak-[\d]+-[\d]+-[\d]+(.*)', bkfile) # noqa: W605

0 comments on commit 497701b

Please sign in to comment.