Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
jlubken committed Sep 23, 2021
2 parents 228fd2d + 43f8ed6 commit d5f3323
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
3 changes: 0 additions & 3 deletions postgres/sql/patchdb.d/004.patch.sql
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
set search_path = example;

\dn


create or replace function up_patch()
returns void as $$
begin
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
"pytest",
"pytest-cov",
"types-pkg-resources",
"types-pymssql",
"types-python-dateutil",
"types-pymssql",
"types-pyyaml",
Expand Down
2 changes: 1 addition & 1 deletion src/dsdk/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ class Evidence(OrderedDict):
def __setitem__(self, key, value):
"""__setitem__."""
if key in self:
raise KeyError("{} has already been set".format(key))
raise KeyError(f"{key} has already been set")
super().__setitem__(key, value)


Expand Down

0 comments on commit d5f3323

Please sign in to comment.