File: profile_information.py

package info (click to toggle)
python-redis 6.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,432 kB
  • sloc: python: 60,318; sh: 179; makefile: 128
file content (14 lines) | stat: -rw-r--r-- 249 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from typing import Any


class ProfileInformation:
    """
    Wrapper around FT.PROFILE response
    """

    def __init__(self, info: Any) -> None:
        self._info: Any = info

    @property
    def info(self) -> Any:
        return self._info