File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ def add_options(cls, parser):
25
25
"--application-import-names" ,
26
26
default = "" ,
27
27
action = "store" ,
28
- type = "string" ,
28
+ type = str ,
29
29
help = "Import names to consider as application-specific" ,
30
30
parse_from_config = True ,
31
31
comma_separated_list = True ,
@@ -35,7 +35,7 @@ def add_options(cls, parser):
35
35
"--application-package-names" ,
36
36
default = "" ,
37
37
action = "store" ,
38
- type = "string" ,
38
+ type = str ,
39
39
help = ("Package names to consider as company-specific "
40
40
"(used only by 'appnexus' style)" ),
41
41
parse_from_config = True ,
@@ -46,7 +46,7 @@ def add_options(cls, parser):
46
46
"--import-order-style" ,
47
47
default = DEFAULT_IMPORT_ORDER_STYLE ,
48
48
action = "store" ,
49
- type = "string" ,
49
+ type = str ,
50
50
help = ("Style to follow. Available: " +
51
51
", " .join (cls .list_available_styles ())),
52
52
parse_from_config = True ,
You can’t perform that action at this time.
0 commit comments