Signed-off-by: Keith Battocchi <kebatt@microsoft.com>
This commit is contained in:
Keith Battocchi 2024-07-19 12:46:53 -04:00 коммит произвёл Keith Battocchi
Родитель f2ec54ed23
Коммит f7c63ac267
2 изменённых файлов: 1 добавлений и 6 удалений

Просмотреть файл

@ -28,7 +28,6 @@ from econml.data.dgps import ihdp_surface_B
import os
try:
from azureml.train.automl.exceptions import ClientException
from azureml.core.authentication import AzureCliAuthentication
from econml.automated_ml import addAutomatedML, setAutomatedMLWorkspace, EconAutoMLConfig
AutomatedTLearner = addAutomatedML(TLearner)

Просмотреть файл

@ -144,10 +144,6 @@ quote-style = "preserve"
[tool.ruff.lint]
ignore = [
"F401", # Unused import
"F541", # f-string is missing placeholders
"F811", # Redefinition of unused name from line N
"E713", # Test for membership should be 'not in'
"D100", # Missing docstring in public module
"D101", # Missing docstring in public class
"D102", # Missing docstring in public method
@ -159,7 +155,7 @@ ignore = [
extend-select = [
"D", # Docstring
]
extend-per-file-ignores = { "econml/tests" = ["D"] }
extend-per-file-ignores = { "econml/tests" = ["D"] } # ignore docstring rules for tests
[tool.ruff.lint.pydocstyle]
convention = "numpy"