Open dilawar opened 3 years ago
int
https://github.com/COVID-IWG/epimargin/blob/7170f5f25a7c39f6b67c061f1a807ecb378b81b4/epimargin/models.py#L151
S, I and D are int here: clip wont work. Are these self.S etc that are list[int]?
S
I
D
clip
self.S
list[int]
Similary .copy(), .astype(), .clip() is called on int in a few places.
.copy()
.astype()
.clip()
Sequence
https://github.com/COVID-IWG/epimargin/blob/7170f5f25a7c39f6b67c061f1a807ecb378b81b4/epimargin/models.py#L250
doesn't make sense since S0 is int in argument.
S0
int
https://github.com/COVID-IWG/epimargin/blob/7170f5f25a7c39f6b67c061f1a807ecb378b81b4/epimargin/models.py#L151
S
,I
andD
areint
here:clip
wont work. Are theseself.S
etc that arelist[int]
?Similary
.copy()
,.astype()
,.clip()
is called onint
in a few places.int
is being treated asSequence
https://github.com/COVID-IWG/epimargin/blob/7170f5f25a7c39f6b67c061f1a807ecb378b81b4/epimargin/models.py#L250
doesn't make sense since
S0
isint
in argument.