Replace literal values with named constants for clarity.
Description
Magic strings are literal values that are used directly in code without explanation. They are often difficult to understand and can lead to bugs when they are changed in one place but not in others. To avoid this, replace magic strings with named constants that describe their purpose 1.