Table of Contents

Overview

Python is the main language used in Autosubmit. This style guide is a list of dos and don'ts for Autosubmit code based on the Google's Python style guide.

In order to format the code correctly you can use the settings file for Vim created by Google.

Variables, properties and accessor-setter methods

Python Language Rules

    import tabnanny
    tabnanny.check('file.py')

Python Style Rules