Skip to content

Commit 9059925

Browse files
vaibhavatlanAryamanz29
authored andcommitted
Formatting the code
1 parent d0cc2e8 commit 9059925

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

pyatlan/client/atlan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1351,7 +1351,7 @@ def remove_atlan_tag(
13511351
self.asset.remove_atlan_tags(
13521352
asset_type=asset_type,
13531353
qualified_name=qualified_name,
1354-
atlan_tag_names=atlan_tag_names
1354+
atlan_tag_names=atlan_tag_names,
13551355
)
13561356

13571357
@validate_arguments

tests/unit/constants.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,10 @@
120120
(["asset-type", None, ["tag-name"]], "none is not an allowed value"),
121121
([None, "qn", ["tag-name"]], "none is not an allowed value"),
122122
(["asset-type", "qn", ["tag-name"]], "asset_type\n a class is expected"),
123-
([AtlasGlossary, "qn", "tag-name"], "atlan_tag_names\n value is not a valid list"),
123+
(
124+
[AtlasGlossary, "qn", "tag-name"],
125+
"atlan_tag_names\n value is not a valid list",
126+
),
124127
([AtlasGlossary, "qn", None], "none is not an allowed value"),
125128
],
126129
"update_certificate": [

0 commit comments

Comments
 (0)