From 3c9299b9206f50538fedba905e26fe199f18ec1e Mon Sep 17 00:00:00 2001 From: ibrahemisba7 Date: Sun, 12 Jan 2025 20:34:36 +0300 Subject: [PATCH] git Merge branch 'is_prime' of https://github.com/MIT-Emerging-Talent/ET6-foundations-group-23 into is_prime --- solutions/tests/test_sum_proper_divisors.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/solutions/tests/test_sum_proper_divisors.py b/solutions/tests/test_sum_proper_divisors.py index 566bb2c59..f09952bb2 100644 --- a/solutions/tests/test_sum_proper_divisors.py +++ b/solutions/tests/test_sum_proper_divisors.py @@ -1,3 +1,11 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +Unit tests for the sum_proper_divisors function. + +This module contains unit tests for the sum_proper_divisors function. +""" + import unittest from ..sum_proper_divisors import sum_proper_divisors