leetcode-study-tool 1.2.2__tar.gz → 1.2.3__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.
Files changed (24) hide show
  1. {leetcode-study-tool-1.2.2 → leetcode-study-tool-1.2.3}/PKG-INFO +1 -1
  2. {leetcode-study-tool-1.2.2 → leetcode-study-tool-1.2.3}/leetcode_study_tool/creator.py +0 -1
  3. {leetcode-study-tool-1.2.2 → leetcode-study-tool-1.2.3}/leetcode_study_tool.egg-info/PKG-INFO +1 -1
  4. {leetcode-study-tool-1.2.2 → leetcode-study-tool-1.2.3}/pyproject.toml +1 -1
  5. {leetcode-study-tool-1.2.2 → leetcode-study-tool-1.2.3}/LICENSE.txt +0 -0
  6. {leetcode-study-tool-1.2.2 → leetcode-study-tool-1.2.3}/README.md +0 -0
  7. {leetcode-study-tool-1.2.2 → leetcode-study-tool-1.2.3}/leetcode_study_tool/__init__.py +0 -0
  8. {leetcode-study-tool-1.2.2 → leetcode-study-tool-1.2.3}/leetcode_study_tool/cli.py +0 -0
  9. {leetcode-study-tool-1.2.2 → leetcode-study-tool-1.2.3}/leetcode_study_tool/constants/graphql.py +0 -0
  10. {leetcode-study-tool-1.2.2 → leetcode-study-tool-1.2.3}/leetcode_study_tool/constants/leetcode_to_neetcode.py +0 -0
  11. {leetcode-study-tool-1.2.2 → leetcode-study-tool-1.2.3}/leetcode_study_tool/formatters.py +0 -0
  12. {leetcode-study-tool-1.2.2 → leetcode-study-tool-1.2.3}/leetcode_study_tool/outputs.py +0 -0
  13. {leetcode-study-tool-1.2.2 → leetcode-study-tool-1.2.3}/leetcode_study_tool/queries.py +0 -0
  14. {leetcode-study-tool-1.2.2 → leetcode-study-tool-1.2.3}/leetcode_study_tool.egg-info/SOURCES.txt +0 -0
  15. {leetcode-study-tool-1.2.2 → leetcode-study-tool-1.2.3}/leetcode_study_tool.egg-info/dependency_links.txt +0 -0
  16. {leetcode-study-tool-1.2.2 → leetcode-study-tool-1.2.3}/leetcode_study_tool.egg-info/entry_points.txt +0 -0
  17. {leetcode-study-tool-1.2.2 → leetcode-study-tool-1.2.3}/leetcode_study_tool.egg-info/requires.txt +0 -0
  18. {leetcode-study-tool-1.2.2 → leetcode-study-tool-1.2.3}/leetcode_study_tool.egg-info/top_level.txt +0 -0
  19. {leetcode-study-tool-1.2.2 → leetcode-study-tool-1.2.3}/setup.cfg +0 -0
  20. {leetcode-study-tool-1.2.2 → leetcode-study-tool-1.2.3}/tests/test_cli.py +0 -0
  21. {leetcode-study-tool-1.2.2 → leetcode-study-tool-1.2.3}/tests/test_creator.py +0 -0
  22. {leetcode-study-tool-1.2.2 → leetcode-study-tool-1.2.3}/tests/test_formatters.py +0 -0
  23. {leetcode-study-tool-1.2.2 → leetcode-study-tool-1.2.3}/tests/test_outputs.py +0 -0
  24. {leetcode-study-tool-1.2.2 → leetcode-study-tool-1.2.3}/tests/test_queries.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: leetcode-study-tool
3
- Version: 1.2.2
3
+ Version: 1.2.3
4
4
  Summary: A tool for studying Leetcode with Python
5
5
  Author-email: John Sutor <johnsutor3@gmail.com>
6
6
  License: MIT License
@@ -87,7 +87,6 @@ class ProblemsCreator:
87
87
  input = re.sub(r"[;\n\r]", " ", input)
88
88
  input = input.replace("</strong>", "</strong><br>")
89
89
  input = re.sub(r"(<br>){2,}", "<br>", input)
90
- print(input)
91
90
  return input
92
91
 
93
92
  def _save_output(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: leetcode-study-tool
3
- Version: 1.2.2
3
+ Version: 1.2.3
4
4
  Summary: A tool for studying Leetcode with Python
5
5
  Author-email: John Sutor <johnsutor3@gmail.com>
6
6
  License: MIT License
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "leetcode-study-tool"
7
- version = "1.2.2"
7
+ version = "1.2.3"
8
8
  description = "A tool for studying Leetcode with Python"
9
9
  authors = [{name="John Sutor", email="johnsutor3@gmail.com" }]
10
10
  license = {file = "LICENSE.txt"}