rest of files, not sorted
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
import pickle
|
||||
from typing import ByteString, Any
|
||||
from typing import Any, ByteString
|
||||
|
||||
def make_pickle(data:Any):
|
||||
|
||||
def make_pickle(data: Any):
|
||||
return pickle.dumps(data)
|
||||
|
||||
|
||||
def load_pickle(data:ByteString):
|
||||
def load_pickle(data: ByteString):
|
||||
return pickle.loads(data)
|
||||
|
||||
Reference in New Issue
Block a user