Skip to content

Commit

Permalink
change to custom_x
Browse files Browse the repository at this point in the history
  • Loading branch information
andtheysay committed Aug 16, 2024
1 parent a8c5388 commit 8a98558
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/airflow_pulsar_plugin/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from airflow.plugins_manager import AirflowPlugin
from airflow_pulsar_plugin.hooks.pulsar_hook import PulsarHook
from airflow_pulsar_plugin.operators.pulsar_operator import PulsarOperator
from airflow_pulsar_plugin.sensors.pulsar_sensor import PulsarSensor
from custom_hooks.pulsar_hook import PulsarHook
from custom_operators.pulsar_operator import PulsarOperator
from custom_sensors.pulsar_sensor import PulsarSensor

class AirflowPulsarPlugin(AirflowPlugin):
name = "pulsar_plugin"
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from airflow.utils.decorators import apply_defaults
from airflow.models import BaseOperator
from hooks.pulsar_hook import PulsarHook
from custom_hooks.pulsar_hook import PulsarHook

class PulsarOperator(BaseOperator):
@apply_defaults
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from airflow.sensors.base import BaseSensorOperator
from airflow.utils.decorators import apply_defaults
from hooks.pulsar_hook import PulsarHook
from custom_hooks.pulsar_hook import PulsarHook

class PulsarSensor(BaseSensorOperator):
@apply_defaults
Expand Down

0 comments on commit 8a98558

Please sign in to comment.