We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e24fb58 commit 88a8884Copy full SHA for 88a8884
main.py
@@ -2,6 +2,17 @@
2
import subprocess
3
4
def func_calls():
5
+ """Performs a series of function calls in the given order.
6
+
7
+ This function executes the following functions sequentially:
8
+ - `get_format` from the `formats` package,
9
+ - `prepare_key` from `HMACAlgorithm` in the `algorithms` package,
10
+ - `perform_operation` from `VerifyOperation` in the `cli` package,
11
+ - `resolve_redirects` from `SessionRedirectMixin` in the `sessions` package.
12
13
+ No arguments are required to call this function and it does not return any value.
14
+ """
15
16
formats.get_format()
17
algorithms.HMACAlgorithm.prepare_key()
18
cli.VerifyOperation.perform_operation()
0 commit comments