actions/checkout@v2 (#1643) · acoder77/Python@34c808b · GitHub
Skip to content

Commit 34c808b

Browse files
cclausspoyea
authored andcommitted
actions/checkout@v2 (TheAlgorithms#1643)
* actions/checkout@v2 https://github.com/actions/checkout/releases * fixup! Format Python code with psf/black push
1 parent 1b39858 commit 34c808b

7 files changed

Lines changed: 128 additions & 117 deletions

File tree

.github/workflows/directory_writer.yml

Lines changed: 1 addition & 1 deletion

arithmetic_analysis/newton_raphson.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from sympy import diff
99

1010

11-
def newton_raphson(func: str, a: int, precision: int=10 ** -10) -> float:
11+
def newton_raphson(func: str, a: int, precision: int = 10 ** -10) -> float:
1212
""" Finds root from the point 'a' onwards by Newton-Raphson method
1313
>>> newton_raphson("sin(x)", 2)
1414
3.1415926536808043

ciphers/affine_cipher.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33

44
import cryptomath_module as cryptomath
55

6-
SYMBOLS = (r""" !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`"""
7-
r"""abcdefghijklmnopqrstuvwxyz{|}~""")
6+
SYMBOLS = (
7+
r""" !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`"""
8+
r"""abcdefghijklmnopqrstuvwxyz{|}~"""
9+
)
810

911

1012
def main():

data_structures/binary_tree/binary_search_tree.py

Lines changed: 43 additions & 38 deletions

0 commit comments

Comments
 (0)