From 679fbeec4362c01b74ad546bc06e15864884e98a Mon Sep 17 00:00:00 2001 From: MarvinKweyu Date: Sat, 17 Aug 2024 20:05:34 +0300 Subject: [PATCH] docs: update readme tags --- README.md | 4 ++-- src/colordetect/col_share.py | 2 +- tests/test_unit.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9046498..b0b362a 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,8 @@ ![Lint workflow](https://github.com/MarvinKweyu/ColorDetect/actions/workflows/lint.yml/badge.svg?branch=master) [![PyPI version](https://badge.fury.io/py/ColorDetect.svg)](https://pypi.org/project/ColorDetect/) -[![Python](https://img.shields.io/badge/python-3.6%7C3.7%7C3.8%7C3.9-green)](https://pypi.org/project/ColorDetect/) -[![CircleCI](https://circleci.com/gh/MarvinKweyu/ColorDetect.svg?style=svg)](https://circleci.com/gh/MarvinKweyu/ColorDetect) +[![Python](https://img.shields.io/badge/python->=3.6-green)](https://pypi.org/project/ColorDetect/) +![Package tests](https://github.com/MarvinKweyu/ColorDetect/actions/workflows/package-tests.yml/badge.svg?branch=master) [![Downloads](https://pepy.tech/badge/colordetect)](https://pypi.org/project/ColorDetect/) [![Documentation Status](https://readthedocs.org/projects/colordetect/badge/?version=master)](https://colordetect.readthedocs.io/en/master/) diff --git a/src/colordetect/col_share.py b/src/colordetect/col_share.py index 3623034..41028a8 100644 --- a/src/colordetect/col_share.py +++ b/src/colordetect/col_share.py @@ -7,7 +7,7 @@ Usage: ->>> from src.color_detect import col_share +>>> from src.colordetect import col_share # show a progress bar for a process >>> col_share.progress_bar("", "", "") # sort a dictionary by value to required length or in specific order diff --git a/tests/test_unit.py b/tests/test_unit.py index e97d788..1d63e1e 100644 --- a/tests/test_unit.py +++ b/tests/test_unit.py @@ -10,7 +10,7 @@ import cv2 import pytest -from colordetect import ColorDetect, VideoColor, col_share +from src.colordetect import ColorDetect, VideoColor, col_share def test_image_vid_parsed_to_class(image, video):