Skip to content

Commit

Permalink
deploy: 7a68fd2
Browse files Browse the repository at this point in the history
  • Loading branch information
anand-bala committed Oct 17, 2023
1 parent fc34a1f commit c3634c9
Show file tree
Hide file tree
Showing 13 changed files with 192 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dev/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: e9ac05a2cb33082e6f0ff9245e930fe7
config: e817831850fd2395100c07f5f3045575
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file modified dev/.doctrees/api/argus/_argus/index.doctree
Binary file not shown.
Binary file modified dev/.doctrees/api/argus/index.doctree
Binary file not shown.
Binary file modified dev/.doctrees/api/argus/test_utils/expr_gen/index.doctree
Binary file not shown.
Binary file modified dev/.doctrees/api/argus/test_utils/index.doctree
Binary file not shown.
Binary file modified dev/.doctrees/api/argus/test_utils/signals_gen/index.doctree
Binary file not shown.
Binary file modified dev/.doctrees/api/index.doctree
Binary file not shown.
Binary file modified dev/.doctrees/environment.pickle
Binary file not shown.
Binary file modified dev/.doctrees/getting_started.doctree
Binary file not shown.
Binary file modified dev/.doctrees/index.doctree
Binary file not shown.
95 changes: 95 additions & 0 deletions dev/_sources/api/argus/index.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,25 @@ Attributes
Bases: :py:obj:`Signal`\ [\ :py:obj:`bool`\ ]

Abstract base class for generic types.

A generic type is typically declared by inheriting from
this class parameterized with one or more type variables.
For example, a generic mapping type might be defined as::

class Mapping(Generic[KT, VT]):
def __getitem__(self, key: KT) -> VT:
...
# Etc.

This class can then be used as follows::

def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT:
try:
return mapping[key]
except KeyError:
return default

.. py:method:: constant(value: bool, *, interpolation_method: _InterpolationMethod = 'linear') -> typing_extensions.Self
:classmethod:

Expand Down Expand Up @@ -215,6 +234,25 @@ Attributes
Bases: :py:obj:`Signal`\ [\ :py:obj:`float`\ ]

Abstract base class for generic types.

A generic type is typically declared by inheriting from
this class parameterized with one or more type variables.
For example, a generic mapping type might be defined as::

class Mapping(Generic[KT, VT]):
def __getitem__(self, key: KT) -> VT:
...
# Etc.

This class can then be used as follows::

def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT:
try:
return mapping[key]
except KeyError:
return default

.. py:method:: constant(value: float, *, interpolation_method: _InterpolationMethod = 'linear') -> typing_extensions.Self
:classmethod:

Expand All @@ -235,6 +273,25 @@ Attributes
Bases: :py:obj:`Signal`\ [\ :py:obj:`int`\ ]

Abstract base class for generic types.

A generic type is typically declared by inheriting from
this class parameterized with one or more type variables.
For example, a generic mapping type might be defined as::

class Mapping(Generic[KT, VT]):
def __getitem__(self, key: KT) -> VT:
...
# Etc.

This class can then be used as follows::

def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT:
try:
return mapping[key]
except KeyError:
return default

.. py:method:: constant(value: int, *, interpolation_method: _InterpolationMethod = 'linear') -> typing_extensions.Self
:classmethod:

Expand Down Expand Up @@ -351,6 +408,25 @@ Attributes
Bases: :py:obj:`typing_extensions.Generic`\ [\ :py:obj:`_T`\ ]

Abstract base class for generic types.

A generic type is typically declared by inheriting from
this class parameterized with one or more type variables.
For example, a generic mapping type might be defined as::

class Mapping(Generic[KT, VT]):
def __getitem__(self, key: KT) -> VT:
...
# Etc.

This class can then be used as follows::

def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT:
try:
return mapping[key]
except KeyError:
return default

.. py:property:: start_time
:type: float | None

Expand Down Expand Up @@ -390,6 +466,25 @@ Attributes
Bases: :py:obj:`Signal`\ [\ :py:obj:`int`\ ]

Abstract base class for generic types.

A generic type is typically declared by inheriting from
this class parameterized with one or more type variables.
For example, a generic mapping type might be defined as::

class Mapping(Generic[KT, VT]):
def __getitem__(self, key: KT) -> VT:
...
# Etc.

This class can then be used as follows::

def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT:
try:
return mapping[key]
except KeyError:
return default

.. py:method:: constant(value: int, *, interpolation_method: _InterpolationMethod = 'linear') -> typing_extensions.Self
:classmethod:

Expand Down
100 changes: 95 additions & 5 deletions dev/api/argus/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dev/searchindex.js

Large diffs are not rendered by default.

0 comments on commit c3634c9

Please sign in to comment.