diff --git a/solutions/fibonacci.py b/solutions/fibonacci.py index f335ea9dc..9f70d6688 100644 --- a/solutions/fibonacci.py +++ b/solutions/fibonacci.py @@ -1,4 +1,4 @@ -# !/usr/bin/env python3 +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ diff --git a/solutions/tests/test_fibonacci.py b/solutions/tests/test_fibonacci.py index 6593b3657..7337cabc9 100644 --- a/solutions/tests/test_fibonacci.py +++ b/solutions/tests/test_fibonacci.py @@ -1,4 +1,4 @@ -# !/usr/bin/env python3 +#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ @@ -18,6 +18,7 @@ """ import unittest + from solutions.fibonacci import generate_fibonacci