summaryrefslogtreecommitdiffstats
path: root/scripts/qt/branch_qt.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/qt/branch_qt.py')
-rwxr-xr-xscripts/qt/branch_qt.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/scripts/qt/branch_qt.py b/scripts/qt/branch_qt.py
index 11100b38..44899613 100755
--- a/scripts/qt/branch_qt.py
+++ b/scripts/qt/branch_qt.py
@@ -103,20 +103,6 @@ class QtBranching:
else:
subprocess.run(*args, **kwargs)
- def is_phase_done(self, repo: git.Repo) -> bool:
- """Test if some part of the process has already been run for a repository.
-
- This script adds a config section where the state is tracked.
- """
- config = repo.config_reader()
- state = str(config.get_value(f'qtbranching "{self.toBranch}"', 'done'))
- return state == self.mode.name
-
- def write_done_phase(self, repo: git.Repo) -> None:
- """Set the current phase to done."""
- config = repo.config_writer()
- state = config.set_value(f'qtbranching "{self.toBranch}"', 'done', self.mode.name)
-
def run(self) -> None:
self.sanity_check()
self.init_repository()