spells-mtg 0.9.1__tar.gz → 0.9.2__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.

Potentially problematic release.


This version of spells-mtg might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: spells-mtg
3
- Version: 0.9.1
3
+ Version: 0.9.2
4
4
  Summary: analaysis of 17Lands.com public datasets
5
5
  Author-Email: Joel Barnes <oelarnes@gmail.com>
6
6
  License: MIT
@@ -11,7 +11,7 @@ dependencies = [
11
11
  ]
12
12
  requires-python = ">=3.11"
13
13
  readme = "README.md"
14
- version = "0.9.1"
14
+ version = "0.9.2"
15
15
 
16
16
  [project.license]
17
17
  text = "MIT"
@@ -100,7 +100,7 @@ def cli() -> int:
100
100
  def _add(set_code: str, force_download=False):
101
101
  download_data_set(set_code, View.DRAFT, force_download=force_download)
102
102
  write_card_file(set_code, force_download=force_download)
103
- get_set_context(set_code)
103
+ get_set_context(set_code, force_download=force_download)
104
104
  download_data_set(set_code, View.GAME, force_download=force_download)
105
105
  return 0
106
106
 
@@ -16,7 +16,7 @@ def setup_logging(
16
16
  log_format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
17
17
  ):
18
18
  log_dir = Path(data_home()) / ".logs"
19
- log_dir.mkdir(exist_ok=True)
19
+ log_dir.mkdir(parents=True, exist_ok=True)
20
20
  log_file_path = log_dir / log_file_name
21
21
 
22
22
  handler = logging.handlers.RotatingFileHandler(
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes