Skip to content

Commit

Permalink
Replace " " in stream names with "_"
Browse files Browse the repository at this point in the history
  • Loading branch information
stkbailey authored Apr 19, 2021
1 parent 4cccf03 commit 1090f05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tap_canny/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class BoardsStream(CannyStream):
class ChangelogEntriesStream(CannyStream):
"""Changelog Entries stream class."""

name = "changelog entries"
name = "changelog_entries"
path = "/entries/list"
primary_keys = ["id"]
replication_key = "lastSaved"
Expand Down Expand Up @@ -95,7 +95,7 @@ class PostsStream(CannyStream):
class StatusChangesStream(CannyStream):
"""Status Changes stream class."""

name = "status changes"
name = "status_changes"
path = "/status_changes/list"
primary_keys = ["id"]
replication_key = "created"
Expand Down Expand Up @@ -125,4 +125,4 @@ class VotesStream(CannyStream):
replication_key = "created"
response_result_key = "votes"

schema_filepath = SCHEMAS_DIR / "vote.json"
schema_filepath = SCHEMAS_DIR / "vote.json"

0 comments on commit 1090f05

Please sign in to comment.