mirror of https://github.com/jtesta/ssh-audit.git
7 lines
204 B
Python
7 lines
204 B
Python
|
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
from typing import Optional
|
||
|
|
||
|
def init(autoreset: bool = False, convert: Optional[bool] = None, strip: Optional[bool] = None, wrap: bool = True) -> None: ...
|
||
|
|