mirror of
https://github.com/myned/modufur.git
synced 2024-11-01 21:02:38 +00:00
Merge branch 'dev'
This commit is contained in:
commit
854e34c9a0
1 changed files with 2 additions and 2 deletions
|
@ -180,10 +180,10 @@ def ci(pos, n):
|
||||||
return (phat + z*z/(2*n) - z * math.sqrt((phat*(1-phat)+z*z/(4*n))/n))/(1+z*z/n)
|
return (phat + z*z/(2*n) - z * math.sqrt((phat*(1-phat)+z*z/(4*n))/n))/(1+z*z/n)
|
||||||
|
|
||||||
|
|
||||||
async def add_reaction(message, reaction, error=err.NotFound):
|
async def add_reaction(message, reaction, errors=(err.NotFound, err.Forbidden)):
|
||||||
sent = False
|
sent = False
|
||||||
|
|
||||||
with suppress(error):
|
with suppress(errors):
|
||||||
await message.add_reaction(reaction)
|
await message.add_reaction(reaction)
|
||||||
sent = True
|
sent = True
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue