Skip to content

Commit

Permalink
✨ New Feature: Solved #9
Browse files Browse the repository at this point in the history
  • Loading branch information
Aashish committed Sep 10, 2020
1 parent a9009fb commit 6b81085
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Let's check simple infinite series convergence.
Consider this series.
<br>
<p align="center">
<img src="https://latex.codecogs.com/svg.latex?\sum_{n=0}^{%20\infty%20}%20 \frac{1}{n!}">
<img src="https://latex.codecogs.com/svg.latex?\sum_{n=0}^{%20\infty%20}%20\frac{1}{n!}">
</p>
we know that this series converge to <a href="https://en.wikipedia.org/wiki/E_(mathematical_constant)">Eular constant (e)</a>. let check that using the tool.
<br>
Expand Down

1 comment on commit 6b81085

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

./series_calc.py:7:1: F403 'from mpmath import *' used; unable to detect undefined names
./series_calc.py:7:21: W291 trailing whitespace
./series_calc.py:8:1: F401 'sys' imported but unused
./series_calc.py:11:7: E225 missing whitespace around operator
./series_calc.py:12:8: E225 missing whitespace around operator
./series_calc.py:42:5: F405 'mp' may be undefined, or defined from star imports: mpmath
./series_calc.py:42:13: E225 missing whitespace around operator
./series_calc.py:45:14: W291 trailing whitespace
./series_calc.py:48:23: W291 trailing whitespace
./series_calc.py:50:17: E231 missing whitespace after ','
./series_calc.py:50:38: E231 missing whitespace after ','
./series_calc.py:50:43: E231 missing whitespace after ','
./series_calc.py:52:1: F841 local variable 'e' is assigned to but never used
./series_calc.py:52:30: E203 whitespace before ':'
./series_calc.py:53:15: E231 missing whitespace after ','
./series_calc.py:53:81: E231 missing whitespace after ','
./series_calc.py:54:2: W291 trailing whitespace
./series_calc.py:55:19: E203 whitespace before ':'
./series_calc.py:56:15: E231 missing whitespace after ','
./series_calc.py:56:117: E231 missing whitespace after ','
./series_calc.py:58:7: E271 multiple spaces after keyword
./series_calc.py:59:15: E231 missing whitespace after ','
./series_calc.py:59:95: E231 missing whitespace after ','
2 E203 whitespace before ':'
3 E225 missing whitespace around operator
9 E231 missing whitespace after ','
1 E271 multiple spaces after keyword
1 F401 'sys' imported but unused
1 F403 'from mpmath import *' used; unable to detect undefined names
1 F405 'mp' may be undefined, or defined from star imports: mpmath
1 F841 local variable 'e' is assigned to but never used
4 W291 trailing whitespace
23

Please sign in to comment.