]> Cypherpunks.ru repositories - pygost.git/blobdiff - pygost/gost34112012256.py
Unify docstring's leading space presence
[pygost.git] / pygost / gost34112012256.py
index 1f3c62cfd10b082668d6fce2c53506461e1e80b6..82c947e0037575b0601cdcbfa8f8760b52d9a79b 100644 (file)
@@ -1,4 +1,4 @@
-""" GOST R 34.11-2012 (Streebog) 256-bit hash function
+"""GOST R 34.11-2012 (Streebog) 256-bit hash function
 
 This is implementation of :rfc:`6986`. Most function and variable names are
 taken according to specification's terminology.
@@ -8,9 +8,9 @@ from pygost.gost34112012 import GOST34112012
 
 
 class GOST34112012256(GOST34112012):
-    def __init__(self, data=b''):
+    def __init__(self, data=b""):
         super(GOST34112012256, self).__init__(data, digest_size=32)
 
 
-def new(data=b''):
+def new(data=b""):
     return GOST34112012256(data)