File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -1742,9 +1742,12 @@ def stability_level(self):
17421742
17431743 @property
17441744 def is_implicit (self ):
1745- if "implict_package" not in self ._this_yml :
1746- return False
1747- return self ._this_yml ["implict_package" ]
1745+ if "implicit_package" in self ._this_yml :
1746+ return self ._this_yml ["implicit_package" ]
1747+ # Compatibility for legacy misspelling.
1748+ if "implict_package" in self ._this_yml :
1749+ return self ._this_yml ["implict_package" ]
1750+ return False
17481751
17491752 @property
17501753 def architecture (self ):
Original file line number Diff line number Diff line change @@ -321,7 +321,7 @@ properties:
321321 ' stability_level ' :
322322 type : string
323323 enum : ['stable', 'unstable', 'broken']
324- ' implict_package ' :
324+ ' implicit_package ' :
325325 type : boolean
326326 ' source ' : { $ref: '#/definitions/nested_source' }
327327 ' from_source ' :
You can’t perform that action at this time.
0 commit comments