coercer.utils.Reporter

 1#!/usr/bin/env python3
 2# -*- coding: utf-8 -*-
 3# File name          : Reporter.py
 4# Author             : Podalirius (@podalirius_)
 5# Date created       : 17 Jul 2022
 6
 7class Reporter(object):
 8    """
 9    Documentation for class Reporter
10    """
11
12    def __init__(self):
13        super(Reporter, self).__init__()
class Reporter:
 8class Reporter(object):
 9    """
10    Documentation for class Reporter
11    """
12
13    def __init__(self):
14        super(Reporter, self).__init__()

Documentation for class Reporter

Reporter()
13    def __init__(self):
14        super(Reporter, self).__init__()