Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reference static class method in gin config #198

Open
marcoamonteiro opened this issue Jan 30, 2024 · 0 comments
Open

Reference static class method in gin config #198

marcoamonteiro opened this issue Jan 30, 2024 · 0 comments

Comments

@marcoamonteiro
Copy link

In the following example I would like to assign a parameter to the static method ImplClass.foo . The reference @ImplClass.foo is not being resolved properly by gin.

from abc import ABC, abstractmethod
import gin

class BaseClass(ABC):
    @staticmethod
    @abstractmethod
    def foo(a):
        pass

@gin.register()
class ImplClass(BaseClass):
    @gin.register()
    def foo(a):
        print("hello")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant