New gitter link added or replaced (#8551)

* New gitter link added

* ruff==0.0.258

* noqa: S310

* noqa: S310

* Update ruff.yml

* Add Ruff rule S311

* Ruff v0.0.259

* return ("{:08x}" * 5).format(*self.h)

* pickle.load(f)  # noqa: S301

---------

Co-authored-by: Christian Clauss <cclauss@me.com>
This commit is contained in:
Genesis
2023-03-26 20:49:18 +05:30
committed by GitHub
parent 3f9150c1b2
commit 7cdb011ba4
10 changed files with 13 additions and 12 deletions

View File

@ -124,7 +124,7 @@ class SHA1Hash:
self.h[3] + d & 0xFFFFFFFF,
self.h[4] + e & 0xFFFFFFFF,
)
return "%08x%08x%08x%08x%08x" % tuple(self.h)
return ("{:08x}" * 5).format(*self.h)
def test_sha1_hash():