Skip to content

src.mixed_file

MyClass

This is an empty example class

Source code in src/mixed_file.py
1
2
3
4
5
6
class MyClass:
    """This is an empty example class"""

    def my_method(self):
        """This is an empty method"""
        pass

my_method()

This is an empty method

Source code in src/mixed_file.py
4
5
6
def my_method(self):
    """This is an empty method"""
    pass

mixed_file

MyClass

This is an empty example class

Source code in src/mixed_file.py
1
2
3
4
5
6
class MyClass:
    """This is an empty example class"""

    def my_method(self):
        """This is an empty method"""
        pass

my_method()

This is an empty method

Source code in src/mixed_file.py
4
5
6
def my_method(self):
    """This is an empty method"""
    pass

my_function()

This is an empty function

Source code in src/mixed_file.py
 9
10
11
def my_function():
    """This is an empty function"""
    pass