@@ -75,7 +75,7 @@ def __init__(
75
75
hide_time_to_close : bool ,
76
76
hide_time_to_first_response : bool ,
77
77
hide_created_at : bool ,
78
- hide_status : bool , # New attribute
78
+ hide_status : bool ,
79
79
ignore_user : List [str ],
80
80
labels_to_measure : List [str ],
81
81
enable_mentor_count : bool ,
@@ -105,7 +105,7 @@ def __init__(
105
105
self .hide_time_to_close = hide_time_to_close
106
106
self .hide_time_to_first_response = hide_time_to_first_response
107
107
self .hide_created_at = hide_created_at
108
- self .hide_status = hide_status # Initialize the new attribute
108
+ self .hide_status = hide_status
109
109
self .enable_mentor_count = enable_mentor_count
110
110
self .min_mentor_comments = min_mentor_comments
111
111
self .max_comments_eval = max_comments_eval
@@ -134,6 +134,7 @@ def __repr__(self):
134
134
f"{ self .hide_time_to_close } ,"
135
135
f"{ self .hide_time_to_first_response } ,"
136
136
f"{ self .hide_created_at } ,"
137
+ f"{ self .hide_status } ,"
137
138
f"{ self .ignore_users } ,"
138
139
f"{ self .labels_to_measure } ,"
139
140
f"{ self .enable_mentor_count } ,"
@@ -242,7 +243,7 @@ def get_env_vars(test: bool = False) -> EnvVars:
242
243
hide_time_to_close = get_bool_env_var ("HIDE_TIME_TO_CLOSE" , False )
243
244
hide_time_to_first_response = get_bool_env_var ("HIDE_TIME_TO_FIRST_RESPONSE" , False )
244
245
hide_created_at = get_bool_env_var ("HIDE_CREATED_AT" , True )
245
- hide_status = get_bool_env_var ("HIDE_STATUS" , True ) # New attribute
246
+ hide_status = get_bool_env_var ("HIDE_STATUS" , True )
246
247
enable_mentor_count = get_bool_env_var ("ENABLE_MENTOR_COUNT" , False )
247
248
min_mentor_comments = os .getenv ("MIN_MENTOR_COMMENTS" , "10" )
248
249
max_comments_eval = os .getenv ("MAX_COMMENTS_EVAL" , "20" )
0 commit comments