Fix uppercase and lowercase check (#461)

This commit is contained in:
Harutaka Kawamura
2022-10-23 01:49:13 +09:00
committed by GitHub
parent 2c24e2fd28
commit b75ea94f58
11 changed files with 151 additions and 35 deletions

View File

@@ -1,2 +1,3 @@
import mod.SUBMOD as submod
from mod import BAD as bad
import mod.CONST as const
from mod import CONSTANT as constant
from mod import ANOTHER_CONSTANT as another_constant

View File

@@ -1,2 +1,3 @@
import mod.submod as SubMod
from mod import bad as Bad
import modl.lowercase as Lower
from mod import lowercase as Lowercase
from mod import another_lowercase as AnotherLowercase

View File

@@ -1,2 +1,3 @@
import mod.SubMod as submod
import mod.Camel as camel
from mod import CamelCase as camelcase
from mod import AnotherCamelCase as another_camelcase

View File

@@ -1,2 +1,3 @@
import mod.SubMod as SUBMOD
import mod.Camel as CAMEL
from mod import CamelCase as CAMELCASE
from mod import AnotherCamelCase as ANOTHER_CAMELCASE

View File

@@ -1,2 +1,2 @@
import mod.SubMod as SM
import mod.CaMel as CM
from mod import CamelCase as CC