stellargraph/stellargraph

View on GitHub
stellargraph/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage

Rename function "TemperatureCalibration" to match the regular expression ^[a-z_][a-z0-9_]{2,}$.
Open

def TemperatureCalibration(*args, **kwargs):
Severity: Major
Found in stellargraph/__init__.py by sonar-python

Shared coding conventions allow teams to collaborate efficiently. This rule checks that all function names match a provided regular expression.

Noncompliant Code Example

With the default provided regular expression: ^[a-z_][a-z0-9_]{2,30}$

def MyFunction(a,b):
    ...

Compliant Solution

def my_function(a,b):
    ...

Rename function "Ensemble" to match the regular expression ^[a-z_][a-z0-9_]{2,}$.
Open

def Ensemble(*args, **kwargs):
Severity: Major
Found in stellargraph/__init__.py by sonar-python

Shared coding conventions allow teams to collaborate efficiently. This rule checks that all function names match a provided regular expression.

Noncompliant Code Example

With the default provided regular expression: ^[a-z_][a-z0-9_]{2,30}$

def MyFunction(a,b):
    ...

Compliant Solution

def my_function(a,b):
    ...

Rename function "IsotonicCalibration" to match the regular expression ^[a-z_][a-z0-9_]{2,}$.
Open

def IsotonicCalibration(*args, **kwargs):
Severity: Major
Found in stellargraph/__init__.py by sonar-python

Shared coding conventions allow teams to collaborate efficiently. This rule checks that all function names match a provided regular expression.

Noncompliant Code Example

With the default provided regular expression: ^[a-z_][a-z0-9_]{2,30}$

def MyFunction(a,b):
    ...

Compliant Solution

def my_function(a,b):
    ...

Rename function "BaggingEnsemble" to match the regular expression ^[a-z_][a-z0-9_]{2,}$.
Open

def BaggingEnsemble(*args, **kwargs):
Severity: Major
Found in stellargraph/__init__.py by sonar-python

Shared coding conventions allow teams to collaborate efficiently. This rule checks that all function names match a provided regular expression.

Noncompliant Code Example

With the default provided regular expression: ^[a-z_][a-z0-9_]{2,30}$

def MyFunction(a,b):
    ...

Compliant Solution

def my_function(a,b):
    ...

There are no issues that match your filters.

Category
Status