We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example:
class AutoNameOperator(DummyOperator): def __init__(self, tbl_name): self.task_id = tbl_name.replace(".", "_") super().__init__(task_id=self.task_id) eggs_spam = AutoNameOperator(tbl_name="eggs.spam")
I'd expect the evaluation of different-operator-varname-taskid to pass, however in this section:
different-operator-varname-taskid
pylint-airflow/src/pylint_airflow/checkers/operator.py
Lines 84 to 93 in 95b976b
task_id is None, and thereby raises the message.
task_id
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Example:
I'd expect the evaluation of
different-operator-varname-taskid
to pass, however in this section:pylint-airflow/src/pylint_airflow/checkers/operator.py
Lines 84 to 93 in 95b976b
task_id
is None, and thereby raises the message.The text was updated successfully, but these errors were encountered: