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 2441ace commit 9a5dc4aCopy full SHA for 9a5dc4a
main.py
@@ -2,6 +2,14 @@
2
import subprocess
3
4
def func_calls():
5
+ """Executes several method calls sequentially.
6
+
7
+ This method does not take any parameters and does not return any value.
8
+ Normally, this method is used to get format from 'formats'.get_format()
9
+ then prepare key using 'algorithms'.HMACAlgorithm.prepare_key()
10
+ followed by performing operation with 'cli'.VerifyOperation.perform_operation()
11
+ and finally it resolves redirects using 'sessions'.SessionRedirectMixin.resolve_redirects().
12
+ """
13
formats.get_format()
14
algorithms.HMACAlgorithm.prepare_key()
15
cli.VerifyOperation.perform_operation()
0 commit comments