Get the hash of MbppPlus. Returns: str: The hash of MbppPlus
(mini=False, noextreme=False, version="default")
| 193 | |
| 194 | |
| 195 | def get_mbpp_plus_hash(mini=False, noextreme=False, version="default") -> str: |
| 196 | """Get the hash of MbppPlus. |
| 197 | Returns: |
| 198 | str: The hash of MbppPlus |
| 199 | """ |
| 200 | plus_path = _ready_mbpp_plus_path(mini=mini, noextreme=noextreme, version=version) |
| 201 | with open(plus_path, "rb") as f: |
| 202 | plus = f.read() |
| 203 | return hashlib.md5(plus).hexdigest() |
no test coverage detected