Skip to content

Commit

Permalink
Update black to 18.9b0 (#4767)
Browse files Browse the repository at this point in the history
* Update black from 18.6b3 to 18.9b0

* Update formatting
  • Loading branch information
pyup-bot authored and di committed Sep 26, 2018
1 parent 8805b5e commit f07b168
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions requirements/lint.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ appdirs==1.4.3 \
attrs==18.2.0 \
--hash=sha256:ca4be454458f9dec299268d472aaa5a11f67a4ff70093396e1ceae9c76cf4bbb \
--hash=sha256:10cbf6e27dbce8c30807caf056c8eb50917e0eaafe86347671b57254006c3e69
black==18.6b3 \
--hash=sha256:479cc8b3455a75b5b289276b5f47fd2bb412f2f369292989c12b891264758b5c \
--hash=sha256:fe3b7ac846f2a7c91d926782184826c57d2be283c57f0d6b37b85496eb5469ff
black==18.9b0 \
--hash=sha256:817243426042db1d36617910df579a54f1afd659adb96fc5032fcf4b36209739 \
--hash=sha256:e030a9a28f542debc08acceb273f228ac422798e5215ba2a791a6ddeaaca22a5
chardet==3.0.4 \
--hash=sha256:fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691 \
--hash=sha256:84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/manage/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1626,11 +1626,11 @@ def test_get(self, db_request):
project = ProjectFactory.create()
older_journal = JournalEntryFactory.create(
name=project.name,
submitted_date=datetime.datetime(2017, 2, 5, 17, 18, 18, 462634),
submitted_date=datetime.datetime(2017, 2, 5, 17, 18, 18, 462_634),
)
newer_journal = JournalEntryFactory.create(
name=project.name,
submitted_date=datetime.datetime(2018, 2, 5, 17, 18, 18, 462634),
submitted_date=datetime.datetime(2018, 2, 5, 17, 18, 18, 462_634),
)

assert views.manage_project_history(project, db_request) == {
Expand Down

0 comments on commit f07b168

Please sign in to comment.