Skip to content

[Bug] Concurrent Processing return type marked as List[Data_T] instead of List[Target_T] #136

Closed
@caffeine-addictt

Description

@caffeine-addictt

Bug report

Your issue may already be reported!
Please check out our active issues before creating one.

Expected Behavior

d: list[Data_T] = []

def a(*, **) -> Target_T:
    ...

b = ConcurrentProcessing(a, d)
b.get_return_values() # List[Target_T]

Current Behavior

d: list[Data_T] = []

def a(*, **) -> Target_T:
    ...

b = ConcurrentProcessing(a, d)
b.get_return_values() # List[Data_T]

Is this a regression?

yes

Metadata

Metadata

Labels

Type: BugSomething isn't working as expected.

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions