Skip to content

Commit

Permalink
Fix class name in the CDK speedrun doc. (#3502)
Browse files Browse the repository at this point in the history
Co-authored-by: Abhi Vaidyanatha <abhivaidyanatha@Abhis-MacBook-Pro.local>
  • Loading branch information
avaidyanatha and Abhi Vaidyanatha committed May 20, 2021
1 parent 32669b9 commit 3095c2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/contributing-to-airbyte/python/tutorials/cdk-speedrun.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ We're working with the Exchange Rates API, so we need to define our input schema
"documentationUrl": "https://docs.airbyte.io/integrations/sources/exchangeratesapi",
"connectionSpecification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Python Http Tutorial Spec",
"title": "Python Http Example Spec",
"type": "object",
"required": ["start_date", "currency_base"],
"additionalProperties": false,
Expand Down Expand Up @@ -75,7 +75,7 @@ from airbyte_cdk.sources.streams import Stream
from airbyte_cdk.sources.streams.http import HttpStream
from airbyte_cdk.sources.streams.http.auth import NoAuth

class SourcePythonHttpTutorial(AbstractSource):
class SourcePythonHttpExample(AbstractSource):
def check_connection(self, logger, config) -> Tuple[bool, any]:
accepted_currencies = {
"USD",
Expand Down

0 comments on commit 3095c2d

Please sign in to comment.