mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-19 19:03:02 +08:00
GitHub Action formats our code with psf/black (#1569)
* GitHub Action formats our code with psf/black @poyea Your review please. * fixup! Format Python code with psf/black push
This commit is contained in:
@ -27,7 +27,7 @@ def solution(n):
|
||||
"""
|
||||
fact = 1
|
||||
result = 0
|
||||
for i in range(1,n + 1):
|
||||
for i in range(1, n + 1):
|
||||
fact *= i
|
||||
|
||||
for j in str(fact):
|
||||
|
Reference in New Issue
Block a user