Skip to content

Commit

Permalink
Fixed linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik-Geo committed Dec 19, 2024
1 parent a3a4f17 commit 180fb4f
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions geost/read.py
Original file line number Diff line number Diff line change
Expand Up @@ -558,9 +558,8 @@ def get_bro_objects_from_bbox(
try:
object = SoilCore(bro_object)
except (TypeError, AttributeError) as err:
pass
# print("Cant read a soil core")
# print(err)
print("Cant read a soil core")
print(err)
bro_parsed_objects.append(object.df)

dataframe = pd.concat(bro_parsed_objects).reset_index()
Expand Down Expand Up @@ -631,9 +630,8 @@ def get_bro_objects_from_geometry(
object = SoilCore(bro_object)
print(i)
except (TypeError, AttributeError) as err:
pass
# print("Cant read a soil core")
# print(err)
print("Cant read a soil core")
print(err)
bro_parsed_objects.append(object.df)

dataframe = pd.concat(bro_parsed_objects).reset_index()
Expand Down

0 comments on commit 180fb4f

Please sign in to comment.