Skip to content

Commit

Permalink
Codestyle fixies 🌈
Browse files Browse the repository at this point in the history
  • Loading branch information
Sibyx committed May 5, 2020
1 parent 05948be commit 53b7221
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 25 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ So I decided to create simple Python package to cover all my expectations.
# Using pip
pip install django-api-forms

# Using poetry
peotry add django-api-forms

# Using pipenv
pipenv install django-api-forms

Expand Down
45 changes: 23 additions & 22 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions tests/test_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,9 +266,9 @@ def test_formfieldlist_required_false(self):

class EnumFieldTests(SimpleTestCase):
class Color(Enum):
RED = 1
GREEN = 2
BLUE = 3
RED = 1
GREEN = 2
BLUE = 3

def test_enumfield_init(self):
# TEST: initialize EnumField with an instance of Enum
Expand Down

0 comments on commit 53b7221

Please sign in to comment.