anoy 0.2.0__py3-none-any.whl → 0.2.1__py3-none-any.whl

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.4
2
2
  Name: anoy
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: This is a library that provides simple type checking for YAML.
5
5
  Author-email: masaniki <masaniki.software@gmail.com>
6
6
  License-Expression: MIT
@@ -0,0 +1,10 @@
1
+ cli.py,sha256=xc2BX8qUOCrMhA2hE5TlvFP1hRxroNj8wJGot128sNw,915
2
+ anoy-0.2.1.dist-info/licenses/LICENSE.txt,sha256=nsHvySI1U7YZgAX4K3rJsWli_GfXy2syPI-MtGPwjlo,1062
3
+ anoyModule/__init__.py,sha256=iWletkxm7jDc7oFqp4yDS_4fUYZBny04q2VxkTpIDHo,111
4
+ anoyModule/anoyErrors.py,sha256=2DST9_IenRIyXsABl6vWhMU0D5wqJ2aSs7zkm0DABm4,646
5
+ anoyModule/dictTraversal.py,sha256=LF8T1ZIcWzzpUiBL6ewlvlYCHLttaFjXMdo5kSZB_sA,26055
6
+ anoy-0.2.1.dist-info/METADATA,sha256=I4OykYTvokX2vXzeKB2iSAijC1mMZcwLU8tNZ-jRa4w,3970
7
+ anoy-0.2.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
8
+ anoy-0.2.1.dist-info/entry_points.txt,sha256=_lpL6R97giGseZcV0r5QwdX4zRwoZLzRHUxyBZl_iYI,34
9
+ anoy-0.2.1.dist-info/top_level.txt,sha256=QExj2OlPPcJU_7B1gwNcL2iYOcgYJBpDZsUArRCaXJw,15
10
+ anoy-0.2.1.dist-info/RECORD,,
@@ -345,7 +345,7 @@ class DictTraversal():
345
345
  if(confChild is None): #Noneの処理方法は不明。
346
346
  # nestになるlistとdictだけ対処する。
347
347
  if(type(childValue)==list):
348
- for i in len(childValue):
348
+ for i in range(len(childValue)):
349
349
  element=childValue[i]
350
350
  newPath=self._curPath+[i]
351
351
  self._visitQueue.append((i,element))
cli.py CHANGED
@@ -5,7 +5,7 @@ import yaml
5
5
 
6
6
  from anoyModule import DictTraversal
7
7
 
8
- VERSION="v0.2.0"
8
+ VERSION="v0.2.1"
9
9
 
10
10
  def main():
11
11
  """
@@ -1,10 +0,0 @@
1
- cli.py,sha256=kGdZrdmUrI0dCKrbU_dUjrIGNNueV0B8DwQ29zUwxiM,915
2
- anoy-0.2.0.dist-info/licenses/LICENSE.txt,sha256=nsHvySI1U7YZgAX4K3rJsWli_GfXy2syPI-MtGPwjlo,1062
3
- anoyModule/__init__.py,sha256=iWletkxm7jDc7oFqp4yDS_4fUYZBny04q2VxkTpIDHo,111
4
- anoyModule/anoyErrors.py,sha256=2DST9_IenRIyXsABl6vWhMU0D5wqJ2aSs7zkm0DABm4,646
5
- anoyModule/dictTraversal.py,sha256=zdBHrrHghnvL_58ateZMpFvEYhi3Qi1absvk2OSbb5U,26048
6
- anoy-0.2.0.dist-info/METADATA,sha256=i4KpdNglLMltxEsdkfwJk4nB4kt60c4Xc5TjGkXIYdQ,3970
7
- anoy-0.2.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
8
- anoy-0.2.0.dist-info/entry_points.txt,sha256=_lpL6R97giGseZcV0r5QwdX4zRwoZLzRHUxyBZl_iYI,34
9
- anoy-0.2.0.dist-info/top_level.txt,sha256=QExj2OlPPcJU_7B1gwNcL2iYOcgYJBpDZsUArRCaXJw,15
10
- anoy-0.2.0.dist-info/RECORD,,
File without changes