[pre-commit.ci] pre-commit autoupdate -- ruff 2025 stable format (#12521)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.8.6 → v0.9.1](https://github.com/astral-sh/ruff-pre-commit/compare/v0.8.6...v0.9.1) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update maths/dual_number_automatic_differentiation.py * Update maths/dual_number_automatic_differentiation.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update dual_number_automatic_differentiation.py * Update dual_number_automatic_differentiation.py * No <fin-streamer> tag with the specified data-test attribute found. --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Christian Clauss <cclauss@me.com>
This commit is contained in:
committed by
GitHub
parent
cfcc84edf7
commit
4fe50bc1fc
@@ -105,13 +105,13 @@ def base64_decode(encoded_data: str) -> bytes:
|
||||
|
||||
# Check if the encoded string contains non base64 characters
|
||||
if padding:
|
||||
assert all(
|
||||
char in B64_CHARSET for char in encoded_data[:-padding]
|
||||
), "Invalid base64 character(s) found."
|
||||
assert all(char in B64_CHARSET for char in encoded_data[:-padding]), (
|
||||
"Invalid base64 character(s) found."
|
||||
)
|
||||
else:
|
||||
assert all(
|
||||
char in B64_CHARSET for char in encoded_data
|
||||
), "Invalid base64 character(s) found."
|
||||
assert all(char in B64_CHARSET for char in encoded_data), (
|
||||
"Invalid base64 character(s) found."
|
||||
)
|
||||
|
||||
# Check the padding
|
||||
assert len(encoded_data) % 4 == 0 and padding < 3, "Incorrect padding"
|
||||
|
||||
@@ -225,7 +225,7 @@ def brute_force(input_string: str, alphabet: str | None = None) -> dict[int, str
|
||||
|
||||
if __name__ == "__main__":
|
||||
while True:
|
||||
print(f'\n{"-" * 10}\n Menu\n{"-" * 10}')
|
||||
print(f"\n{'-' * 10}\n Menu\n{'-' * 10}")
|
||||
print(*["1.Encrypt", "2.Decrypt", "3.BruteForce", "4.Quit"], sep="\n")
|
||||
|
||||
# get user input
|
||||
|
||||
Reference in New Issue
Block a user