Skip to content

Commit

Permalink
fix: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
kmaphoenix committed Dec 9, 2024
1 parent dd78895 commit d2116d8
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 4 deletions.
1 change: 1 addition & 0 deletions examples/bot_building_series/bot_building_101.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import sys

import pandas as pd

from dfcx_scrapi.core.agents import Agents
from dfcx_scrapi.core.flows import Flows
from dfcx_scrapi.core.intents import Intents
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import sys

import pandas as pd

from dfcx_scrapi.core.agents import Agents
from dfcx_scrapi.tools.dataframe_functions import DataframeFunctions

Expand Down
3 changes: 2 additions & 1 deletion examples/dfcx_agent_cicd/cicd_code/export/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
import logging
import sys

from dfcx_scrapi.core.agents import Agents
from google.cloud import storage

from dfcx_scrapi.core.agents import Agents

from .flow_impacted import Impacted

# logging config
Expand Down
3 changes: 2 additions & 1 deletion examples/dfcx_agent_cicd/cicd_code/shared/deployment.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
import sys
import time

from google.cloud.dialogflowcx_v3beta1 import types

from dfcx_scrapi.core.agents import Agents
from dfcx_scrapi.core.environments import Environments
from dfcx_scrapi.core.flows import Flows
from dfcx_scrapi.core.versions import Versions
from google.cloud.dialogflowcx_v3beta1 import types

from .en_vs_other_lang import en_vs_lang
from .test_case_run import RunTestCases
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
""" Compare the fullfillments of en vs french langauge or etc"""
import pandas as pd

from dfcx_scrapi.core.flows import Flows

from .fullfillment_helper import (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
""" Helper functions for en vs lang"""

from dfcx_scrapi.core.pages import Pages
from google.cloud.dialogflowcx_v3beta1.services import pages
from google.cloud.dialogflowcx_v3beta1.types import page as gcdc_page

from dfcx_scrapi.core.pages import Pages


class PagesChild(Pages):
"""
Expand Down
3 changes: 2 additions & 1 deletion src/agent_assist/agent_assist.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,14 @@
import logging
from typing import Dict

from dfcx_scrapi.core import scrapi_base
from google.cloud.dialogflow_v2beta1 import services, types
from google.cloud.dialogflow_v2beta1.services.knowledge_bases import (
KnowledgeBasesClient,
)
from google.protobuf import field_mask_pb2

from dfcx_scrapi.core import scrapi_base

# logging config
logging.basicConfig(
level=logging.INFO,
Expand Down

0 comments on commit d2116d8

Please sign in to comment.