File tree Expand file tree Collapse file tree 7 files changed +17
-3
lines changed
Expand file tree Collapse file tree 7 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 77# Your code has been rated at 10/10 by pylint
88
99import json
10+ import logging
1011
1112from contentstack .basequery import BaseQuery
1213from contentstack .utility import Utils
1314
15+ log = logging .getLogger (__name__ )
16+
1417
1518class AssetQuery (BaseQuery ):
1619 """
Original file line number Diff line number Diff line change 33Common Query for Entry and Assets
44"""
55import enum
6+ import logging
7+
8+ log = logging .getLogger (__name__ )
69
710
811# ************* Module basequery.py **************
Original file line number Diff line number Diff line change 88# ************* Module ContentType **************
99# Your code has been rated at 10.00/10 by pylint
1010
11+ import logging
1112from urllib import parse
1213
1314from contentstack .entry import Entry
1415from contentstack .query import Query
1516
17+ log = logging .getLogger (__name__ )
1618
1719class ContentType :
1820 """
Original file line number Diff line number Diff line change 22EntryQueryable class contains common functions
33that is used as parents class for the query and entry classes
44"""
5-
5+ import logging
66
77# ************* Module EntryQueryable **************
88# Your code has been rated at 10/10 by pylint
99
10+ log = logging .getLogger (__name__ )
11+
1012
1113class EntryQueryable :
1214 """
Original file line number Diff line number Diff line change 66different transform_params in second parameter in array form
77"""
88
9+ import logging
910
1011# ************* Module image_transform **************
1112# Your code has been rated at 10.00/10 by pylint
1213
14+ log = logging .getLogger (__name__ )
1315
1416class ImageTransform : # pylint: disable=too-few-public-methods
1517 """
Original file line number Diff line number Diff line change 88# ************* Module utility checked using pylint **************
99# Your code has been rated at 10.00/10
1010
11-
1211import json
1312import logging
1413from urllib import parse
1514
15+ log = logging .getLogger (__name__ )
16+
1617
1718def config_logging (logging_type : logging .WARNING ):
1819 """
Original file line number Diff line number Diff line change @@ -8,4 +8,5 @@ setuptools~=51.0.0
88wheel == 0.35.1
99urllib3 == 1.26.3
1010utils == 1.0.1
11- twython == 3.8.2
11+ twython == 3.8.2
12+ Sphinx == 3.5.1
You can’t perform that action at this time.
0 commit comments