X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=deferred_operand.py;fp=deferred_operand.py;h=4b12279b5726a2eb3a97eed1c20b1f708870143b;hb=09e6d10face80d98a4578ff54192b5c8bec007d7;hp=f2af66c4cc3ee908767af2b024a37bba096ff5d9;hpb=11eeb8574b7b4620ac6fd440cb251f8aa2458f5b;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')