コード例 #1
0
ファイル: userinput.py プロジェクト: Zahaib/ABRSim
 def __init__(self,
              indent_increment=1,
              max_help_position=48,
              width=200,
              short_first=1):
     HelpFormatter.__init__(self, indent_increment, max_help_position,
                            width, short_first)
コード例 #2
0
ファイル: szradm.py プロジェクト: notbrain/scalarizr
 def __init__(self,
              indent_increment=0,
              max_help_position=24,
              width=None,
              short_first=1):
     HelpFormatter.__init__(self, indent_increment, max_help_position,
                            width, short_first)
コード例 #3
0
ファイル: optik_ext.py プロジェクト: 173210/depot_tools
 def __init__ (self,
               indent_increment=0,
               max_help_position=24,
               width=79,
               short_first=0):
     HelpFormatter.__init__ (
         self, indent_increment, max_help_position, width, short_first)
コード例 #4
0
ファイル: userinput.py プロジェクト: Zahaib/ABRSim
 def __init__(self,
              indent_increment=1,
              max_help_position=48,
              width=200,
              short_first=1):
     HelpFormatter.__init__ (
         self, indent_increment, max_help_position, width, short_first)
コード例 #5
0
ファイル: optik_ext.py プロジェクト: iqbalamr/tubes-basdat
 def __init__(
     self,
     indent_increment: int = 0,
     max_help_position: int = 24,
     width: int = 79,
     short_first: int = 0,
 ) -> None:
     HelpFormatter.__init__(self, indent_increment, max_help_position, width, short_first)
コード例 #6
0
ファイル: uploadopts2wiki.py プロジェクト: eunchong/infra
 def __init__(self,
        indent_increment=2,
        max_help_position=24,
        width=None,
        short_first=1):
   HelpFormatter.__init__(
     self, indent_increment, max_help_position, width, short_first)
   self._dl_open = False
コード例 #7
0
ファイル: optgroup.py プロジェクト: wadoon/pytagsfs
 def __init__(self, *args, **kwargs):
     HelpFormatter.__init__(self, *args, **kwargs)
     self.help_position = 0
コード例 #8
0
ファイル: optgroup.py プロジェクト: wadoon/pytagsfs
 def __init__(self, *args, **kwargs):
     HelpFormatter.__init__(self, *args, **kwargs)
     self.help_position = 0