Skip to content

Commit

Permalink
💚 black
Browse files Browse the repository at this point in the history
  • Loading branch information
annashamray committed Apr 9, 2024
1 parent c585618 commit 2cd76d3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drc_cmis/browser/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,9 +304,9 @@ def create_content_object(
if "cmis:objectTypeId" in properties.keys():
json_data["propertyValue[2]"] = properties.pop("cmis:objectTypeId")
else:
json_data[
"propertyValue[2]"
] = f"{self.get_object_type_id_prefix(object_type)}drc:{object_type}"
json_data["propertyValue[2]"] = (
f"{self.get_object_type_id_prefix(object_type)}drc:{object_type}"
)

prop_count = 3
for prop_key, prop_value in properties.items():
Expand Down
1 change: 1 addition & 0 deletions drc_cmis/notifications.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Listen to the notifications that are send by the NRC
"""

from vng_api_common.notifications.handlers import RoutingHandler, default

from drc_cmis.client_builder import get_cmis_client, get_zds_client
Expand Down

0 comments on commit 2cd76d3

Please sign in to comment.