Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
topherinternational committed Dec 22, 2023
1 parent 1e14bb7 commit 2fb34f9
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/pylint_airflow/checkers/xcom.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
"""Checks on Airflow XComs."""
"""Checks on Airflow XComs.
This module contains the XComChecker class and a collection of functions.
XComChecker contains only:
- Methods interfacing with the pylint checker API (i.e. `visit_<nodetype>()` methods)
- Methods that add pylint messages for rules violations (`check_<message>()`)
The module-level functions perform any work that isn't a pylint checker method or adding a message.
"""
from dataclasses import dataclass
from typing import Set, Dict, Tuple

Expand Down

0 comments on commit 2fb34f9

Please sign in to comment.