Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe what you were trying to get done.
There seems to be no way to create an implementation for an interface that has a method which is generic.
What commands did you run to trigger this issue? If you can provide a Minimal, Complete, and Verifiable example this will help us understand the issue.
namespace Namespace { public interface IInterface { T GetSomething<T>() where T : class; } }
class Implementation(IInterface): __namespace__ = "Namespace" def GetSomething(self): ...
class Implementation(IInterface): __namespace__ = "Namespace" def GetSomething(self, T): ...
TypeError: Method 'GetSomething' in type 'Namespace.Implementation' from assembly '...' does not have an implementation
The text was updated successfully, but these errors were encountered:
same issue with me when trying to implement System.Collections.Generic.IEnumerable
System.Collections.Generic.IEnumerable
Sorry, something went wrong.
No branches or pull requests
Environment
Details
Describe what you were trying to get done.
There seems to be no way to create an implementation for an interface that has a method which is generic.
What commands did you run to trigger this issue? If you can provide a
Minimal, Complete, and Verifiable example
this will help us understand the issue.
The text was updated successfully, but these errors were encountered: