Skip to content

Commit 3812616

Browse files
committed
remove INSTANCE_* vars from _environment.py properly
1 parent 868c6a9 commit 3812616

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

ci/praktika/_environment.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ class _Environment(MetaClasses.Serializable):
2626
BASE_BRANCH: str
2727
RUN_ID: str
2828
RUN_URL: str
29-
INSTANCE_TYPE: str
30-
INSTANCE_ID: str
31-
INSTANCE_LIFE_CYCLE: str
29+
# INSTANCE_TYPE: str
30+
# INSTANCE_ID: str
31+
# INSTANCE_LIFE_CYCLE: str
3232
PR_BODY: str
3333
PR_TITLE: str
3434
USER_LOGIN: str
@@ -183,14 +183,14 @@ def from_env(cls) -> "_Environment":
183183
COMMIT_URL=COMMIT_URL,
184184
RUN_URL=RUN_URL,
185185
BASE_BRANCH=BASE_BRANCH,
186-
INSTANCE_TYPE=INSTANCE_TYPE,
187-
INSTANCE_ID=INSTANCE_ID,
186+
# INSTANCE_TYPE=INSTANCE_TYPE,
187+
# INSTANCE_ID=INSTANCE_ID,
188188
PR_BODY=PR_BODY,
189189
PR_TITLE=PR_TITLE,
190190
USER_LOGIN=USER_LOGIN,
191191
FORK_NAME=FORK_NAME,
192192
PR_LABELS=PR_LABELS,
193-
INSTANCE_LIFE_CYCLE=INSTANCE_LIFE_CYCLE,
193+
# INSTANCE_LIFE_CYCLE=INSTANCE_LIFE_CYCLE,
194194
REPORT_INFO=[],
195195
LINKED_PR_NUMBER=LINKED_PR_NUMBER,
196196
)

0 commit comments

Comments
 (0)