container-registry / harbor-api-client

Unnecessary pass statement PYL-W0107
Style
Minor
a year agoa year old
Unnecessary pass statement
33        """Test WorkerPool"""
34        # FIXME: construct object with mandatory attributes with example values
35        # model = harbor_client.models.worker_pool.WorkerPool()  # noqa: E501
36        pass37
38
39if __name__ == "__main__":
Unnecessary pass statement
33        """Test Worker"""
34        # FIXME: construct object with mandatory attributes with example values
35        # model = harbor_client.models.worker.Worker()  # noqa: E501
36        pass37
38
39if __name__ == "__main__":
Unnecessary pass statement
34
35        Create user group  # noqa: E501
36        """
37        pass38
39    def test_delete_user_group(self):
40        """Test case for delete_user_group
Unnecessary pass statement
41
42        Delete user group  # noqa: E501
43        """
44        pass45
46    def test_get_user_group(self):
47        """Test case for get_user_group
Unnecessary pass statement
48
49        Get user group information  # noqa: E501
50        """
51        pass52
53    def test_list_user_groups(self):
54        """Test case for list_user_groups