Skip to content

Format code with black, isort, yapf and autopep8 #27

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 30 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
6879677
Format code with black, isort, yapf and autopep8
deepsource-dev-autofix[bot] Jun 7, 2021
3ba23b5
Format code with yapf, autopep8, isort and black
deepsource-autofix[bot] Jun 7, 2021
a88d0b2
Format code with black, isort, yapf and autopep8
deepsource-dev-autofix[bot] Jun 7, 2021
6d67392
Format code with yapf, autopep8, isort and black
deepsource-autofix[bot] Jun 7, 2021
40d1122
Format code with black, isort, yapf and autopep8
deepsource-dev-autofix[bot] Jun 7, 2021
96a1523
Format code with yapf, autopep8, isort and black
deepsource-autofix[bot] Jun 7, 2021
eed7ff0
Format code with black, isort, yapf and autopep8
deepsource-dev-autofix[bot] Jun 7, 2021
155ec38
Format code with yapf, autopep8, isort and black
deepsource-autofix[bot] Jun 7, 2021
cd785c2
Format code with black, isort, yapf and autopep8
deepsource-dev-autofix[bot] Jun 7, 2021
2b8909a
Format code with yapf, autopep8, isort and black
deepsource-autofix[bot] Jun 7, 2021
379c056
Format code with black, isort, yapf and autopep8
deepsource-dev-autofix[bot] Jun 7, 2021
60e7988
Format code with yapf, autopep8, isort and black
deepsource-autofix[bot] Jun 7, 2021
9f35128
Format code with black, isort, yapf and autopep8
deepsource-dev-autofix[bot] Jun 7, 2021
b3f8e9d
Format code with yapf, autopep8, isort and black
deepsource-autofix[bot] Jun 7, 2021
22cd72a
Format code with black, isort, yapf and autopep8
deepsource-dev-autofix[bot] Jun 7, 2021
b91d3c3
Format code with yapf, autopep8, isort and black
deepsource-autofix[bot] Jun 7, 2021
6235486
Format code with black, isort, yapf and autopep8
deepsource-dev-autofix[bot] Jun 7, 2021
90af301
Format code with yapf, autopep8, isort and black
deepsource-autofix[bot] Jun 7, 2021
22c356b
Format code with black, isort, yapf and autopep8
deepsource-dev-autofix[bot] Jun 7, 2021
858e11a
Format code with yapf, autopep8, isort and black
deepsource-autofix[bot] Jun 7, 2021
5afe235
Format code with black, isort, yapf and autopep8
deepsource-dev-autofix[bot] Jun 7, 2021
9f21d26
Format code with yapf, autopep8, isort and black
deepsource-autofix[bot] Jun 7, 2021
439669b
Format code with black, isort, yapf and autopep8
deepsource-dev-autofix[bot] Jun 7, 2021
6802241
Format code with yapf, autopep8, isort and black
deepsource-autofix[bot] Jun 7, 2021
650a5dd
Format code with black, isort, yapf and autopep8
deepsource-dev-autofix[bot] Jun 7, 2021
db3bc37
Format code with yapf, autopep8, isort and black
deepsource-autofix[bot] Jun 7, 2021
2f6cc58
Format code with black, isort, yapf and autopep8
deepsource-dev-autofix[bot] Jun 7, 2021
7f26ad5
Format code with yapf, autopep8, isort and black
deepsource-autofix[bot] Jun 7, 2021
95bfb83
Format code with black, isort, yapf and autopep8
deepsource-dev-autofix[bot] Jun 7, 2021
e216758
Format code with yapf, autopep8, isort and black
deepsource-autofix[bot] Jun 7, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions assignment.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import os

(*FIRST,) = [1, 2, 3]
(*FIRST,) = [1, 2, 3]
*FIRST, a, b = [1, 2, 3]

import os

open("foo")


def foo(foo=None):
if foo is None:
foo = []
return [*foo]
if foo is None:
foo = []
return [*foo]