Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
sarus_data_spec / sarus_data_spec / manager / ops / source / random_seed.py
Size: Mime:
import typing as t

from sarus_data_spec.manager.ops.base import ScalarImplementation


class RandomSeed(ScalarImplementation):
    async def value(self) -> t.Any:
        assert self.scalar.is_random_seed()
        return self.scalar.protobuf().spec.random_seed.value