-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes done by: ``` ruff check --fix --unsafe-fixes --ignore E722 ``` Manual update to fix: ``` guw/main.py:73:36: F821 Undefined name `from_ft` | 71 | return 72 | feature_backup_name = self._backup_name(feature["name"]) 73 | logger.debug(f"Backing up {from_ft['name']} into {feature_backup_name}") | ^^^^^^^ F821 74 | repo.git.branch("-c", feature_backup_name) 75 | self.to_push.append((feature_backup_name, feature["remote"])) | ```
- Loading branch information
1 parent
b7ce144
commit ec7b498
Showing
2 changed files
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
import os | ||
import shutil | ||
import tempfile | ||
import unittest | ||
|