浏览代码

chore(deps): upgrade black to v23.1.0

NateScarlet 2 年之前
父节点
当前提交
f5696c2f52
共有 3 个文件被更改,包括 1 次插入3 次删除
  1. 1 1
      dev-requirements.txt
  2. 0 1
      scripts/fetch_test.py
  3. 0 1
      scripts/filetools.py

+ 1 - 1
dev-requirements.txt

@@ -7,4 +7,4 @@ icalendar==4.1.0
 # test
 pytest==7.2.1
 coverage==6.5.0
-black==22.12.0
+black==23.1.0

+ 0 - 1
scripts/fetch_test.py

@@ -49,7 +49,6 @@ def _description_parsing_cases():
 
 @pytest.mark.parametrize("case", _description_parsing_cases())
 def test_parse_description(case):
-
     year, description, expected = case["year"], case["description"], case["expected"]
     assert _normalize(DescriptionParser(description, year).parse()) == _normalize(
         expected

+ 0 - 1
scripts/filetools.py

@@ -6,5 +6,4 @@ __dirname__ = os.path.abspath(os.path.dirname(__file__))
 
 
 def workspace_path(*other):
-
     return os.path.join(os.path.dirname(__dirname__), *other)