diff options
| author | Scott Gasch <[email protected]> | 2021-07-09 18:31:02 -0700 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2021-07-09 18:31:02 -0700 |
| commit | 09e6d10face80d98a4578ff54192b5c8bec007d7 (patch) | |
| tree | 1565e645e739ff2f607730029c91055d29c02aa5 /deferred_operand.py | |
| parent | 11eeb8574b7b4620ac6fd440cb251f8aa2458f5b (diff) | |
ACL uses enums, some more tests, other stuff.
Diffstat (limited to 'deferred_operand.py')
| -rw-r--r-- | deferred_operand.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/deferred_operand.py b/deferred_operand.py index f2af66c..4b12279 100644 --- a/deferred_operand.py +++ b/deferred_operand.py @@ -3,6 +3,9 @@ from abc import ABC, abstractmethod from typing import Any, Generic, TypeVar +# This module is commonly used by others in here and should avoid +# taking any unnecessary dependencies back on them. + T = TypeVar('T') |
