Skip to content

Commit 9316e7c

Browse files
cclaussgithub-actions
and
github-actions
authoredJun 16, 2020
Set the Python file maximum line length to 88 characters (TheAlgorithms#2122)
* flake8 --max-line-length=88 * fixup! Format Python code with psf/black push Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
1 parent 9438c6b commit 9316e7c

File tree

90 files changed

+474
-321
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+474
-321
lines changed
 

‎.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ notifications:
1010
on_success: never
1111
before_script:
1212
- black --check . || true
13-
- flake8 --ignore=E203,W503 --max-complexity=25 --max-line-length=120 --statistics --count .
13+
- flake8 --ignore=E203,W503 --max-complexity=25 --max-line-length=88 --statistics --count .
1414
- scripts/validate_filenames.py # no uppercase, no spaces, in a directory
1515
- pip install -r requirements.txt # fast fail on black, flake8, validate_filenames
1616
script:

‎arithmetic_analysis/intersection.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
import math
22

33

4-
def intersection(
5-
function, x0, x1
6-
): # function is the f we want to find its root and x0 and x1 are two random starting points
4+
def intersection(function, x0, x1):
5+
"""
6+
function is the f we want to find its root
7+
x0 and x1 are two random starting points
8+
"""
79
x_n = x0
810
x_n1 = x1
911
while True:

0 commit comments

Comments
 (0)
Please sign in to comment.