Skip to content

Commit

Permalink
Merge pull request #71 from PrefectHQ/fix-init
Browse files Browse the repository at this point in the history
Fix init for deprecated API module
  • Loading branch information
cicdw authored Sep 1, 2020
2 parents affafb1 + fb157e3 commit 5129973
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
20 changes: 20 additions & 0 deletions changes/pr71.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# An example changelog entry
#
# 1. Choose one (or more if a PR encompasses multiple changes) of the following headers:
# - feature
# - enhancement
# - fix
# - deprecation
# - breaking (for breaking changes)
# - migration (for database migrations)
#
# 2. Fill in one (or more) bullet points under the heading, describing the change.
# Markdown syntax may be used.
#
# 3. If you would like to be credited as helping with this release, add a
# contributor section with your name and github username.
#
# Here's an example of a PR that adds an enhancement

fix:
- "Fix __init__.py for deprecated API module - [#71](https://github.com/PrefectHQ/server/pull/71)"
2 changes: 1 addition & 1 deletion src/prefect_server/api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
import prefect_server.api.runs
import prefect_server.api.messages

import prefect_server.api.deprecated.flows
import prefect_server.api.deprecated
1 change: 1 addition & 0 deletions src/prefect_server/api/deprecated/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import prefect_server.api.deprecated.flows

0 comments on commit 5129973

Please sign in to comment.