geo-explorer 0.9.6__tar.gz → 0.9.8__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: geo-explorer
3
- Version: 0.9.6
3
+ Version: 0.9.8
4
4
  Summary: Explore geodata interactively.
5
5
  License: MIT
6
6
  Author: Morten Letnes
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "geo-explorer"
3
- version = "0.9.6"
3
+ version = "0.9.8"
4
4
  description = "Explore geodata interactively."
5
5
  authors = ["Morten Letnes <morten.letnes@ssb.no>"]
6
6
  license = "MIT"
@@ -28,7 +28,7 @@ class LocalFileSystem(AbstractFileSystem):
28
28
  if not detail:
29
29
  return list(relevant_paths)
30
30
  with ThreadPoolExecutor() as executor:
31
- return list(executor.map(get_file_info, relevant_paths))
31
+ return {x["name"]: x for x in executor.map(get_file_info, relevant_paths)}
32
32
 
33
33
  @classmethod
34
34
  def ls(cls, path: str, detail: bool = False, **kwargs):