We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9570eaa commit 096ea7aCopy full SHA for 096ea7a
.github/workflows/run-tests.yml
@@ -29,6 +29,10 @@ jobs:
29
run: |
30
black --check --line-length 120 tableauserverclient samples test
31
32
+ - name: Format with black
33
+ run: |
34
+ black --check --line-length 120 tableauserverclient samples test
35
+
36
- name: Test with pytest
37
if: always()
38
tableauserverclient/models/project_item.py
@@ -9,9 +9,6 @@
9
from typing import List, Optional
10
11
12
-from typing import List, Optional, TYPE_CHECKING
13
-
14
15
class ProjectItem(object):
16
class ContentPermissions:
17
LockedToProject: str = "LockedToProject"
0 commit comments