mirror of
https://github.com/jtesta/ssh-audit.git
synced 2024-11-16 13:35:39 +01:00
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: ...
|
|
|