Skip to content

Commit

Permalink
black formatter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dieuska committed Sep 3, 2024
1 parent 0b6972b commit f24a046
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions brdr/aligner.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,9 +294,9 @@ def process_dict_thematic(
"""
dict_result = {}
dict_thematic=self.dict_thematic
dict_thematic = self.dict_thematic
if self.multi_as_single_modus:
dict_thematic=multipolygons_to_singles(dict_thematic)
dict_thematic = multipolygons_to_singles(dict_thematic)
for key in dict_thematic:
self.logger.feedback_info("thematic id to process: " + str(key))
try:
Expand All @@ -309,7 +309,7 @@ def process_dict_thematic(
except ValueError as e:
self.logger.feedback_warning(str(e))
if self.multi_as_single_modus:
dict_result=merge_process_results(dict_result)
dict_result = merge_process_results(dict_result)
self.dict_result = dict_result
return self.dict_result

Expand Down

0 comments on commit f24a046

Please sign in to comment.