Python pass Keyword
Definition and Usage
The pass keyword is used as a placeholder.
If you have an empty function definition, like in the example above, you
would get an error without the pass statement.
The pass keyword can also be used in empty
class definitions.

