File tree Expand file tree Collapse file tree 4 files changed +4
-6
lines changed
circuitpython_customvision/prediction Expand file tree Collapse file tree 4 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -313,10 +313,10 @@ inlinevar-name-hint=[A-Za-z_][A-Za-z0-9_]*$
313
313
inlinevar-rgx =[A-Za-z_][A-Za-z0-9_]*$
314
314
315
315
# Naming hint for method names
316
- method-name-hint =(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
316
+ # method-name-hint=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
317
317
318
318
# Regular expression matching correct method names
319
- method-rgx =(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
319
+ # method-rgx=(([a-z][a-z0-9_]{2,30})|(_[a-z0-9_]*))$
320
320
321
321
# Naming hint for module names
322
322
module-name-hint =(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
@@ -423,7 +423,7 @@ max-returns=6
423
423
max-statements =50
424
424
425
425
# Minimum number of public methods for a class (see R0903).
426
- min-public-methods =1
426
+ min-public-methods =0
427
427
428
428
429
429
[EXCEPTIONS]
Original file line number Diff line number Diff line change 15
15
__all__ = ['CustomVisionPredictionClient' ]
16
16
17
17
__version__ = VERSION
18
-
Original file line number Diff line number Diff line change @@ -4,4 +4,4 @@ class CustomVisionError(Exception):
4
4
"""
5
5
def __init__ (self , message ):
6
6
super (CustomVisionError , self ).__init__ (message )
7
- self .message = message
7
+ self .message = message
Original file line number Diff line number Diff line change 10
10
# --------------------------------------------------------------------------
11
11
12
12
VERSION = "3.0"
13
-
You can’t perform that action at this time.
0 commit comments