bitranox/fake_winreg

View on GitHub
fake_winreg/types_custom.py

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
from typing import List, Union

# DataTypesRegData{{{

# the possible types of data that we can receive or write to registry values
RegData = Union[None, bytes, int, str, List[str]]

# DataTypesRegData}}}