Skip to content

Commit

Permalink
fix casing
Browse files Browse the repository at this point in the history
  • Loading branch information
jakekaplan committed Sep 5, 2024
1 parent aa00477 commit 2ba2cdb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/prefect/client/orchestration.py
Original file line number Diff line number Diff line change
Expand Up @@ -3352,8 +3352,8 @@ async def api_compatible(self):

if api_version.major != client_version.major:
raise RuntimeError(
f"Client version {client_version} is incompatible with api version {api_version}. "
f"Both client and api must be on the same major version."
f"Client version {client_version} is incompatible with API version {api_version}. "
f"Both client and API must be on the same major version."
)

async def __aenter__(self):
Expand Down Expand Up @@ -3671,8 +3671,8 @@ def api_compatible(self):

if api_version.major != client_version.major:
raise RuntimeError(
f"Client version {client_version} is incompatible with api version {api_version}. "
f"Both client and api must be on the same major version."
f"Client version {client_version} is incompatible with API version {api_version}. "
f"Both client and API must be on the same major version."
)

def create_flow(self, flow: "FlowObject") -> UUID:
Expand Down

0 comments on commit 2ba2cdb

Please sign in to comment.