Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jun 27, 2024
1 parent 8497aa0 commit 4ca5df6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions felt/core/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -521,8 +521,8 @@ def create_layer_groups(self,
]

def apply_layer_groups_updates(self,
map_id: str,
group_details: List[CreatedGroupDetails]) \
map_id: str,
group_details: List[CreatedGroupDetails]) \
-> QgsNetworkReplyContent:
"""
Updates layer group details
Expand Down
3 changes: 2 additions & 1 deletion felt/core/map_uploader.py
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,8 @@ def run(self):
1 + # create map call
len(self.layers) + # layer exports
len(self.layers) + # layer uploads
(1 if self.project_structure.has_groups() else 0) # for final group update
(1 if self.project_structure.has_groups()
else 0) # for final group update
)

self.feedback = QgsFeedback()
Expand Down

0 comments on commit 4ca5df6

Please sign in to comment.