Skip to content

Commit 8ace586

Browse files
JayBazuzi4dsherwoodsusanfungkkchu791
committed
. r Reorder and inline
Co-Authored-By: 4dsherwood <4dsherwood@users.noreply.github.com> Co-Authored-By: Susan Fung <38925660+susanfung@users.noreply.github.com> Co-Authored-By: Kirk Chu <kkchu791@gmail.com>
1 parent 6ec4bbb commit 8ace586

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

generate_prod_min.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
33
_SCRIPT_DIR = Path(__file__).parent
44

55
reg_prod_path = _SCRIPT_DIR / "requirements.prod.txt"
6-
min_prod_path = _SCRIPT_DIR / "requirements.prod.min.txt"
76

8-
reg_prod = reg_prod_path.read_text()
9-
min_prod = reg_prod.replace(">=", "==")
7+
min_prod = reg_prod_path.read_text().replace(">=", "==")
108

9+
min_prod_path = _SCRIPT_DIR / "requirements.prod.min.txt"
1110
min_prod_path.write_text(min_prod)

0 commit comments

Comments
 (0)