Skip to content

Commit

Permalink
style(utils): fix import sort order
Browse files Browse the repository at this point in the history
Some mis-labelled external vs Python std imports
  • Loading branch information
athewsey committed Jul 26, 2023
1 parent e626481 commit eae5d55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/bedrock.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
# SPDX-License-Identifier: MIT-0
"""Helper utilities for working with Amazon Bedrock from Python notebooks"""
# Python Built-Ins:
from enum import Enum
import json
import os
from time import sleep
from typing import Dict, Optional

# External Dependencies:
import boto3
from pydantic import root_validator
from enum import Enum
from botocore.config import Config
from pydantic import root_validator


def get_bedrock_client(
Expand Down

0 comments on commit eae5d55

Please sign in to comment.