From 7c5da3060fb374cdb00c78f452cd389c37877e1c Mon Sep 17 00:00:00 2001 From: Grant Ramsay Date: Sun, 29 Oct 2023 14:56:13 +0000 Subject: [PATCH] fix some issues caught by 'cidecov' Signed-off-by: Grant Ramsay --- py_maker/github_ctrl/main.py | 2 +- py_maker/main.py | 2 +- py_maker/tree/tree.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/py_maker/github_ctrl/main.py b/py_maker/github_ctrl/main.py index c14c5847..8d154c84 100644 --- a/py_maker/github_ctrl/main.py +++ b/py_maker/github_ctrl/main.py @@ -9,7 +9,7 @@ from github import Auth, Github from github.GithubException import GithubException -from rich import print +from rich import print # pylint: disable=redefined-builtin if TYPE_CHECKING: from github.AuthenticatedUser import AuthenticatedUser diff --git a/py_maker/main.py b/py_maker/main.py index c3d9b8d2..8e8be079 100644 --- a/py_maker/main.py +++ b/py_maker/main.py @@ -2,7 +2,7 @@ from typing import Optional import typer -from rich import print +from rich import print # pylint: disable=redefined-builtin from py_maker.commands import config, new, template from py_maker.helpers import get_app_version diff --git a/py_maker/tree/tree.py b/py_maker/tree/tree.py index d8b5c4d3..fa41aaea 100644 --- a/py_maker/tree/tree.py +++ b/py_maker/tree/tree.py @@ -7,7 +7,7 @@ import os import pathlib -from rich import print +from rich import print # pylint: disable=redefined-builtin from rich.filesize import decimal from rich.markup import escape from rich.text import Text