Skip to content

Commit 0a34e79

Browse files
committed
fix: remove comments and fix typo
1 parent 377e483 commit 0a34e79

File tree

1 file changed

+19
-30
lines changed

1 file changed

+19
-30
lines changed

backend/model/evaluations/evaluations_constants.py

Lines changed: 19 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -15,45 +15,34 @@ class EvaluationQuestionType(str, Enum):
1515

1616

1717
class PyconEvaluationQuestionType(str, Enum):
18-
HOW_WOULD_YOU_RATE_PYCON_DAVAO_OVERALL = 'how_would_you_rate_pycon_davao_overall' # (1-5)
19-
WhAT_WAS_THE_HIGHLIGHT_OF_THE_EVENT_FOR_YOU = 'what_was_the_highlight_of_the_event_for_you' # Text
18+
HOW_WOULD_YOU_RATE_PYCON_DAVAO_OVERALL = 'how_would_you_rate_pycon_davao_overall'
19+
WHAT_WAS_THE_HIGHLIGHT_OF_THE_EVENT_FOR_YOU = 'what_was_the_highlight_of_the_event_for_you'
2020
IS_THERE_ANYTHING_SPECIFIC_YOU_WOULD_LIKE_TO_COMMEND_ABOUT_THE_EVENT = (
21-
'is_there_anything_specific_you_would_like_to_commend_about_the_event' # Text
21+
'is_there_anything_specific_you_would_like_to_commend_about_the_event'
2222
)
2323
HOW_SATISFIED_WERE_YOU_WITH_THE_CONTENT_AND_PRESENTATIONS = (
24-
'how_satisfied_were_you_with_the_content_and_presentations' # (1-5)
25-
)
26-
WHICH_SESSIONS_OR_TOPICS_DID_YOU_FIND_MOST_VALUABLE = 'which_sessions_or_topics_did_you_find_most_valuable' # Text
27-
WERE_THERE_ANY_TOPICS_OR_SESSIONS_YOU_FELT_WERE_MISSING = (
28-
'were_there_any_topics_or_sessions_you_felt_were_missing' # Text
29-
)
30-
HAVE_YOU_ATTENDED_PYTHON_EVENTS_BEFORE = 'have_you_attended_python_events_before_if_so_what_kind_of_community_support_did_you_find_helpful_in_previous_events' # Text
31-
HOW_LIKELY_ARE_YOU_TO_RECOMMEND_THIS_EVENT = 'how_likely_are_you_to_recommend_this_event_to_other_python_developers_or_enthusiasts_based_on_the_community_support_provided' # (1-5)
32-
# Organization and Logistics
33-
HOW_WOULD_YOU_RATE_EVENT_ORGANIZATION_AND_LOGISTICS = 'how_would_you_rate_event_organization_and_logistics' # (1-5)
34-
WERE_THE_EVENT_SCHEDULE_AND_TIMING_CONVENIENT_FOR_YOU = (
35-
'were_the_event_schedule_and_timing_convenient_for_you' # (1-5)
36-
)
37-
WERE_THE_VENUE_FACILITIES_ADEQUATE = 'were_the_venue_facilities_adequate' # (1-5)
24+
'how_satisfied_were_you_with_the_content_and_presentations'
25+
)
26+
WHICH_SESSIONS_OR_TOPICS_DID_YOU_FIND_MOST_VALUABLE = 'which_sessions_or_topics_did_you_find_most_valuable'
27+
WERE_THERE_ANY_TOPICS_OR_SESSIONS_YOU_FELT_WERE_MISSING = 'were_there_any_topics_or_sessions_you_felt_were_missing'
28+
HAVE_YOU_ATTENDED_PYTHON_EVENTS_BEFORE = 'have_you_attended_python_events_before_if_so_what_kind_of_community_support_did_you_find_helpful_in_previous_events'
29+
HOW_LIKELY_ARE_YOU_TO_RECOMMEND_THIS_EVENT = 'how_likely_are_you_to_recommend_this_event_to_other_python_developers_or_enthusiasts_based_on_the_community_support_provided'
30+
HOW_WOULD_YOU_RATE_EVENT_ORGANIZATION_AND_LOGISTICS = 'how_would_you_rate_event_organization_and_logistics'
31+
WERE_THE_EVENT_SCHEDULE_AND_TIMING_CONVENIENT_FOR_YOU = 'were_the_event_schedule_and_timing_convenient_for_you'
32+
WERE_THE_VENUE_FACILITIES_ADEQUATE = 'were_the_venue_facilities_adequate'
3833
DID_YOU_ENCOUNTER_ANY_PROBLEMS_WITH_THE_ORGANIZATION_AND_LOGISTICS = (
39-
'did_you_encounter_any_problems_with_the_organization_and_logistics' # Text
34+
'did_you_encounter_any_problems_with_the_organization_and_logistics'
4035
)
41-
# Networking and Interaction
42-
DID_YOU_FIND_OPPORTUNITIES_FOR_NETWORKING_VALUABLE = 'did_you_find_opportunities_for_networking_valuable' # (1-5)
36+
DID_YOU_FIND_OPPORTUNITIES_FOR_NETWORKING_VALUABLE = 'did_you_find_opportunities_for_networking_valuable'
4337
HOW_WOULD_YOU_RATE_THE_NETWORKING_OPPORTUNITIES_PROVIDED = (
44-
'how_would_you_rate_the_networking_opportunities_provided' # (1-5)
38+
'how_would_you_rate_the_networking_opportunities_provided'
4539
)
4640
WHAT_COULD_HAVE_BEEN_IMPROVED_RELATED_TO_THE_NETWORKING = (
47-
'what_could_have_been_improved_related_to_the_networking_and_interaction_aspects_of_the_event' # Text
48-
)
49-
# Suggestions and Improvements
50-
SUGGESTIONS_FOR_IMPROVING_FUTURE_PYCON_EVENTS = (
51-
'what_suggestions_do_you_have_for_improving_future_pycon_events' # Text
52-
)
53-
ADDITIONAL_COMMENTS = 'is_there_anything_else_you_would_like_to_share_about_your_experience_at_the_event' # Text
54-
LIKELIHOOD_OF_ATTENDING_FUTURE_PYCON_DAVAO_EVENTS = (
55-
'how_likely_are_you_to_attend_future_pycon_davao_events' # (1-5)
41+
'what_could_have_been_improved_related_to_the_networking_and_interaction_aspects_of_the_event'
5642
)
43+
SUGGESTIONS_FOR_IMPROVING_FUTURE_PYCON_EVENTS = 'what_suggestions_do_you_have_for_improving_future_pycon_events'
44+
ADDITIONAL_COMMENTS = 'is_there_anything_else_you_would_like_to_share_about_your_experience_at_the_event'
45+
LIKELIHOOD_OF_ATTENDING_FUTURE_PYCON_DAVAO_EVENTS = 'how_likely_are_you_to_attend_future_pycon_davao_events'
5746

5847

5948
class QuestionType(str, Enum):

0 commit comments

Comments
 (0)