X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=deferred_operand.py;h=4b12279b5726a2eb3a97eed1c20b1f708870143b;hb=b10d30a46e601c9ee1f843241f2d69a1f90f7a94;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')