Skip to content

Commit

Permalink
Fix missing import of rich.console
Browse files Browse the repository at this point in the history
  • Loading branch information
Scheirle committed Mar 6, 2024
1 parent 0aa2f6a commit 1c0f69f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Feature branches have the downside that there will be many and to keep the overv
they have to be cleaned up/deleted regularly.

Git can do this for fully integrated branches with `git branch -d <branch>`.
The issue with this is that often changes are purely modified in gerrit (rebase or online edits),
The issue is that often changes are purely modified in gerrit (rebase or online edits),
preventing git from detecting if a local branch is fully integrated or not (git hashes differ).

The `git gerrit` script maps local changes to remote changes and can therefore handle such situations.<br>
Expand Down
2 changes: 1 addition & 1 deletion git_gerrit/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2024-present Bernhard Scheirle
# SPDX-License-Identifier: GPL-3.0-or-later

__version__ = "1.0.2"
__version__ = "1.0.3"
2 changes: 1 addition & 1 deletion git_gerrit/cli/rebase.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# SPDX-License-Identifier: GPL-3.0-or-later

import plumbum.cli
import rich
import rich.console

from git_gerrit.utils.branch import LocalBranch
from git_gerrit.utils.git import git
Expand Down

0 comments on commit 1c0f69f

Please sign in to comment.