From 87a1d08ea0661e05d239ed2b22f2fe7ff942f028 Mon Sep 17 00:00:00 2001 From: RandomProjects-db Date: Sun, 12 Jan 2025 20:22:33 +0200 Subject: [PATCH] after review edit -new challenge Fibonacci --- solutions/fibonacci.py | 2 +- solutions/tests/test_fibonacci.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) 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