Skip to content

Commit a5389c0

Browse files
Merge branch 'fix/python_3_12_compatibility' of https://github.com/Geode-solutions/OpenGeodeWeb-Back into fix/python_3_12_compatibility
2 parents 69b112c + 8f3ba13 commit a5389c0

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/opengeodeweb_back/utils_functions.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,7 @@ def versions(list_packages: list):
7070
list_with_versions = []
7171
for package in list_packages:
7272
list_with_versions.append(
73-
{
74-
"package": package,
75-
"version": metadata.distribution(package).version
76-
77-
}
73+
{"package": package, "version": metadata.distribution(package).version}
7874
)
7975
return list_with_versions
8076

0 commit comments

Comments
 (0)