blob: 9a2f249bad2576934d32d3967b36b44e36717e90 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
from . import inject_pass_totp_prompter
import botocore.session
old_init = botocore.session.Session.__init__
def patched_session_init(self, *args, **kwargs):
old_init(self, *args, **kwargs)
inject_pass_totp_prompter(self)
botocore.session.Session.__init__ = patched_session_init
|