Skip to content

Commit

Permalink
fix some issues caught by 'cidecov'
Browse files Browse the repository at this point in the history
Signed-off-by: Grant Ramsay <[email protected]>
  • Loading branch information
seapagan committed Oct 29, 2023
1 parent 73cc8db commit 7c5da30
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion py_maker/github_ctrl/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion py_maker/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion py_maker/tree/tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7c5da30

Please sign in to comment.