Merge pull request #1612 from kingyue737/deplete-bug-fix

Assign prev_results to correct member in TrasnportOperator's constructor
This commit is contained in:
Andrew Johnson 2020-07-16 11:28:03 -04:00 committed by GitHub
commit ac8dd925d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -122,7 +122,7 @@ class TransportOperator(ABC):
self.prev_res = None
else:
check_type("previous results", prev_results, ResultsList)
self.prev_results = prev_results
self.prev_res = prev_results
@property
def dilute_initial(self):