Skip to content

Commit 180fb4f

Browse files
committed
Fixed linting issues
1 parent a3a4f17 commit 180fb4f

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

geost/read.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -558,9 +558,8 @@ def get_bro_objects_from_bbox(
558558
try:
559559
object = SoilCore(bro_object)
560560
except (TypeError, AttributeError) as err:
561-
pass
562-
# print("Cant read a soil core")
563-
# print(err)
561+
print("Cant read a soil core")
562+
print(err)
564563
bro_parsed_objects.append(object.df)
565564

566565
dataframe = pd.concat(bro_parsed_objects).reset_index()
@@ -631,9 +630,8 @@ def get_bro_objects_from_geometry(
631630
object = SoilCore(bro_object)
632631
print(i)
633632
except (TypeError, AttributeError) as err:
634-
pass
635-
# print("Cant read a soil core")
636-
# print(err)
633+
print("Cant read a soil core")
634+
print(err)
637635
bro_parsed_objects.append(object.df)
638636

639637
dataframe = pd.concat(bro_parsed_objects).reset_index()

0 commit comments

Comments
 (0)