Skip to content

Commit

Permalink
removed prefect dependency from source
Browse files Browse the repository at this point in the history
  • Loading branch information
fdelgadodyvenia committed Sep 22, 2024
1 parent e54e004 commit 9005374
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/viadot/sources/vid_club.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@
from typing import Any, Dict, List, Literal, Tuple
import pandas as pd

from prefect import get_run_logger
import logging
from ..exceptions import ValidationError
from ..utils import handle_api_response
from .base import Source


logger = get_run_logger()
# Configure logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)


class VidClub(Source):
Expand Down

0 comments on commit 9005374

Please sign in to comment.