Skip to content

Commit 5e375b5

Browse files
committed
Move __future__ import after license text
1 parent 11a6b33 commit 5e375b5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sklearn/gaussian_process/gaussian_process.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
from __future__ import print_function
21
# -*- coding: utf-8 -*-
32

43
# Author: Vincent Dubourg <[email protected]>
54
# (mostly translation, see implementation details)
65
# Licence: BSD 3 clause
76

7+
from __future__ import print_function
8+
89
import numpy as np
910
from scipy import linalg, optimize, rand
1011

0 commit comments

Comments
 (0)