Skip to content

Commit 7920e96

Browse files
committed
test
1 parent d13f1e4 commit 7920e96

File tree

2 files changed

+4
-14
lines changed

2 files changed

+4
-14
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ repos:
1212
- id: yapf
1313
name: "yapf (for labelbox-python repo)"
1414
# args: [--verbose --style=google]
15-
args: ["--style=.style.yapf"]
15+
# args: ["--style=.style.yapf"]
1616
# args: [--recursive --parallel --style google ]

labelbox/client.py

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -547,19 +547,9 @@ def create_dataset(self, iam_integration=IAMIntegration._DEFAULT, **kwargs):
547547
"""
548548
dataset = self._create(Entity.Dataset, kwargs)
549549

550-
if iam_integration == IAMIntegration._DEFAULT:iam_integration = self.get_organization().get_default_iam_integration()
551-
552-
553-
554-
555-
556-
557-
558-
559-
560-
561-
562-
550+
if iam_integration == IAMIntegration._DEFAULT:
551+
iam_integration = self.get_organization(
552+
).get_default_iam_integration()
563553

564554
if iam_integration is None:
565555
return dataset

0 commit comments

Comments
 (0)