refactoring

This commit is contained in:
Devaev Maxim
2020-09-10 09:57:12 +03:00
parent 9cb5582565
commit ec6d13dc34
3 changed files with 16 additions and 9 deletions

View File

@@ -28,6 +28,12 @@ from typing import List
from typing import Dict
from typing import Hashable
from typing import TypeVar
from typing import Any
# =====
def str_strip(arg: Any) -> str:
return str(arg).strip()
# =====