Skip to content

Commit

Permalink
fix line length issue
Browse files Browse the repository at this point in the history
  • Loading branch information
NickAkhmetov committed Jul 14, 2023
1 parent 13cc169 commit 79425a6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion context/app/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,5 @@ def get_enable_publications():
current_timestamp = datetime.now().timestamp()
# 2023-07-19 at 15:00:00 UTC
publication_embargo_end_timestamp = 1689778800
return current_app.config.get('ENABLE_PUBLICATIONS') or current_timestamp > publication_embargo_end_timestamp
return current_app.config.get('ENABLE_PUBLICATIONS') or \
current_timestamp > publication_embargo_end_timestamp

0 comments on commit 79425a6

Please sign in to comment.