Skip to content

Commit c204d55

Browse files
committed
Add python3 future imports
1 parent 02a2039 commit c204d55

3 files changed

Lines changed: 6 additions & 0 deletions

File tree

codespeed/domain.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# -*- coding: utf-8 -*-
2+
from __future__ import absolute_import, unicode_literals
3+
24
import logging
35
from datetime import datetime
46
from django.core.exceptions import ValidationError

codespeed/models.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# -*- coding: utf-8 -*-
2+
from __future__ import absolute_import, unicode_literals
3+
24
import os
35
import json
46

codespeed/views.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# -*- coding: utf-8 -*-
2+
from __future__ import absolute_import, unicode_literals
3+
24
import json
35
import logging
46

0 commit comments

Comments
 (0)