X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=deferred_operand.py;h=4b12279b5726a2eb3a97eed1c20b1f708870143b;hb=09e6d10face80d98a4578ff54192b5c8bec007d7;hp=f2af66c4cc3ee908767af2b024a37bba096ff5d9;hpb=497fb9e21f45ec08e1486abaee6dfa7b20b8a691;p=python_utils.git 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')