How to move the variables added using tutor plugins to the end of the lms/cms settings?

I have been trying to change the default email logo by adding a value to DEFAULT_EMAIL_LOGO_URL using a tutor plugin. Every time I enable the plugin and save the config, it gets added to the production settings but the default email logo variable comes after the one i’ve added. For eg.:

258. DEFAULT_EMAIL_LOGO_URL = "http://local.edly.io:8000/logo_url" # Logo url which I added
...
364. DEFAULT_EMAIL_LOGO_URL = LMS_ROOT_URL + "/theming/asset/images/logo.png"

How do I make sure that every changes I add using a tutor plugin comes to the end of the production settings or whereever I am adding it to?

One thing I found out was that, this occurs only when I add to the common settings patch. When I add it to the lms production patch, it works fine.

The openedx-lms-production-settings and the openedx-cms-production-settings patches are rendered at the very end of each file, after all the default settings, so you should use them whenever you want to make sure your changes come last. Other patches are rendered earlier so they are better suited for including configuration values that don’t have defaults in tutor (e.g. custom platform plugins).

Hmm, that makes sense.