index
int64
0
731k
package
stringlengths
2
98
name
stringlengths
1
76
docstring
stringlengths
0
281k
code
stringlengths
4
8.19k
signature
stringlengths
2
42.8k
embed_func_code
sequencelengths
768
768
9,399
asyncclick.types
DateTime
The DateTime type converts date strings into `datetime` objects. The format strings which are checked are configurable, but default to some common (non-timezone aware) ISO 8601 formats. When specifying *DateTime* formats, you should only pass a list or a tuple. Other iterables, like generators, may lead to surprising results. The format strings are processed using ``datetime.strptime``, and this consequently defines the format strings which are allowed. Parsing is tried using each format, in order, and the first format which parses successfully is used. :param formats: A list or tuple of date format strings, in the order in which they should be tried. Defaults to ``'%Y-%m-%d'``, ``'%Y-%m-%dT%H:%M:%S'``, ``'%Y-%m-%d %H:%M:%S'``.
class DateTime(ParamType): """The DateTime type converts date strings into `datetime` objects. The format strings which are checked are configurable, but default to some common (non-timezone aware) ISO 8601 formats. When specifying *DateTime* formats, you should only pass a list or a tuple. Other iterables, like generators, may lead to surprising results. The format strings are processed using ``datetime.strptime``, and this consequently defines the format strings which are allowed. Parsing is tried using each format, in order, and the first format which parses successfully is used. :param formats: A list or tuple of date format strings, in the order in which they should be tried. Defaults to ``'%Y-%m-%d'``, ``'%Y-%m-%dT%H:%M:%S'``, ``'%Y-%m-%d %H:%M:%S'``. """ name = "datetime" def __init__(self, formats: t.Optional[t.Sequence[str]] = None): self.formats: t.Sequence[str] = formats or [ "%Y-%m-%d", "%Y-%m-%dT%H:%M:%S", "%Y-%m-%d %H:%M:%S", ] async def to_info_dict(self) -> t.Dict[str, t.Any]: info_dict = await super().to_info_dict() info_dict["formats"] = self.formats return info_dict def get_metavar(self, param: "Parameter") -> str: return f"[{'|'.join(self.formats)}]" def _try_to_convert_date(self, value: t.Any, format: str) -> t.Optional[datetime]: try: return datetime.strptime(value, format) except ValueError: return None def convert( self, value: t.Any, param: t.Optional["Parameter"], ctx: t.Optional["Context"] ) -> t.Any: if isinstance(value, datetime): return value for format in self.formats: converted = self._try_to_convert_date(value, format) if converted is not None: return converted formats_str = ", ".join(map(repr, self.formats)) self.fail( ngettext( "{value!r} does not match the format {format}.", "{value!r} does not match the formats {formats}.", len(self.formats), ).format(value=value, format=formats_str, formats=formats_str), param, ctx, ) def __repr__(self) -> str: return "DateTime"
(formats: Optional[Sequence[str]] = None)
[ 0.053504008799791336, -0.018635785207152367, -0.0164983831346035, 0.008451111614704132, -0.019482865929603577, -0.01898052729666233, -0.010746111162006855, 0.03429693728685379, 0.03132230415940285, -0.06473276019096375, 0.013080509379506111, 0.057168129831552505, 0.0015550341922789812, -0.0005128041957505047, 0.0017914288910105824, 0.05228263512253761, -0.0288204587996006, 0.09715823829174042, 0.008963300846517086, -0.01522776111960411, 0.024506254121661186, -0.013829092495143414, -0.04416641592979431, 0.01576949842274189, 0.03319375962018967, 0.01613394170999527, 0.03841414675116539, -0.05862589552998543, -0.0652843490242958, -0.011937933973968029, 0.025767026469111443, 0.01973896101117134, -0.02194531261920929, 0.030199427157640457, 0.009357292205095291, -0.02019205130636692, -0.06256581097841263, 0.05090366676449776, -0.12197968363761902, 0.03301646560430527, -0.011130251921713352, -0.00954936258494854, 0.007810876239091158, -0.05031267926096916, -0.030888913199305534, -0.009633085690438747, -0.05890168994665146, 0.07206099480390549, -0.10401368886232376, 0.029884235933423042, 0.07217919081449509, -0.027224794030189514, 0.00693917041644454, -0.028840158134698868, -0.06284160166978836, 0.04219646006822586, 0.03378474712371826, 0.11567582935094833, 0.03673968091607094, 0.01568085141479969, 0.004272342659533024, 0.037035174667835236, -0.017995549365878105, 0.041723672300577164, -0.03408024087548256, 0.0064910054206848145, 0.03555770963430405, -0.07635550200939178, 0.007549856789410114, 0.05724692717194557, 0.02775668166577816, 0.0017606483306735754, -0.03242547810077667, 0.02718539535999298, 0.060280658304691315, 0.008948526345193386, -0.06548134237527847, 0.04664856195449829, 0.027559686452150345, 0.0009972903644666076, 0.011081003583967686, 0.01046046707779169, -0.0582319051027298, -0.042235858738422394, -0.007559706922620535, -0.03142080083489418, -0.030652517452836037, -0.013208555988967419, 0.0045998478308320045, 0.042787447571754456, -0.03423783928155899, -0.04085689038038254, 0.029135651886463165, 0.0454665869474411, -0.02742178924381733, -0.011356797069311142, -0.0013986688572913408, -0.04006890952587128, -0.0622900128364563, 0.020152650773525238, -0.016537781804800034, -0.06339319050312042, -0.03870964050292969, -0.05039148032665253, 0.016882523894309998, -0.06315679103136063, -0.007805951405316591, 0.020408745855093002, 0.010972656309604645, -0.03843384608626366, -0.05641954392194748, -0.05704993009567261, -0.0621718168258667, -0.02460475265979767, 0.030199427157640457, 0.000346896966220811, 0.03841414675116539, -0.021689217537641525, 0.013760143890976906, -0.022812092676758766, -0.004553060978651047, 0.06571773439645767, -0.014942117966711521, -0.0019182448741048574, 0.038670238107442856, -0.01794630102813244, 0.0064910054206848145, -0.02763848565518856, 0.021630119532346725, 0.003346462966874242, -0.013376002199947834, 0.06571773439645767, -0.003575470531359315, -0.008923901244997978, -0.013149457052350044, -0.012292526662349701, -0.051534052938222885, 0.00266436580568552, -0.06638751924037933, 0.0656389370560646, -0.002713614609092474, -0.024663850665092468, 0.017897052690386772, -0.037941355258226395, -0.003644418902695179, -0.05953207612037659, 0.014223083853721619, -0.020172351971268654, -0.013710894621908665, 0.099285788834095, -0.0030140329618006945, -0.0008704743813723326, -0.04491500183939934, 0.022102907299995422, -0.0024550578091293573, -0.052558429539203644, 0.018064498901367188, -0.04771233722567558, -0.0015796585939824581, -0.014282181859016418, 0.005456778686493635, -0.029037153348326683, 0.022536298260092735, 0.029864534735679626, 0.044205814599990845, 0.09085437655448914, 0.016508232802152634, -0.015306559391319752, 0.025018442422151566, -0.016764327883720398, 0.002088153501972556, 0.018300892785191536, 0.01565130241215229, -0.014203383587300777, 0.05771971493959427, 0.043693628162145615, 0.010302870534360409, 0.04810633137822151, 0.0029278474394232035, -0.016508232802152634, 0.04503319784998894, -0.005988666787743568, -0.049839891493320465, 0.012952461838722229, 0.020999733358621597, 0.048657916486263275, -0.03981281444430351, 0.033922646194696426, -0.03616839647293091, 0.03851264342665672, 0.02358037605881691, 0.025806425139307976, 0.01632108725607395, 0.05551336333155632, -0.022555997595191002, 0.009032249450683594, -0.011671990156173706, -0.006515630055218935, 0.07426735013723373, 0.03616839647293091, 0.013080509379506111, -0.012716067023575306, 0.025865525007247925, -0.04574238136410713, 0.018330441787838936, -0.027283892035484314, 0.04231465980410576, -0.015592203475534916, -0.060556452721357346, -0.058862291276454926, -0.03819745033979416, -0.0743461474776268, -0.008815553970634937, 0.008411712944507599, -0.003444960806518793, -0.05641954392194748, 0.054922379553318024, -0.021571019664406776, -0.04641216620802879, -0.004274805076420307, 0.0909331738948822, 0.0537010058760643, -0.019019925966858864, -0.004412701819092035, 0.14160044491291046, 0.005574976094067097, 0.029628140851855278, -0.03266187384724617, -0.026555009186267853, -0.030081231147050858, -0.004634321667253971, -0.03356805443763733, 0.012716067023575306, 0.021354325115680695, 0.015089863911271095, 0.009214470162987709, 0.036306291818618774, -0.030258527025580406, -0.030100930482149124, -0.004649096634238958, 0.029549341648817062, 0.02826887182891369, -0.0328194685280323, 0.0053878300823271275, 0.0006426981999538839, -0.062250614166259766, -0.021236127242445946, 0.011307548731565475, -0.025373036041855812, 0.009391766041517258, 0.020231449976563454, 0.0028022625483572483, -0.010746111162006855, 0.0012564626522362232, -0.057956110686063766, -0.011258299462497234, 0.007643430028110743, -0.043181437999010086, 0.04243285581469536, -0.01940406858921051, 0.00797832291573286, 0.014420079067349434, -0.055986154824495316, 0.06729370355606079, -0.029864534735679626, -0.059492677450180054, 0.009667559526860714, -0.02042844519019127, 0.006249685771763325, 0.010736261494457722, -0.020329948514699936, 0.014725422486662865, -0.04467860609292984, -0.004678646102547646, -0.05287362262606621, 0.01931541971862316, 0.02555033192038536, -0.06689970940351486, -0.006313709542155266, 0.03242547810077667, -0.03559710830450058, -0.055986154824495316, 0.014262482523918152, -0.012292526662349701, 0.02555033192038536, 0.001082244678400457, -0.010933256708085537, 0.02718539535999298, -0.0533464141190052, 0.034730326384305954, -0.006274310406297445, -0.013691195286810398, 0.04645156487822533, -0.04247225448489189, -0.03256337717175484, 0.03475002571940422, -0.028446167707443237, -0.05385860055685043, 0.023718271404504776, -0.09258794039487839, 0.012125080451369286, 0.05216443911194801, 0.04180246964097023, 0.023875867947936058, -0.029746338725090027, -0.017246965318918228, -0.03961581736803055, -0.04700315371155739, -0.04645156487822533, -0.025432134047150612, -0.0017163243610411882, 0.003922675270587206, -0.041487276554107666, -0.024624451994895935, 0.004146757535636425, 0.04601817578077316, -0.016399884596467018, 0.011327248066663742, 0.018202394247055054, 0.04050229862332344, 0.010224072262644768, 0.017581859603524208, 0.06315679103136063, -0.024860847741365433, 0.037941355258226395, -0.024407757446169853, -0.07548872381448746, 0.022102907299995422, -0.006195512134581804, 0.04897310957312584, 0.013494200073182583, 0.01582859829068184, 0.002064760308712721, 0.008175318129360676, 0.024072865024209023, -0.017276516184210777, -0.0052154590375721455, -0.062368813902139664, 0.055828556418418884, 0.03266187384724617, 0.02064513973891735, 0.009943353943526745, -0.014745121821761131, -0.03029792569577694, 0.0012589250691235065, 0.009490263648331165, 0.03563650697469711, 0.03622749447822571, 0.04479680210351944, 0.00901747401803732, 0.022812092676758766, 0.021984711289405823, -0.008411712944507599, 0.041605472564697266, -0.0007633580244146287, -0.035853203386068344, 0.03599109873175621, -0.018813081085681915, -0.0054518538527190685, -0.008012796752154827, 0.018547138199210167, -0.003107605967670679, 0.03857174143195152, -0.03360745310783386, 0.029312947764992714, -0.014577675610780716, 0.046845559030771255, -0.037941355258226395, 0.0011930547188967466, 0.000028298882170929573, -0.025924623012542725, 0.01150454394519329, 0.03254367411136627, -0.11023874580860138, 0.0069046965800225735, -0.02572762779891491, -0.005988666787743568, 0.05106126517057419, -0.06753009557723999, 0.02312728576362133, 0.04688495770096779, -0.03762616217136383, 0.039064232259988785, 0.014715572819113731, 0.0018739207880571485, -0.03599109873175621, 0.06898786127567291, 0.007815801538527012, -0.02832796983420849, 0.011258299462497234, -0.011612891219556332, -0.023501576855778694, -0.015641452744603157, 0.004750056657940149, -0.01325780525803566, -0.0744643434882164, -0.0020869222935289145, 0.04207826405763626, 0.005565125960856676, -0.012164479121565819, 0.008303365670144558, -0.019650312140583992, 0.01455797627568245, 0.03214968368411064, -0.010391518473625183, 0.021354325115680695, 0.05972906947135925, 0.06697850674390793, -0.07820726186037064, 0.05665593966841698, 0.0016559944488108158, -0.06327499449253082, -0.016764327883720398, -0.027047498151659966, 0.0165279321372509, 0.02742178924381733, -0.012351625598967075, 0.05098246410489082, -0.02415166236460209, 0.03187388926744461, 0.009967978112399578, -0.02155132032930851, 0.0246441513299942, 0.05251903086900711, 0.082107774913311, 0.0008569309138692915, 0.023619774729013443, 0.01116965152323246, -0.02984483540058136, -0.03541981056332588, 0.0073282369412481785, 0.01952226646244526, -0.0784042552113533, -0.05149465426802635, 0.054016198962926865, -0.012292526662349701, 0.0026397411711513996, -0.035400111228227615, 0.04542718827724457, 0.019985204562544823, -0.017365163192152977, 0.039005130529403687, 0.04028560221195221, -0.005269632674753666, 0.003314451314508915, -0.01492241770029068, 0.0028933731373399496, 0.04412701725959778, -0.005313956644386053, 0.008672731928527355, -0.03211028501391411, 0.0779314637184143, 0.032799769192934036, -0.04637276753783226, 0.034553032368421555, -0.0579955093562603, 0.04294504597783089, 0.013947289437055588, -0.040935687720775604, -0.004742669407278299, 0.06792408972978592, -0.0016129015712067485, -0.01706966944038868, -0.032228484749794006, -0.01794630102813244, 0.026692906394600868, 0.025648828595876694, -0.029549341648817062, -0.07812846451997757, -0.004565373528748751, -0.04113268479704857, 0.02166951820254326, 0.009849781170487404, 0.014725422486662865, -0.012223578058183193, -0.0011739707551896572, 0.0270277988165617, 0.0015685776015743613, 0.003504059510305524, 0.0012441504513844848, 0.012341775000095367, -0.0059541924856603146, 0.03536071255803108, 0.04491500183939934, 0.011415896005928516, -0.026692906394600868, 0.07351876050233841, -0.001809897250495851, -0.010558964684605598, -0.03102681040763855, -0.015867996960878372, 0.006269385572522879, 0.061738427728414536, -0.006298935040831566, -0.007771477103233337, -0.04759414121508598, -0.05448898673057556, -0.018832780420780182, 0.014035937376320362, -0.02222110517323017, 0.01746366173028946, 0.04810633137822151, 0.001020067953504622, 0.014213234186172485, 0.05216443911194801, -0.021511921659111977, 0.04089628905057907, -0.015818748623132706, -0.013769993558526039, -0.06378717720508575, -0.06753009557723999, 0.003533608978614211, -0.004139370284974575, -0.0040925838984549046, -0.0022900740150362253, -0.029805436730384827, 0.05523757264018059, 0.009682334959506989, -0.0018542212201282382, -0.03268157318234444, -0.0018517588032409549, 0.001278009032830596, 0.022969689220190048, -0.018113747239112854, 0.00897315051406622, -0.006077314727008343, -0.0331149622797966, -0.019699562340974808, 0.03551831096410751, 0.00799309741705656, 0.09432150423526764, -0.030869213864207268, 0.01686282455921173, -0.042393457144498825, 0.023442478850483894, -0.0004340059822425246, -0.04365422949194908, 0.023383378982543945, -0.031007109209895134, 0.058310702443122864, -0.011071153916418552, 0.034159038215875626, -0.017562158405780792, 0.05133705958724022, 0.011159801855683327, -0.007761627435684204, 0.03995070978999138, 0.0452301949262619, -0.02200441062450409, 0.006412207148969173, -0.006456531118601561, -0.04818512871861458, 0.005471553187817335, 0.11071153730154037, -0.05890168994665146, 0.029352346435189247, 0.0032159534748643637, 0.01816299557685852, -0.002222356852144003, -0.018803231418132782, 0.007594181224703789, 0.050864268094301224, -0.015080014243721962, 0.03402114287018776, -0.04842152073979378, 0.006510705221444368, 0.03384384512901306, 0.020999733358621597, -0.039911311119794846, 0.04456041008234024, 0.019147973507642746, -0.02010340243577957, -0.0019551815930753946, -0.008382163941860199, 0.025629129260778427, 0.06788469105958939, -0.010647612623870373, -0.020861836150288582, -0.037370067089796066, 0.0005072636995464563, 0.010243772529065609, 0.01967001147568226, 0.04519079625606537, -0.06595413386821747, -0.012863813899457455, 0.009160296060144901, -0.00585077004507184, 0.01272591669112444, -0.005353355780243874, -0.023442478850483894, -0.003496672259643674, 0.02436835691332817, 0.039182428270578384, 0.03593200072646141, 0.009076572954654694, -0.024328958243131638, 0.004725432489067316, -0.0248805470764637, 0.036128997802734375, -0.04385122284293175, -0.04000981152057648, 0.028111275285482407, 0.001278009032830596, 0.026988400146365166, 0.019985204562544823, -0.003880813717842102, 0.02775668166577816, -0.024900246411561966, 0.023225782439112663, 0.008589008823037148, 0.05228263512253761, 0.004690958186984062, 0.009332667104899883, -0.004228018224239349, 0.03987191244959831, -0.042669251561164856, -0.09361232072114944, 0.04822452738881111, 0.02007385343313217, -0.08470811694860458, 0.02436835691332817, 0.04282684624195099, -0.01964046247303486, 0.036759380251169205, -0.004649096634238958, 0.00535828061401844, -0.034493930637836456, -0.058074306696653366, -0.01145529467612505, -0.07560691982507706, 0.06725430488586426, -0.00792907364666462, -0.007953697815537453, -0.011337097734212875, -0.05673473700881004, -0.02803247608244419, -0.014764821156859398, -0.0377049595117569, 0.008268890902400017, 0.007214964367449284, -0.0019280945416539907, -0.01967001147568226, 0.012883513234555721, 0.007387335412204266, -0.02527453750371933, 0.033528655767440796, -0.06130503490567207, -0.0995221883058548, 0.04156607389450073, 0.04794873297214508, 0.05078547075390816, 0.07686769217252731, -0.0023651786614209414, -0.021630119532346725, -0.034828826785087585, 0.016823425889015198, -0.023994065821170807, 0.007106617093086243, 0.034040842205286026, 0.03498642146587372, -0.005368130747228861, -0.018872180953621864, 0.022555997595191002, -0.004390539601445198, -0.05184924602508545, -0.03894603252410889, -0.023895569145679474, -0.01631123758852482, 0.037094276398420334, 0.033646851778030396, -0.04000981152057648, -0.02521543949842453, 0.06492975354194641, 0.04132968187332153, 0.04062049463391304, 0.0018185158260166645, 0.027106596156954765, 0.021393723785877228, 0.007884749211370945, 0.012174328789114952, 0.06142323464155197, -0.03541981056332588, -0.03817775100469589, 0.07273077964782715, -0.0652843490242958, -0.04270865023136139, 0.003147004870697856, -0.010233921930193901, 0.029687238857150078, -0.05342521145939827, 0.038098953664302826, -0.0020142802968621254, -0.04920950531959534, -0.03819745033979416, -0.013582848012447357, -0.05421319231390953, -0.03876873850822449, -0.03262247517704964, -0.023659173399209976, 0.027658184990286827, 0.0054518538527190685, -0.02527453750371933, 0.00668307626619935, 0.026653507724404335, 0.017178017646074295, -0.011346947401762009, -0.013996538706123829, 0.014114735648036003, 0.04440281167626381, -0.030711617320775986, 0.023678872734308243, 0.05397680029273033, 0.02103913202881813, -0.055198170244693756, 0.02375767193734646, -0.05567096173763275, 0.016636280342936516, 0.04207826405763626, 0.024959344416856766, 0.006151188164949417, 0.003166704438626766, 0.00034782037255354226, -0.012903212569653988, 0.0058901687152683735, 0.01573994942009449, 0.03224818408489227, -0.07351876050233841, -0.0030238826293498278, 0.0369366779923439, -0.016094541177153587, 0.023619774729013443, 0.04125088080763817, -0.005934493150562048, -0.02842646837234497, 0.065993532538414, -0.022871190682053566, 0.01967001147568226, -0.006052690092474222, 0.05377980321645737, 0.0075646317563951015, -0.06449636816978455, 0.05330701544880867, -0.02555033192038536, -0.031735993921756744, -0.02509724162518978, -0.023442478850483894, 0.020901234820485115, -0.006845597643405199, -0.0012866276083514094, -0.006028065923601389, 0.02318638376891613, -0.0793498307466507, -0.08793884515762329, -0.005052937660366297, 0.05354340746998787, -0.018300892785191536, -0.0018948515644297004, 0.01712876930832863, -0.05444958806037903, -0.009416390210390091, -0.04960349574685097, 0.030869213864207268, 0.033981744199991226, 0.010893858037889004, -0.004612159915268421, -0.009928579442203045, -0.060004863888025284, 0.04676675796508789 ]
9,401
asyncclick.types
__init__
null
def __init__(self, formats: t.Optional[t.Sequence[str]] = None): self.formats: t.Sequence[str] = formats or [ "%Y-%m-%d", "%Y-%m-%dT%H:%M:%S", "%Y-%m-%d %H:%M:%S", ]
(self, formats: Optional[Sequence[str]] = None)
[ 0.0168389193713665, 0.016982227563858032, 0.020564977079629898, -0.004160466603934765, -0.039446063339710236, -0.0005648427177220583, -0.004088812042027712, 0.04410363733768463, 0.027372200042009354, 0.010282488539814949, -0.0022873610723763704, 0.06352213025093079, -0.01945432461798191, 0.009852558374404907, 0.03158193081617355, 0.06456112861633301, -0.040234267711639404, 0.05073172226548195, 0.020726200193166733, -0.006175762973725796, 0.008047749288380146, -0.029486021026968956, -0.04600249230861664, 0.04166736826300621, 0.03394654393196106, 0.06678243726491928, 0.011007995344698429, -0.05743145942687988, -0.043315429240465164, 0.0002656272263266146, 0.05793304368853569, -0.006816179025918245, -0.07233569771051407, 0.038371238857507706, 0.027139320969581604, -0.002369092544540763, -0.06563595682382584, 0.026727303862571716, -0.10375639796257019, 0.05642829090356827, 0.05542512238025665, -0.037153102457523346, -0.005311424843966961, -0.05778973549604416, -0.02584953047335148, 0.043458741158246994, 0.018970653414726257, 0.035182591527700424, -0.07179827988147736, -0.008643381297588348, 0.03815627098083496, 0.023484917357563972, 0.012253000400960445, -0.010810944251716137, -0.09558773040771484, 0.08677417039871216, 0.04628911241889, 0.1547747403383255, 0.012046991847455502, 0.018119750544428825, -0.023359520360827446, 0.027408026158809662, 0.01889899931848049, 0.0219801627099514, -0.011823070235550404, 0.018316801637411118, -0.003336434718221426, -0.04478435590863228, 0.04714897274971008, 0.07229986786842346, 0.07817557454109192, 0.007837262935936451, -0.0753093734383583, 0.03394654393196106, 0.08054018765687943, 0.017842087894678116, -0.11565112322568893, 0.03493179753422737, -0.012781456112861633, -0.0018025704193860292, 0.05320381745696068, 0.04625328630208969, -0.04485601186752319, 0.027515510097146034, 0.048367105424404144, -0.062160689383745193, 0.004823275376111269, -0.002848285250365734, 0.0182361900806427, 0.03779799863696098, -0.05395619571208954, -0.048187967389822006, 0.02889486774802208, 0.01287998165935278, -0.013103903271257877, -0.010685548186302185, -0.012432137504220009, -0.04840293526649475, -0.04983603209257126, -0.022248869761824608, 0.0019178901566192508, -0.1038280576467514, -0.05101833865046501, -0.04503514990210533, -0.013641315512359142, -0.01697327196598053, -0.009180793538689613, -0.014322037808597088, -0.012190301902592182, 0.007384940516203642, -0.019812600687146187, -0.01292476523667574, -0.0033095639664679766, -0.015226681716740131, 0.013256169855594635, -0.005933927372097969, 0.04428277164697647, -0.003168493276461959, 0.03244178742170334, -0.011088606901466846, -0.006820657756179571, 0.016068628057837486, -0.027461769059300423, 0.04625328630208969, 0.056320808827877045, -0.027784215286374092, -0.025706220418214798, -0.03369574993848801, 0.06986359506845474, -0.01618506759405136, 0.0401984378695488, 0.05169906094670296, -0.04216895252466202, -0.04872538149356842, -0.010837814770638943, -0.07509440928697586, -0.034627266228199005, 0.040090955793857574, -0.050516754388809204, 0.05642829090356827, -0.004908365663141012, 0.0011089727049693465, 0.029396452009677887, -0.047292280942201614, -0.04822379723191261, 0.021102389320731163, 0.02239217795431614, 0.007344634737819433, -0.03310459852218628, 0.09315146505832672, 0.02543751522898674, 0.009673421271145344, -0.023090815171599388, 0.01286206766963005, -0.005266640335321426, -0.08756237477064133, -0.013327824883162975, 0.00045288182445801795, 0.037941306829452515, 0.023538658395409584, 0.05055258423089981, -0.02955767698585987, 0.019579721614718437, 0.004155988339334726, 0.002463139593601227, 0.10698087513446808, -0.005181550048291683, 0.01229778490960598, 0.046539902687072754, 0.02337743528187275, 0.029378538951277733, -0.009104659780859947, -0.015647655352950096, 0.004836710635572672, 0.06456112861633301, 0.03557669371366501, 0.007935788482427597, 0.02366405539214611, -0.00829854141920805, -0.013560703955590725, 0.026171978563070297, 0.01889899931848049, -0.03351661190390587, 0.024523913860321045, 0.0378696545958519, 0.01257544755935669, -0.04044923186302185, 0.015584956854581833, -0.01786000095307827, 0.022517574951052666, 0.034161508083343506, 0.04732811078429222, -0.022983333095908165, 0.01730467565357685, -0.00643999082967639, -0.01945432461798191, -0.002264968818053603, -0.0528455413877964, 0.01594323106110096, 0.015934273600578308, -0.03048919141292572, 0.027551336213946342, -0.007702909409999847, -0.051233306527137756, 0.03240596130490303, -0.014850492589175701, 0.018916912376880646, 0.0030027911998331547, -0.055998362600803375, -0.011742458678781986, -0.02450600080192089, -0.06588674336671829, -0.0059921471402049065, 0.0018719861982390285, -0.010999037884175777, -0.03797713667154312, 0.0010485138045623899, 0.004133596085011959, -0.030095089226961136, 0.024846361950039864, 0.0762408897280693, -0.013686100021004677, -0.012656059116125107, 0.00857620406895876, 0.059867728501558304, 0.03851454704999924, 0.034161508083343506, -0.05456526204943657, -0.06051262468099594, 0.012467965483665466, -0.0224459208548069, -0.023914847522974014, -0.012145517393946648, 0.006596735678613186, 0.008871781639754772, -0.01922144554555416, 0.024058157578110695, -0.01056910865008831, -0.04485601186752319, -0.03876534104347229, 0.04310046508908272, 0.0168389193713665, -0.032334305346012115, -0.009140487760305405, 0.07724405825138092, -0.020511236041784286, -0.03908778727054596, 0.028411196544766426, -0.05273805931210518, -0.020582890138030052, 0.007608862593770027, 0.0565715990960598, -0.004594875033944845, -0.007080406881868839, -0.019060222432017326, -0.0257241353392601, 0.011840984225273132, -0.06352213025093079, 0.055711742490530014, -0.04370953142642975, 0.0013939131749793887, -0.04227643460035324, -0.0020041000097990036, 0.08025357127189636, -0.04059254005551338, -0.024183552712202072, 0.014393692836165428, -0.03262092545628548, -0.010058566927909851, 0.0033565876074135303, 0.037296414375305176, -0.006063802167773247, -0.04173902049660683, -0.02581370435655117, -0.0021362139377743006, -0.0058398800902068615, 0.035236332565546036, -0.10633598268032074, -0.012315697968006134, 0.028912780806422234, 0.012253000400960445, 0.0029624851886183023, 0.043458741158246994, 0.02581370435655117, 0.090715192258358, 0.004476196598261595, -0.017573382705450058, 0.01879151724278927, -0.07824722677469254, 0.003567074192687869, 0.01545060332864523, 0.02427312172949314, 0.009960041381418705, -0.017313633114099503, 0.01898856833577156, 0.006977403070777655, 0.021156130358576775, -0.0015193093568086624, 0.04843876138329506, -0.06294889003038406, -0.050194308161735535, -0.03301502764225006, 0.0803968757390976, 0.023449089378118515, -0.059401970356702805, -0.007796956691890955, -0.06692574173212051, -0.02108447626233101, 0.028554506599903107, 0.020976992323994637, 0.045751698315143585, 0.04134491831064224, -0.05076754838228226, 0.020170874893665314, 0.030327966436743736, 0.06226817145943642, -0.029665159061551094, -0.007837262935936451, 0.0022246630396693945, 0.00991525687277317, 0.0003834660747088492, -0.024720964953303337, 0.021657714620232582, -0.021675629541277885, 0.025831617414951324, -0.04095081612467766, -0.05008682608604431, -0.021066561341285706, -0.025222551077604294, 0.05979607626795769, -0.009646550752222538, -0.006874398794025183, 0.029378538951277733, 0.004679965320974588, -0.017268847674131393, -0.025312118232250214, -0.029288969933986664, -0.05549677461385727, 0.02575996331870556, 0.006319073028862476, 0.008728471584618092, -0.014178727753460407, -0.05825549364089966, 0.01222612988203764, 0.0020511236507445574, -0.02276836708188057, 0.037332240492105484, -0.019042309373617172, 0.008253756910562515, -0.030686242505908012, -0.01664186641573906, 0.025939099490642548, 0.018397415056824684, 0.05793304368853569, 0.020744115114212036, -0.03290754556655884, -0.0033274777233600616, -0.008629946038126945, 0.0012136560399085283, 0.017313633114099503, 0.045106805860996246, -0.007935788482427597, 0.011876811273396015, -0.060297660529613495, -0.004066419787704945, 0.002235859166830778, 0.059831902384757996, 0.0029199400451034307, 0.00758647033944726, -0.01875568926334381, 0.0023153512738645077, 0.0023467002902179956, 0.0036230545956641436, -0.0766708180308342, -0.01508337166160345, 0.006448947358876467, -0.026207806542515755, 0.03812044486403465, -0.07509440928697586, -0.04173902049660683, -0.03382114693522453, -0.0035357249435037374, 0.02108447626233101, 0.039159443229436874, -0.0012326894793659449, -0.023162469267845154, 0.018648207187652588, 0.015423732809722424, -0.021353181451559067, 0.030829552561044693, -0.009906300343573093, -0.027927525341510773, 0.017331546172499657, -0.023771537467837334, -0.021120302379131317, -0.006435512099415064, 0.013784625567495823, 0.07416289299726486, 0.029217315837740898, 0.0007025545928627253, 0.031008688732981682, -0.0621965155005455, 0.03679483011364937, 0.03894447907805443, -0.012163431383669376, 0.012539620511233807, 0.06481192260980606, 0.050158482044935226, -0.030148830264806747, 0.05384870991110802, 0.021872680634260178, -0.0678214281797409, -0.02070828713476658, -0.0523797832429409, -0.016516471281647682, 0.005356209352612495, -0.03905196115374565, 0.04499932378530502, -0.019812600687146187, -0.005571173969656229, -0.04155988246202469, 0.007241630461066961, 0.01479675155133009, 0.06886042654514313, 0.10282488167285919, -0.011634975671768188, 0.01510128565132618, -0.02038583904504776, 0.01598801650106907, -0.03330164775252342, -0.0007635732763446867, 0.05718066915869713, -0.013112859800457954, -0.05474440008401871, 0.08426624536514282, -0.009006134234368801, -0.007949223741889, -0.029235228896141052, -0.031922291964292526, -0.01945432461798191, 0.029002349823713303, -0.023395348340272903, 0.03998347371816635, 0.015647655352950096, -0.008025356568396091, -0.008992698974907398, -0.029486021026968956, 0.0392669253051281, 0.004160466603934765, -0.03421524912118912, -0.03466309234499931, 0.012118646875023842, -0.012808326631784439, -0.05198568105697632, 0.0715116634964943, -0.03351661190390587, 0.06764229387044907, 0.0523797832429409, -0.015352077782154083, -0.027336372062563896, -0.004706835839897394, 0.011070692911744118, -0.015746179968118668, -0.05452943220734596, -0.02842910960316658, 0.021818939596414566, 0.01832575909793377, -0.037332240492105484, -0.06348630785942078, -0.001201340346597135, -0.04353039711713791, 0.04747141897678375, -0.007438682019710541, -0.004138074815273285, -0.03394654393196106, 0.007581991609185934, 0.03937440738081932, -0.047256454825401306, -0.04779386520385742, -0.028267886489629745, -0.006086194422096014, -0.0023467002902179956, -0.00036667194217443466, 0.048367105424404144, 0.007205802947282791, -0.028859039768576622, 0.018083924427628517, -0.0537770576775074, 0.02108447626233101, 0.00693261856213212, -0.014205598272383213, 0.02192642167210579, -0.025706220418214798, 0.019579721614718437, 0.01337260939180851, 0.00991525687277317, 0.0099331708624959, -0.03039962239563465, -0.018684033304452896, -0.006507167126983404, 0.05456526204943657, 0.014232468791306019, -0.017940614372491837, -0.020779941231012344, 0.04134491831064224, -0.058792904019355774, -0.020779941231012344, -0.05399202182888985, -0.037618860602378845, -0.007796956691890955, -0.004281384404748678, 0.018916912376880646, -0.00820449460297823, -0.00019299259292893112, -0.01786000095307827, -0.013059118762612343, -0.007859654724597931, -0.018397415056824684, 0.011724544689059258, 0.0753093734383583, -0.012333611957728863, 0.02790961228311062, 0.012029078789055347, -0.038693685084581375, -0.009162879548966885, -0.022195126861333847, -0.020367925986647606, 0.0004321690648794174, 0.0156566109508276, -0.014734053984284401, 0.026171978563070297, -0.03679483011364937, -0.03328373283147812, 0.023502830415964127, -0.008706078864634037, 0.04553673416376114, -0.0034282426349818707, 0.007555121090263128, -0.01640898920595646, -0.0010003705974668264, 0.013112859800457954, 0.03346287086606026, 0.002879634266719222, -0.009064354002475739, 0.015074415132403374, -0.037332240492105484, -0.015110242180526257, 0.032334305346012115, 0.07609757781028748, 0.023126643151044846, -0.014062288217246532, -0.03776216879487038, 0.00846424326300621, 0.0827614963054657, -0.02090533822774887, 0.0022246630396693945, 0.021030735224485397, 0.017797304317355156, 0.05438612401485443, 0.005638350732624531, 0.020260443910956383, 0.05023013427853584, -0.008894173428416252, 0.04628911241889, -0.033122509717941284, -0.010828857310116291, 0.008334369398653507, -0.005360687617212534, -0.025939099490642548, 0.06771394610404968, -0.0010529921855777502, -0.03826375678181648, -0.02253548800945282, 0.026404857635498047, -0.008818039670586586, -0.014751967042684555, -0.03475266322493553, 0.03167149797081947, -0.017197193577885628, -0.0024967279750853777, 0.0077387369237840176, 0.019203532487154007, -0.011706630699336529, -0.09544442594051361, 0.009243491105735302, 0.008688165806233883, -0.01035414356738329, -0.0002885792055167258, -0.005754789803177118, -0.00991525687277317, 0.013892107643187046, 0.011912639252841473, 0.049406103789806366, 0.05399202182888985, -0.0041895764879882336, -0.004178380593657494, 0.04091499000787735, -0.04188233241438866, -0.0287515576928854, 0.0074655525386333466, -0.005763746798038483, 0.07803226262331009, -0.018666120246052742, 0.042061470448970795, 0.05993938446044922, -0.020511236041784286, 0.02375362254679203, 0.018173491582274437, -0.04392449930310249, 0.0034954191651195288, 0.03118782676756382, 0.019490152597427368, 0.009834645316004753, -0.0018898998387157917, 0.033122509717941284, -0.04596666619181633, -0.053382955491542816, 0.020797856152057648, 0.0011587952030822635, -0.090715192258358, -0.0049397144466638565, 0.03267466649413109, -0.035325899720191956, 0.06448947638273239, -0.03263884037733078, -0.013918978162109852, -0.046038318425416946, -0.03373157978057861, -0.007573035079985857, -0.091646708548069, 0.10576274245977402, -0.03722475841641426, 0.014205598272383213, -0.030865378677845, -0.04138074815273285, -0.015110242180526257, -0.007774564437568188, -0.010891555808484554, 0.0392669253051281, 0.040986645966768265, -0.02534794621169567, -0.03815627098083496, 0.02192642167210579, -0.029754728078842163, -0.024058157578110695, 0.0076894741505384445, -0.07308807224035263, -0.03161775693297386, 0.005951841361820698, 0.018827343359589577, 0.02918148785829544, 0.031492359936237335, 0.005163636524230242, 0.005557738710194826, -0.02584953047335148, 0.007402854505926371, -0.019937995821237564, 0.013766711577773094, 0.05169906094670296, -0.01855863817036152, -0.02137109637260437, -0.012656059116125107, 0.02880529873073101, 0.017886873334646225, -0.03324790671467781, -0.06552847474813461, -0.017886873334646225, -0.0182361900806427, 0.013623401522636414, 0.07745902240276337, -0.07118921726942062, -0.028626160696148872, 0.0682513639330864, 0.03174315392971039, 0.022875849157571793, -0.0021720414515584707, 0.024900102987885475, 0.022141385823488235, 0.07581096142530441, 0.003907435107976198, 0.038836993277072906, -0.0054547348991036415, -0.04073585197329521, -0.008343325927853584, -0.04073585197329521, -0.0021048649214208126, -0.04428277164697647, 0.049441929906606674, 0.044820185750722885, -0.03478848934173584, 0.016776220872998238, -0.03451978415250778, -0.03244178742170334, -0.010058566927909851, -0.010873641818761826, -0.016158197075128555, -0.026494426652789116, -0.028823211789131165, -0.010416842065751553, 0.019060222432017326, 0.017886873334646225, 0.027228889986872673, -0.024147726595401764, 0.018970653414726257, -0.012333611957728863, -0.005974233150482178, -0.015540172345936298, 0.034161508083343506, 0.005651785992085934, -0.05291719734668732, 0.010676590725779533, 0.05839880183339119, 0.01107965037226677, -0.04951358586549759, 0.00991525687277317, -0.0313132219016552, 0.057861391454935074, 0.015477473847568035, 0.035182591527700424, -0.011545407585799694, 0.024989672005176544, 0.025276292115449905, -0.01888108439743519, 0.010479539632797241, -0.003858172334730625, 0.0016928487457334995, -0.08584265410900116, 0.0046665300615131855, 0.04306463897228241, -0.049871861934661865, -0.0027855869848281145, 0.0724790021777153, -0.0137935820966959, -0.039911817759275436, -0.010372057557106018, -0.06560012698173523, 0.031796894967556, 0.03337330371141434, 0.051089994609355927, 0.01814662106335163, -0.04456939175724983, 0.02697809785604477, 0.006542994640767574, 0.03912361338734627, -0.03545129671692848, -0.02155023254454136, 0.023449089378118515, -0.03394654393196106, -0.04127326235175133, 0.015396862290799618, -0.037905480712652206, -0.07101007550954819, -0.05008682608604431, 0.04478435590863228, 0.03360618278384209, -0.04811631515622139, -0.03240596130490303, 0.04614580050110817, -0.0355408675968647, -0.014787795022130013, -0.08104177564382553, -0.005306946579366922, 0.028411196544766426, 0.0063056377694010735, 0.024237293750047684, 0.02604658156633377, -0.012969549745321274, 0.01299642026424408 ]
9,402
asyncclick.types
__repr__
null
def __repr__(self) -> str: return "DateTime"
(self) -> str
[ 0.056353356689214706, -0.0015745178097859025, 0.04328204691410065, 0.02644272893667221, -0.00928663369268179, -0.08276274055242538, -0.018273159861564636, 0.056353356689214706, 0.053485672920942307, -0.051251545548439026, -0.019840383902192116, -0.029343759641051292, 0.0004868917749263346, 0.022307926788926125, -0.0024967205245047808, 0.049917738884687424, -0.044949304312467575, -0.004249426536262035, -0.05525296553969383, -0.014313419349491596, -0.0008810422150418162, -0.0037242399994283915, -0.011912566609680653, -0.01239607110619545, 0.0176729466766119, 0.06418947875499725, -0.030527513474225998, -0.0025446543004363775, -0.03177795931696892, -0.030810948461294174, -0.0439489483833313, -0.003991001285612583, 0.014054994098842144, -0.03734660521149635, -0.003913890570402145, 0.013004621490836143, -0.049384213984012604, 0.02827671356499195, -0.06682374328374863, 0.02425861917436123, 0.015805616974830627, 0.009153252467513084, -0.0438489131629467, -0.005005945451557636, 0.002409189473837614, -0.03994752839207649, 0.018423212692141533, 0.015347120352089405, -0.020123817026615143, -0.024892179295420647, 0.04458250850439072, 0.026009242981672287, -0.02120753563940525, 0.001682889647781849, -0.1104392409324646, 0.02559242770075798, 0.053052183240652084, 0.055953215807676315, -0.035012442618608475, 0.07482659071683884, -0.04211496561765671, 0.02864351123571396, 0.045882970094680786, -0.03457895293831825, -0.006889948155730963, 0.02792659029364586, -0.005310220178216696, -0.018189797177910805, 0.02537568286061287, 0.04148140549659729, 0.018823355436325073, -0.009761801920831203, 0.020957447588443756, 0.04841720312833786, -0.00863640196621418, -0.04801706224679947, -0.06969142705202103, 0.020840737968683243, -0.005922937765717506, -0.03914724290370941, -0.021674368530511856, 0.020924102514982224, -0.05525296553969383, 0.015230411663651466, -0.014480145648121834, -0.017122751101851463, -0.033845361322164536, -0.011153963394463062, -0.10543746501207352, 0.007173382211476564, -0.02192445658147335, -0.021357588469982147, -0.019656984135508537, 0.07656053453683853, -0.031344469636678696, -0.027843227609992027, -0.008828137069940567, -0.02465876191854477, -0.006806585472077131, 0.032144755125045776, 0.00716087780892849, -0.07162544876337051, -0.061588551849126816, -0.006239717360585928, -0.04328204691410065, -0.011587451212108135, -0.021440953016281128, 0.0039284792728722095, -0.020774047821760178, -0.007256745360791683, -0.04688332602381706, 0.03704649582505226, -0.02317490242421627, -0.024492036551237106, 0.04961762949824333, -0.008315455168485641, 0.03677973523736, -0.004422404803335667, 0.061321791261434555, 0.021724386140704155, 0.0007080641225911677, 0.026276003569364548, 0.004355714190751314, 0.019573621451854706, 0.01051206886768341, 0.028743546456098557, -0.03141115978360176, -0.019356878474354744, 0.0015401305863633752, -0.028793564066290855, 0.02997731789946556, 0.029827265068888664, -0.001794387586414814, 0.025075577199459076, 0.046783290803432465, -0.0029468804132193327, 0.04198158532381058, 0.019673656672239304, -0.007765259128063917, 0.09836828708648682, -0.0030239911284297705, -0.0027572298422455788, 0.049951083958148956, 0.027576465159654617, -0.00942001398652792, -0.015205402858555317, -0.049384213984012604, 0.05708695203065872, -0.047183431684970856, 0.042881906032562256, 0.005489450413733721, 0.003936815541237593, 0.015855634585022926, -0.00072838383493945, -0.03437888249754906, -0.040481049567461014, 0.02524230256676674, -0.035512618720531464, 0.011178972199559212, -0.0394473522901535, -0.05078471079468727, -0.026642801240086555, 0.009936864487826824, -0.04084784910082817, 0.010703803040087223, 0.06385602056980133, 0.04434909299015999, -0.03209473937749863, 0.026559436693787575, -0.00001497928133176174, -0.006652364041656256, -0.06232214719057083, -0.006710717920213938, 0.028610166162252426, -0.006798249203711748, -0.013613170944154263, 0.0247921422123909, 0.12997952103614807, 0.01518873032182455, 0.0016412081895396113, 0.08989860862493515, 0.0013775728875771165, -0.11770849674940109, 0.025092249736189842, 0.028626838698983192, -0.023641733452677727, -0.0233583003282547, 0.01107060071080923, 0.019440241158008575, 0.019523603841662407, 0.02429196611046791, 0.02080739289522171, -0.01686432585120201, 0.015430483035743237, -0.0018829607870429754, -0.030360788106918335, -0.009144916199147701, -0.027443084865808487, 0.007744418457150459, 0.06695712357759476, 0.01412168424576521, 0.03504578769207001, -0.0021132510155439377, -0.027726519852876663, 0.07529342174530029, -0.01942356862127781, -0.006252221763134003, -0.013754887506365776, -0.006939966231584549, -0.07262580841779709, 0.001252528396435082, -0.06005467474460602, 0.014538499526679516, 0.010812175460159779, 0.008177906274795532, -0.037646710872650146, -0.04084784910082817, -0.05341898277401924, -0.07676061242818832, 0.007544347550719976, 0.065156489610672, 0.04558286443352699, -0.0638226792216301, -0.07349278032779694, 0.035145822912454605, -0.0037992666475474834, -0.03424550220370293, -0.03177795931696892, -0.025125594809651375, -0.06949135661125183, 0.020957447588443756, -0.04014759883284569, -0.04971766844391823, -0.026292676106095314, 0.03808019682765007, 0.047316811978816986, -0.019807038828730583, 0.007519338745623827, -0.04831716790795326, -0.02500888705253601, -0.010970564559102058, 0.020957447588443756, 0.020523959770798683, 0.0010149439331144094, 0.03727991506457329, -0.04061443358659744, -0.0289936363697052, 0.05571980029344559, -0.03681308031082153, -0.0010816343128681183, 0.015572200529277325, -0.06215541809797287, 0.01125399861484766, -0.005589486099779606, 0.008336295373737812, -0.026142623275518417, 0.03978080302476883, -0.004985104780644178, 0.028710201382637024, 0.025842515751719475, -0.008619729429483414, 0.042215000838041306, -0.0037805100437253714, 0.041681475937366486, -0.010628776624798775, 0.002138259820640087, -0.049650974571704865, 0.018406540155410767, 0.017756309360265732, -0.001757916295900941, 0.07295925915241241, -0.010170280933380127, -0.06522317975759506, -0.0009039670694619417, -0.0637226402759552, -0.047183431684970856, -0.017606256529688835, -0.04211496561765671, -0.06949135661125183, -0.016347475349903107, -0.03182797506451607, -0.028109988197684288, 0.015630554407835007, 0.016305794939398766, -0.05028453469276428, -0.02000710926949978, 0.0012264774413779378, 0.03016071766614914, -0.027109632268548012, 0.019990436732769012, 0.029677212238311768, 0.01969032920897007, 0.019673656672239304, -0.02510892227292061, 0.02997731789946556, 0.01440511830151081, 0.008423826657235622, -0.027726519852876663, -0.0123710623010993, 0.0040431031957268715, 0.024375328794121742, 0.03169459477066994, 0.013688197359442711, 0.04618307575583458, -0.06202203780412674, 0.016497528180480003, 0.01678096316754818, 0.025575755164027214, -0.012045946903526783, 0.007952826097607613, 0.00032798113534227014, 0.0008492601336911321, 0.023525025695562363, 0.04911745339632034, 0.02805997058749199, 0.04061443358659744, -0.052552007138729095, -0.0055436366237699986, 0.01969032920897007, 0.08629733324050903, -0.02922705188393593, 0.006735726725310087, 0.02912701666355133, 0.022524669766426086, 0.036579664796590805, -0.02304152026772499, -0.0509180948138237, 0.034612298011779785, -0.004497431218624115, 0.05448602885007858, 0.005989628378301859, -0.04294859617948532, 0.0424150712788105, 0.03284500539302826, 0.023074865341186523, -0.01427173800766468, 0.008507189340889454, -0.03114440105855465, -0.030977673828601837, -0.0011754176812246442, 0.07229235768318176, 0.04214831069111824, -0.013079647906124592, -0.014380109496414661, 0.00866141077131033, 0.017973052337765694, -0.031027691438794136, 0.02040725201368332, 0.06452292948961258, 0.05762047320604324, -0.029993990436196327, 0.038913827389478683, -0.02174105867743492, 0.002277892781421542, -0.042715176939964294, -0.01727280393242836, 0.03781343623995781, 0.040247634053230286, -0.02936043217778206, 0.03242819011211395, 0.022991502657532692, 0.020740702748298645, 0.0383136160671711, -0.035779379308223724, -0.003772173775359988, 0.0005155477556400001, 0.009628421626985073, -0.018639957532286644, 0.03327849134802818, -0.02505890466272831, -0.06265559792518616, 0.025525737553834915, 0.0020767797250300646, -0.0496843196451664, -0.017306149005889893, 0.014338428154587746, 0.016931015998125076, 0.06112171709537506, -0.06305573880672455, -0.012496107257902622, 0.03901386260986328, -0.028743546456098557, 0.0041139619424939156, 0.030127372592687607, -0.0004134281480219215, 0.0008826052653603256, 0.06302239745855331, -0.0009310599998570979, -0.03427884727716446, -0.009269960224628448, -0.03681308031082153, -0.0578872375190258, -0.042981941252946854, -0.013263045810163021, -0.03471233323216438, -0.07229235768318176, 0.010720476508140564, 0.018473230302333832, -0.007848622277379036, 0.031161073595285416, 0.05548638477921486, -0.0019454829161986709, -0.005631167441606522, 0.01353814359754324, -0.017439531162381172, 0.03386203199625015, 0.002110124798491597, 0.016172412782907486, -0.06472299993038177, -0.0383136160671711, 0.033761996775865555, -0.045882970094680786, -0.07809441536664963, -0.03871375694870949, 0.07082516700029373, 0.015355456620454788, -0.02115751802921295, -0.01647252030670643, 0.04541613906621933, -0.011312353424727917, -0.019256843253970146, 0.025675790384411812, 0.023775115609169006, 0.01656421832740307, 0.0062147085554897785, 0.032011374831199646, 0.02649274654686451, 0.0762270838022232, -0.01042870618402958, 0.021857766434550285, 0.01982371136546135, 0.02724301442503929, -0.05395250394940376, -0.0035262529272586107, 0.05692022666335106, -0.04768361151218414, 0.004236922133713961, -0.0861639529466629, -0.009495040401816368, 0.055819835513830185, -0.0004329663352109492, -0.014446800574660301, 0.06022140011191368, -0.035012442618608475, 0.011829202994704247, -0.041281335055828094, -0.027493102476000786, -0.00040691543836146593, 0.07209228724241257, -0.002728052670136094, -0.021540988236665726, 0.05785389244556427, 0.0790947750210762, -0.06679040193557739, 0.0027509776409715414, -0.06112171709537506, -0.015863969922065735, -0.06625687330961227, 0.008377976715564728, -0.03372865170240402, -0.05708695203065872, 0.011395716108381748, -0.02040725201368332, -0.04708339646458626, 0.014788588508963585, 0.0015859801787883043, -0.023191574960947037, -0.04755023121833801, -0.053218912333250046, 0.010412032715976238, 0.03731326013803482, 0.005810398142784834, 0.01637248508632183, -0.03144450858235359, -0.03222811967134476, 0.024625416845083237, -0.031661249697208405, 0.027326377108693123, 0.01541381049901247, -0.026859544217586517, -0.03924727812409401, -0.0034157971385866404, -0.016080714762210846, 0.04961762949824333, 0.0013525639660656452, 0.04034766927361488, 0.024091893807053566, 0.0038263597525656223, -0.0012400239938870072, -0.014713562093675137, 0.003599195508286357, 0.05571980029344559, -0.028426768258213997, -0.020257197320461273, 0.021857766434550285, 0.024992214515805244, -0.030444150790572166, -0.04001421853899956, -0.040647778660058975, 0.033311836421489716, -0.015822289511561394, 0.03424550220370293, 0.013479789718985558, 0.008961517363786697, 0.034345537424087524, -0.0016849737148731947, 0.043915603309869766, -0.0036075320094823837, 0.001391119323670864, -0.05548638477921486, 0.016539210453629494, -0.028043298050761223, 0.0226413793861866, 0.00980348326265812, -0.008644738234579563, -0.014663543552160263, 0.026642801240086555, 0.02389182336628437, -0.016672590747475624, -0.024542054161429405, 0.012579469941556454, 0.004255678970366716, -0.024908851832151413, -0.05835406854748726, -0.04204827547073364, 0.030494168400764465, -0.047850336879491806, 0.01606404222548008, -0.0005056484369561076, 0.07669392228126526, 0.08629733324050903, -0.005735371261835098, 0.026009242981672287, 0.008236260153353214, -0.016347475349903107, 0.05872086435556412, -0.0764271542429924, 0.009470031596720219, -0.03477902337908745, 0.03727991506457329, -0.011545768938958645, -0.0482504777610302, 0.029560504481196404, 0.025575755164027214, 0.002805163385346532, 0.0026696985587477684, 0.01735616661608219, 0.0009206396644003689, -0.021274225786328316, 0.027326377108693123, 0.042481761425733566, -0.04474923387169838, -0.01892339065670967, 0.03871375694870949, -0.0016672591445967555, 0.060021329671144485, 0.026142623275518417, 0.03481236845254898, 0.025759153068065643, 0.0003193843294866383, -0.001326513011008501, 0.033628616482019424, 0.06695712357759476, 0.03146117925643921, -0.06128844618797302, 0.026159295812249184, 0.0033678633626550436, 0.046283114701509476, -0.02460874430835247, 0.027643155306577682, 0.011178972199559212, -0.02585918828845024, 0.07075847685337067, -0.009503376670181751, 0.003540841629728675, 0.08989860862493515, 0.0076735601760447025, 0.03454560786485672, -0.05208517611026764, -0.00136506836861372, -0.018273159861564636, 0.01995709165930748, 0.008894827216863632, -0.08936508744955063, -0.040481049567461014, -0.024625416845083237, -0.03444557264447212, -0.011562441475689411, 0.03621286898851395, -0.05838741362094879, -0.03287835046648979, 0.0052351937629282475, 0.022391289472579956, 0.019807038828730583, 0.0453827939927578, -0.08809797465801239, -0.0076443832367658615, -0.039313968271017075, -0.005985460244119167, -0.011487415060400963, 0.04945090413093567, 0.04074781388044357, 0.01942356862127781, 0.05431930348277092, 0.028210023418068886, 0.011312353424727917, 0.03122776374220848, -0.014696888625621796, -0.026292676106095314, -0.0013984135584905744, -0.0009649262065067887, -0.000012577711459016427, 0.024708779528737068, -0.03202804923057556, 0.05395250394940376, -0.04421571269631386, -0.019340205937623978, 0.03691311553120613, -0.05035122483968735, -0.000986287952400744, 0.006906620692461729, 0.04124798998236656, -0.009328315034508705, 0.03734660521149635, -0.01371320616453886, -0.004030598793178797, -0.022091183811426163, -0.02094077505171299, 0.04851723834872246, -0.10223633050918579, 0.060388125479221344, 0.013654852285981178, -0.061055026948451996, -0.07569356262683868, -0.10143604129552841, 0.0010951808653771877, -0.03126110881567001, 0.00571453059092164, 0.028960291296243668, 0.05982125550508499, 0.008336295373737812, 0.002045518485829234, -0.03547927364706993, 0.010970564559102058, -0.037079840898513794, 0.006714886054396629, -0.06042147055268288, -0.07896139472723007, -0.01335474569350481, -0.005781220737844706, -0.01447180937975645, 0.0024988045915961266, 0.013146338053047657, -0.005793725606054068, -0.03838030621409416, -0.008603056892752647, -0.03664635494351387, 0.005147662479430437, -0.02322492003440857, 0.006927461363375187, -0.02054063230752945, -0.04008090868592262, -0.0353458933532238, -0.06258890777826309, 0.04531610384583473, 0.01485527865588665, -0.037613365799188614, 0.028560148552060127, 0.02014048956334591, -0.01745620369911194, -0.025975896045565605, 0.012779541313648224, 0.04158144071698189, -0.0018204385414719582, -0.026459401473402977, -0.008094542659819126, 0.0025467383675277233, 0.012254354543983936, 0.07149206846952438, -0.002717632334679365, 0.05011780932545662, -0.012996284291148186, -0.05205183103680611, -0.028710201382637024, -0.029010308906435966, 0.014380109496414661, -0.01892339065670967, -0.018056416884064674, 0.010862193070352077, -0.05308552831411362, 0.0010503731900826097, -0.002990646054968238, -0.03491240739822388, 0.009745129384100437, 0.0934332013130188, -0.003972244914621115, -0.005464441608637571, -0.018289832398295403, 0.01541381049901247, 0.022841449826955795, 0.019523603841662407, 0.03221144527196884, 0.017739636823534966, 0.048350512981414795, 0.06682374328374863, -0.02139093354344368, 0.01033700630068779, 0.03341187164187431, 0.10543746501207352, -0.008794791996479034, 0.04711674153804779, 0.08916501700878143, 0.0013285970780998468, -0.022307926788926125, 0.020907429978251457, -0.07709406316280365, -0.011920902878046036, 0.04034766927361488, 0.01073714904487133, 0.005422760266810656, 0.0025863356422632933, 0.009920191951096058, 0.014563508331775665, -0.006327248178422451, 0.027326377108693123, 0.08309619128704071, -0.06592342257499695, -0.011637468822300434, -0.07462652027606964, 0.00010413856944069266, -0.0017620844300836325, 0.029010308906435966, 0.010170280933380127, -0.016614237800240517, 0.03216142952442169, 0.028126660734415054, -0.0065731690265238285, 0.01825648732483387, 0.06185531243681908, 0.06488972157239914, -0.04031432420015335, 0.03547927364706993, 0.0113206896930933, -0.012987948022782803, -0.03347856178879738, -0.036312904208898544, -0.00825293269008398, 0.022574689239263535, 0.011112282052636147, 0.047416847199201584, 0.04811709746718407, -0.0010805922793224454, -0.08342964947223663, -0.017306149005889893, 0.05325225740671158, 0.011962584219872952, -0.014330091886222363, 0.01857326738536358, -0.0012535704299807549, -0.0053519015200436115, -0.02657611109316349, -0.034345537424087524, 0.02841009572148323, 0.030094027519226074, -0.03778009116649628, 0.035912759602069855, -0.05035122483968735, 0.02022385224699974 ]
9,403
asyncclick.types
_try_to_convert_date
null
def _try_to_convert_date(self, value: t.Any, format: str) -> t.Optional[datetime]: try: return datetime.strptime(value, format) except ValueError: return None
(self, value: Any, format: str) -> Optional[datetime.datetime]
[ 0.05263970419764519, 0.00003561298581189476, 0.028399622067809105, 0.04270700737833977, -0.05342858284711838, -0.014818362891674042, 0.05081094056367874, 0.06658850610256195, 0.06820212304592133, -0.03926462680101395, 0.02994151972234249, 0.07031775265932083, -0.016315439715981483, -0.048408444970846176, 0.04198984429240227, 0.04779885709285736, -0.01576860249042511, 0.0993269607424736, 0.017032600939273834, 0.011994536966085434, -0.019058585166931152, -0.05407402664422989, -0.01697881519794464, 0.02072598598897457, 0.0014690618263557553, 0.03184200078248978, 0.024939313530921936, 0.004316419828683138, -0.047045838087797165, 0.001368211000226438, 0.08118275552988052, 0.01957852765917778, -0.027556955814361572, 0.06802283227443695, 0.014092236757278442, 0.0323798730969429, -0.04471506178379059, -0.009878909215331078, -0.1043470948934555, -0.014307385310530663, 0.011465630494058132, 0.01726567931473255, 0.007763280533254147, -0.04087824374437332, -0.054325032979249954, -0.007991875521838665, -0.06389915198087692, 0.06673193722963333, -0.08749378472566605, 0.03417277708649635, 0.016100291162729263, -0.007722940295934677, -0.0017682529287412763, -0.002456280402839184, -0.03022838570177555, 0.06257239729166031, -0.002747627440840006, 0.12227614969015121, 0.006284133531153202, -0.008363903500139713, 0.015445880591869354, -0.014683895744383335, -0.05206597223877907, 0.05981132388114929, -0.006427566055208445, -0.01008509285748005, 0.048408444970846176, -0.05446846783161163, 0.012227615341544151, 0.019632313400506973, -0.01043470948934555, 0.017803551629185677, -0.08362110704183578, 0.05195840075612068, 0.07286367565393448, 0.019345449283719063, -0.03191371634602547, -0.017597366124391556, 0.013895017094910145, 0.00031599958310835063, 0.02187344618141651, 0.020690128207206726, -0.00870455615222454, -0.05246041342616081, -0.003969044424593449, -0.009977518580853939, -0.003357215318828821, 0.06597892194986343, 0.018484855070710182, 0.03273845463991165, -0.008292187936604023, -0.07089147716760635, 0.0030591448303312063, 0.0424560010433197, -0.013626080937683582, 0.06809454411268234, 0.040268655866384506, -0.04184641316533089, -0.015553454868495464, 0.005705921445041895, 0.019668173044919968, -0.05278313532471657, -0.03345561400055885, -0.01515005063265562, 0.006364814005792141, -0.00712679885327816, 0.03225436806678772, 0.004594319965690374, 0.033079106360673904, -0.05228112265467644, -0.029636725783348083, -0.06239311024546623, -0.04109339043498039, 0.021479006856679916, 0.008094968274235725, -0.04069895297288895, 0.0071626571007072926, -0.004372448194772005, -0.005060475319623947, 0.01100843958556652, -0.04385446757078171, 0.036109115928411484, -0.03223643824458122, -0.03994593396782875, 0.052747275680303574, -0.037830304354429245, -0.02865062840282917, -0.04213327914476395, 0.07759694755077362, 0.00610036076977849, -0.004692929796874523, 0.06565620005130768, -0.006127254106104374, -0.04736855998635292, -0.07246923446655273, -0.04080652818083763, -0.06648093461990356, 0.015876177698373795, -0.07817067950963974, -0.02325398288667202, 0.006916132755577564, -0.025244107469916344, 0.005445950198918581, -0.09538257122039795, 0.036826279014348984, -0.01691606268286705, 0.011824211105704308, 0.04930489882826805, -0.04295801371335983, 0.06425773352384567, 0.02153279446065426, 0.01512315683066845, -0.04406961426138878, 0.029995307326316833, -0.03277431055903435, -0.08440998941659927, 0.0025952307041734457, -0.05045235902070999, 0.009547221474349499, -0.014567356556653976, 0.024706237018108368, -0.022357530891895294, 0.024742094799876213, -0.022572679445147514, 0.0619269534945488, 0.05522148683667183, 0.014899044297635555, 0.036306336522102356, 0.07752522826194763, 0.034674789756536484, 0.016503693535923958, 0.016745736822485924, 0.018197989091277122, 0.009063136763870716, 0.050559934228658676, 0.013724691234529018, 0.021138355135917664, -0.004796022083610296, -0.005078404676169157, 0.05195840075612068, 0.02095906436443329, 0.04593423753976822, 0.01515005063265562, 0.06135322153568268, 0.04163126274943352, 0.06368400156497955, -0.030138740316033363, -0.007382288109511137, -0.019184088334441185, 0.046400390565395355, 0.0037987183313816786, 0.04851602017879486, -0.00003554294744390063, 0.01263101864606142, -0.0025571314617991447, -0.03433413803577423, -0.014728718437254429, -0.010954651981592178, -0.033652834594249725, 0.013258535414934158, 0.037328291684389114, -0.013339215889573097, 0.012272438034415245, -0.000326364825014025, -0.03722071647644043, -0.0403403714299202, -0.004325384274125099, 0.03053317964076996, -0.04277872294187546, -0.006956472992897034, -0.08290394395589828, -0.05884315446019173, -0.05522148683667183, 0.023809783160686493, -0.014522533863782883, -0.04242014139890671, -0.00943068228662014, -0.049555905163288116, -0.04077066853642464, 0.03659319877624512, -0.02526203729212284, 0.03349147364497185, -0.0026826346293091774, -0.015571383759379387, 0.09609972685575485, 0.00823840033262968, -0.01786630228161812, -0.036897994577884674, 0.019112370908260345, -0.04285043850541115, 0.01285513211041689, -0.05393059551715851, 0.005360787268728018, -0.01921994611620903, 0.06673193722963333, -0.03420863673090935, 0.06354057043790817, 0.0018108345102518797, -0.01648576557636261, -0.03196750208735466, 0.05156395956873894, -0.03184200078248978, -0.023307770490646362, 0.05357201397418976, 0.035947754979133606, 0.03194957599043846, -0.02585369534790516, -0.0028171027079224586, -0.036826279014348984, 0.00008145112951751798, 0.015526561066508293, 0.05281899496912956, 0.01706845872104168, 0.003740448970347643, -0.027449382469058037, -0.09416339546442032, 0.025082746520638466, -0.05106194689869881, 0.05446846783161163, -0.002841755049303174, -0.03110690973699093, 0.013401968404650688, 0.028847848996520042, -0.0009104597847908735, -0.09753405302762985, -0.05167153477668762, -0.019919179379940033, 0.03338389843702316, 0.032505374401807785, 0.013877088204026222, -0.03108897991478443, -0.02922435849905014, 0.0015575865982100368, 0.002328536007553339, -0.025064818561077118, -0.02000882476568222, 0.014154988341033459, -0.030855901539325714, 0.039766643196344376, 0.051814965903759, -0.02779003418982029, -0.0037135554011911154, 0.02619434893131256, 0.022196169942617416, -0.0338500551879406, 0.011815247125923634, -0.0025167909916490316, -0.012209685519337654, -0.018628288060426712, 0.014208775013685226, -0.000614070100709796, -0.008193577639758587, 0.02397114597260952, -0.011133942753076553, -0.06712637841701508, 0.015678957104682922, -0.004311937373131514, -0.05296242609620094, 0.04252771660685539, -0.049914486706256866, -0.018448997288942337, 0.04094995930790901, 0.015795497223734856, 0.049197323620319366, 0.021496936678886414, -0.014854221604764462, -0.03729243203997612, -0.02908092550933361, -0.07659292221069336, -0.02095906436443329, -0.01471975352615118, -0.014495640061795712, -0.02440144307911396, -0.021138355135917664, 0.010596071369946003, 0.003787512658163905, 0.012702735140919685, 0.004477781243622303, 0.003971285652369261, -0.000441783107817173, -0.013150961138308048, 0.04643625020980835, 0.0215865820646286, -0.013133032247424126, 0.0005647651851177216, -0.01756150834262371, -0.015167979523539543, -0.017104318365454674, -0.013787442818284035, 0.08849781006574631, 0.01627061702311039, 0.019399236887693405, 0.01829659938812256, 0.005432503297924995, 0.03203922137618065, -0.02728801965713501, -0.010031306184828281, -0.048623595386743546, 0.03664698824286461, 0.017964912578463554, 0.019686101004481316, 0.036467697471380234, 0.012245544232428074, -0.011026368476450443, 0.05428917706012726, 0.012317259795963764, 0.030102882534265518, 0.005002206191420555, 0.013357145711779594, -0.07451315224170685, -0.07429800182580948, 0.05023720860481262, -0.045181214809417725, 0.05407402664422989, -0.01691606268286705, 0.0029919110238552094, 0.023074692115187645, 0.03191371634602547, 0.0004748397914227098, -0.007153692655265331, -0.016593338921666145, 0.002019259613007307, -0.00471534114331007, -0.05500633642077446, 0.018843436613678932, 0.015194873325526714, -0.040196940302848816, -0.019237875938415527, 0.014092236757278442, -0.027323879301548004, -0.00848940759897232, 0.04338831081986427, 0.014477711170911789, -0.09050586819648743, -0.006597891915589571, 0.0004448646504897624, 0.022142382338643074, 0.0690627172589302, -0.013401968404650688, 0.03944391757249832, 0.03836817666888237, -0.0008930910262279212, 0.0061407010070979595, -0.011824211105704308, 0.0374358668923378, -0.04181055352091789, 0.031644780188798904, -0.008865917101502419, -0.031429633498191833, -0.039766643196344376, -0.013446790166199207, 0.006723395083099604, 0.06393500417470932, -0.0020775292068719864, 0.03655734285712242, 0.011806282214820385, 0.01533830538392067, 0.04952004924416542, 0.008287705481052399, 0.012962706387043, 0.0022007913794368505, 0.007028189022094011, 0.013330251909792423, 0.05009377747774124, -0.01575963944196701, 0.03908533975481987, 0.024670379236340523, 0.03592982515692711, -0.04708169773221016, 0.03263087943196297, -0.0033751444425433874, -0.0669112280011177, 0.009977518580853939, -0.021927233785390854, -0.01640508510172367, 0.0821150690317154, -0.02339741587638855, 0.04277872294187546, -0.00460776686668396, -0.02000882476568222, -0.0187179334461689, 0.006216899491846561, -0.04328073561191559, 0.04080652818083763, 0.048982176929712296, 0.011053262278437614, 0.01726567931473255, 0.022626467049121857, 0.00935896672308445, -0.02793346717953682, 0.019184088334441185, -0.006983366794884205, -0.02095906436443329, -0.05558006837964058, 0.04155954718589783, -0.011232552118599415, -0.03162685036659241, 0.04937661439180374, -0.01428945641964674, -0.00561179406940937, -0.0035230591893196106, 0.027754176408052444, 0.02454487606883049, 0.03151927888393402, 0.01648576557636261, -0.0006303183035925031, 0.019184088334441185, 0.048623595386743546, -0.04937661439180374, -0.05030892416834831, -0.012657912448048592, -0.001637146808207035, 0.012613089755177498, 0.01040781568735838, 0.0138591593131423, 0.011994536966085434, -0.036826279014348984, 0.04224085062742233, 0.0270011555403471, 0.007117834407836199, 0.006427566055208445, 0.02542339824140072, 0.012962706387043, -0.03614497184753418, -0.02160451002418995, 0.0417388379573822, -0.00759295467287302, -0.008059109561145306, -0.05428917706012726, -0.034011416137218475, -0.02361256442964077, -0.05030892416834831, 0.051850825548172, -0.011913856491446495, -0.008758342824876308, -0.011438736692070961, 0.008009805344045162, -0.021192142739892006, 0.05859214812517166, 0.028525125235319138, 0.009878909215331078, 0.043531741946935654, 0.025943340733647346, 0.039121195673942566, 0.011851104907691479, -0.02635570988059044, 0.01972195878624916, -0.021622439846396446, -0.020044682547450066, 0.028991280123591423, -0.014674930833280087, 0.02721630409359932, -0.00014007074059918523, -0.006458941847085953, 0.040985818952322006, 0.0035611584316939116, -0.028184473514556885, -0.05385887995362282, 0.02117421291768551, -0.008180131204426289, 0.010667786933481693, 0.030622825026512146, -0.03232608363032341, 0.024060791358351707, 0.014692859724164009, -0.04564737156033516, -0.032505374401807785, 0.004410547204315662, 0.00541905639693141, -0.010354029014706612, -0.01512315683066845, 0.05672752857208252, -0.0138591593131423, 0.004038519226014614, 0.034728579223155975, 0.04406961426138878, 0.056404802948236465, -0.0208873488008976, -0.04987862706184387, -0.0006521693430840969, -0.0030927618499845266, 0.009717547334730625, 0.032720524817705154, -0.07110662758350372, -0.01807248592376709, -0.02275197021663189, -0.0035006478428840637, -0.006839934270828962, 0.04281458258628845, -0.04952004924416542, 0.06350471079349518, -0.030497321859002113, 0.004724305588752031, -0.0007182827102951705, 0.04987862706184387, -0.06364814192056656, -0.02915264293551445, -0.0013895017327740788, -0.08340595662593842, -0.04403375834226608, -0.022877473384141922, -0.029636725783348083, 0.005710403900593519, 0.057337116450071335, 0.037471722811460495, -0.03519473224878311, -0.0023307770024985075, 0.05507805570960045, -0.09308765083551407, 0.017946982756257057, -0.04130854085087776, -0.03325839713215828, 0.03808131068944931, 0.12127212435007095, -0.018986867740750313, 0.0115194171667099, -0.0005353503511287272, 0.023433273658156395, 0.008605945855379105, -0.039766643196344376, -0.0026691879611462355, 0.0023755996953696012, -0.0012550337705761194, 0.03772272914648056, -0.06655264645814896, -0.04672311618924141, -0.020116398110985756, 0.0280768983066082, -0.0027207338716834784, 0.0489463172852993, -0.005513184238225222, -0.058269426226615906, -0.008955562487244606, -0.011080155149102211, 0.019542669877409935, 0.06124565005302429, -0.04163126274943352, -0.012003501877188683, -0.015526561066508293, -0.01352747157216072, 0.021192142739892006, -0.05299828574061394, 0.07322225719690323, -0.021210070699453354, -0.0036911440547555685, -0.06171180307865143, 0.003236194374039769, 0.0025840250309556723, -0.0511336624622345, -0.05672752857208252, -0.015212802216410637, -0.007557096425443888, 0.02764660120010376, 0.0007003537029959261, 0.03374247997999191, -0.03915705531835556, 0.015714816749095917, -0.028238261118531227, 0.04181055352091789, -0.01786630228161812, -0.03053317964076996, 0.04138025641441345, 0.012613089755177498, 0.05034478381276131, -0.00011772945435950533, 0.0023106068838387728, 0.03234401345252991, 0.003980250097811222, 0.04130854085087776, -0.03492579609155655, 0.03973078355193138, 0.03038974665105343, 0.03779444471001625, 0.01764218881726265, 0.0003294463676866144, -0.043962039053440094, -0.05895072966814041, 0.027090800926089287, -0.045109499245882034, -0.019202016294002533, 0.048838742077350616, 0.04209741950035095, 0.01446874625980854, 0.014190846122801304, 0.022267885506153107, -0.025082746520638466, -0.0061944881454110146, -0.0305869672447443, -0.03587603569030762, -0.018951009958982468, 0.06217795982956886, 0.00101299153175205, 0.004778092727065086, 0.008059109561145306, -0.0583052858710289, 0.011958679184317589, -0.026678431779146194, -0.013706762343645096, 0.03836817666888237, 0.020457051694393158, -0.020492909476161003, -0.020277760922908783, 0.0403045155107975, -0.0008460272219963372, -0.008198060095310211, 0.017821479588747025, -0.00957411527633667, -0.06508246809244156, 0.015956858173012733, 0.07874440401792526, 0.037041425704956055, -0.032577089965343475, -0.01515901554375887, -0.018843436613678932, 0.006306544877588749, -0.03779444471001625, 0.01981160417199135, -0.007391252554953098, -0.038153026252985, 0.023128479719161987, -0.03951563686132431, -0.022841615602374077, 0.008525265380740166, 0.00910795945674181, -0.022554749622941017, -0.07096319645643234, -0.0410216748714447, -0.018018700182437897, 0.005091851577162743, 0.009098994545638561, -0.08519886434078217, -0.05127709358930588, 0.018448997288942337, 0.07817067950963974, 0.06027748063206673, -0.02741352468729019, 0.02497517317533493, -0.003989214543253183, 0.036826279014348984, 0.021945161744952202, 0.08111104369163513, 0.019847463816404343, -0.04449991136789322, 0.06673193722963333, -0.07795552909374237, -0.04080652818083763, -0.005755226593464613, -0.0012808068422600627, 0.0842665582895279, -0.029565010219812393, 0.04489435255527496, -0.004565185401588678, -0.0654769092798233, -0.04094995930790901, -0.04163126274943352, -0.05873558297753334, -0.048265013843774796, 0.06038505584001541, -0.03137584403157234, 0.038977764546871185, 0.038834329694509506, -0.026301922276616096, -0.0000797002503531985, 0.019668173044919968, 0.020062612369656563, -0.04202570393681526, -0.05787498503923416, 0.050990231335163116, -0.021783800795674324, -0.01929166167974472, -0.01626165211200714, 0.011824211105704308, -0.0005616836715489626, -0.025082746520638466, -0.019381307065486908, -0.017436005175113678, -0.03901362046599388, 0.005472844000905752, 0.024706237018108368, -0.014737682417035103, -0.0005022936384193599, -0.03318667784333229, -0.010748468339443207, -0.0026310887187719345, 0.009932695887982845, 0.03894190490245819, -0.07289953529834747, -0.06881170719861984, 0.04059137776494026, 0.03273845463991165, 0.002159330528229475, 0.055615924298763275, 0.03987421467900276, 0.006768217775970697, 0.021640367805957794, -0.0009031760855577886, -0.0003762299893423915, 0.05170739069581032, -0.006234828382730484, -0.00849388912320137, -0.03316875174641609, -0.002519032219424844, -0.012102111242711544, -0.009959589689970016, 0.004480022471398115, -0.035535383969545364, -0.0032630879431962967, 0.009376895613968372, -0.04700997844338417, 0.016790559515357018, -0.006127254106104374, -0.055400777608156204, 0.004170746076852083, 0.0590224452316761, 0.049771055579185486, -0.05930931121110916, -0.017794586718082428, 0.059058304876089096, 0.005566971376538277, 0.030569037422537804, -0.04155954718589783, 0.04281458258628845, -0.005562488920986652, 0.002848478499799967, -0.027700388804078102, -0.046830687671899796, -0.04191812872886658, 0.022214097902178764 ]
9,404
asyncclick.types
convert
null
def convert( self, value: t.Any, param: t.Optional["Parameter"], ctx: t.Optional["Context"] ) -> t.Any: if isinstance(value, datetime): return value for format in self.formats: converted = self._try_to_convert_date(value, format) if converted is not None: return converted formats_str = ", ".join(map(repr, self.formats)) self.fail( ngettext( "{value!r} does not match the format {format}.", "{value!r} does not match the formats {formats}.", len(self.formats), ).format(value=value, format=formats_str, formats=formats_str), param, ctx, )
(self, value: Any, param: Optional[ForwardRef('Parameter')], ctx: Optional[ForwardRef('Context')]) -> Any
[ 0.06894798576831818, 0.003501549130305648, 0.04204589128494263, 0.025919198989868164, -0.07717514038085938, -0.027065904811024666, 0.006215875502675772, 0.030633436515927315, 0.033691320568323135, -0.010202044621109962, 0.035911925137043, 0.04073537141084671, 0.01751002110540867, -0.01829269342124462, -0.004955408629029989, 0.045722633600234985, -0.042446330189704895, 0.0602111741900444, 0.04787043109536171, -0.00384510587900877, -0.003003278048709035, -0.04495816305279732, -0.004388881381601095, 0.000217140419408679, 0.02773936837911606, -0.027957787737250328, 0.03551148623228073, -0.049581389874219894, -0.05056428164243698, 0.01120313722640276, 0.011503464542329311, 0.02748454362154007, -0.011967607773840427, 0.026647266000509262, 0.017928659915924072, 0.026629064232110977, -0.09428472816944122, 0.03154351934790611, -0.07943215221166611, 0.02932291477918625, -0.04190027713775635, 0.022970525547862053, 0.0054514044895768166, 0.006120316684246063, -0.03176194056868553, 0.029832562431693077, -0.07724794745445251, 0.09042596817016602, -0.09923558682203293, 0.049290161579847336, -0.00883236713707447, -0.0481252558529377, 0.027357133105397224, -0.009737901389598846, -0.03975247964262962, 0.04539500176906586, 0.011658179573714733, 0.11503464728593826, 0.02524573728442192, 0.007312526926398277, 0.026538057252764702, 0.013378238305449486, -0.0236985944211483, 0.03090646117925644, -0.012431751005351543, -0.0000023596421669935808, 0.052821289747953415, -0.04419369250535965, -0.019402995705604553, 0.0602111741900444, 0.007667459547519684, 0.0012547787046059966, -0.04856209456920624, 0.01525301206856966, 0.03050602413713932, 0.03441938757896423, -0.032398998737335205, 0.03997090086340904, -0.006320535205304623, 0.0053831483237445354, 0.06872956454753876, 0.0015767209697514772, -0.04335641488432884, -0.039643269032239914, -0.016791054978966713, -0.05405900254845619, -0.07171463966369629, 0.019967248663306236, 0.033545706421136856, 0.07273393124341965, 0.021241366863250732, -0.10309434682130814, 0.025555165484547615, 0.035784512758255005, -0.007235169876366854, 0.03370951861143112, -0.0015710329171270132, -0.03087005764245987, -0.02590099722146988, 0.003194395685568452, 0.022824913263320923, -0.05751732364296913, -0.04342922195792198, -0.046086665242910385, 0.06443396210670471, -0.03583911806344986, 0.03654898330569267, 0.010775397531688213, 0.014151809737086296, 0.001400392153300345, -0.0440116748213768, -0.04317439720034599, -0.07688391953706741, -0.028758661821484566, 0.012559162452816963, 0.00005090783815830946, 0.011376053094863892, -0.01451584417372942, -0.02160540036857128, 0.0021091201342642307, -0.022533686831593513, 0.05030945688486099, 0.00883236713707447, -0.008577544242143631, 0.01420641504228115, -0.034674208611249924, -0.010593380779027939, -0.0351838581264019, 0.042191505432128906, -0.0026119418907910585, -0.02351657673716545, 0.007826724089682102, -0.024863502010703087, -0.05373137444257736, -0.010957414284348488, -0.039570461958646774, -0.07175104320049286, -0.007576451171189547, -0.02435385435819626, 0.021441584452986717, 0.02921370416879654, 0.02517293021082878, 0.02697489783167839, -0.056133996695280075, 0.04677832871675491, -0.02560977078974247, 0.03483802452683449, 0.059301089495420456, -0.026774678379297256, 0.08096109330654144, 0.0014731988776475191, 0.04095379263162613, -0.023571182042360306, 0.0015209782868623734, -0.03050602413713932, -0.05726249888539314, 0.005756282713264227, -0.014115406200289726, 0.00688023678958416, 0.011303246021270752, 0.07080455124378204, -0.014042600058019161, 0.02921370416879654, 0.03414636105298996, 0.029650544747710228, 0.08481985330581665, -0.06934841722249985, 0.014952683821320534, 0.03745906800031662, -0.009783405810594559, -0.012286136858165264, -0.015225709415972233, 0.014879877679049969, 0.021113954484462738, 0.07724794745445251, -0.012468154542148113, 0.017564626410603523, 0.010138338431715965, 0.01109392661601305, 0.038951605558395386, 0.0136330621317029, 0.02096834033727646, 0.00840917881578207, 0.056461624801158905, 0.003474246710538864, 0.039133623242378235, -0.033800527453422546, 0.026155821979045868, -0.03658538684248924, 0.028940679505467415, 0.042482733726501465, 0.05697127431631088, -0.015890071168541908, 0.027721166610717773, -0.023826004937291145, -0.021696409210562706, -0.0005932611529715359, -0.034310176968574524, 0.042300716042518616, 0.03112488053739071, -0.00607026182115078, -0.016053885221481323, 0.042591944336891174, -0.007148711942136288, -0.014752465300261974, -0.031179485842585564, 0.029723351821303368, -0.006056610494852066, -0.04805244877934456, -0.03097926825284958, -0.027138711884617805, -0.052712079137563705, -0.03345469757914543, 0.01534401997923851, 0.0291408970952034, -0.04524938762187958, 0.020622508600354195, -0.05362216383218765, -0.05140155926346779, 0.05449584499001503, 0.0017337105236947536, 0.028249014168977737, -0.04524938762187958, 0.008213510736823082, 0.11372412741184235, 0.027320729568600655, 0.014916281215846539, -0.045941051095724106, 0.021295972168445587, -0.042555540800094604, -0.023880610242486, -0.018747735768556595, -0.0018759111408144236, -0.008008741773664951, 0.04663271829485893, 0.030961066484451294, 0.04037133604288101, -0.030669838190078735, -0.08438301086425781, -0.010575179010629654, 0.042701151221990585, -0.0002880985557567328, -0.014288323000073433, 0.024990912526845932, 0.02748454362154007, -0.034164562821388245, -0.011184935458004475, 0.015598843805491924, -0.05759013071656227, 0.008877871558070183, 0.039242833852767944, 0.05020024627447128, -0.0011751463171094656, -0.01129414513707161, -0.059228282421827316, -0.04477614536881447, -0.013296331278979778, -0.07273393124341965, 0.047761220484972, 0.0022012663539499044, -0.008254463784396648, 0.005956501234322786, -0.027102308347821236, 0.05413180962204933, -0.06559887528419495, -0.04677832871675491, -0.026410644873976707, 0.035911925137043, 0.04386606067419052, 0.04157264903187752, -0.04048054665327072, -0.02506371960043907, -0.00344011839479208, 0.018747735768556595, -0.05191120505332947, -0.0000692872708896175, 0.019694223999977112, -0.042919572442770004, -0.011157632805407047, 0.03340009227395058, -0.00951038021594286, -0.025482358410954475, 0.015626147389411926, -0.019967248663306236, -0.00361075927503407, -0.04190027713775635, 0.011339649558067322, 0.03148891404271126, -0.046341490000486374, 0.027684763073921204, 0.007617405150085688, -0.019821634516119957, 0.00010373538680141792, 0.011075724847614765, -0.07076814770698547, 0.008582094684243202, -0.015225709415972233, -0.08096109330654144, 0.05890065059065819, -0.03274483233690262, -0.003806427353993058, 0.05183839797973633, 0.05020024627447128, 0.03671279922127724, -0.013478348031640053, 0.009401170536875725, -0.030560629442334175, -0.06752824783325195, -0.07746636867523193, 0.013014204800128937, 0.042810361832380295, 0.007922283373773098, -0.033873334527015686, 0.0006148756947368383, 0.046705521643161774, -0.0028826917987316847, -0.005360396113246679, -0.0017860403750091791, 0.009965422563254833, 0.002573263132944703, 0.020367685705423355, 0.03815073147416115, 0.02874046005308628, -0.009059888310730457, 0.06610851734876633, -0.01366946566849947, -0.04761560633778572, 0.0018463333835825324, -0.010202044621109962, 0.0440116748213768, 0.035238463431596756, 0.018602121621370316, 0.021223165094852448, -0.015762658789753914, 0.028066998347640038, -0.023534778505563736, -0.01637241616845131, -0.015425927937030792, 0.04430289939045906, 0.05111033096909523, 0.006056610494852066, 0.022642895579338074, 0.02520933374762535, -0.03709503263235092, -0.013087011873722076, 0.024535872042179108, -0.014352028258144855, 0.04441211000084877, 0.0026551708579063416, -0.06341467052698135, -0.02439025789499283, 0.013077910989522934, 0.00043513401760719717, 0.06374230235815048, -0.03734985738992691, -0.009555884636938572, 0.001351475133560598, -0.034018948674201965, -0.027102308347821236, -0.021878425031900406, 0.014179112389683723, -0.022806711494922638, 0.03731345385313034, -0.05038226395845413, 0.030742645263671875, 0.017209693789482117, -0.01887514814734459, -0.07033131271600723, -0.01197670865803957, -0.02247908152639866, 0.008891522884368896, 0.028940679505467415, 0.039643269032239914, -0.10323995351791382, 0.0058745937421917915, -0.008677653037011623, 0.026356039568781853, 0.06061160936951637, -0.031889352947473526, 0.03489262983202934, 0.07186025381088257, -0.010411364026367664, 0.00910994317382574, -0.024517670273780823, 0.026774678379297256, -0.021168559789657593, 0.04492175951600075, -0.03997090086340904, -0.01829269342124462, -0.0074899932369589806, -0.0440116748213768, 0.004668732173740864, 0.01718239113688469, -0.01538042351603508, -0.0022490457631647587, -0.010511472821235657, 0.011658179573714733, 0.056461624801158905, -0.027957787737250328, -0.032544612884521484, -0.010584279894828796, 0.011457961052656174, 0.01161267515271902, 0.019548609852790833, -0.052930500358343124, 0.03165272995829582, 0.05704408138990402, 0.11416096985340118, -0.04677832871675491, 0.05511470139026642, -0.005678925663232803, -0.045540615916252136, -0.026811081916093826, -0.029705150052905083, -0.023880610242486, 0.04481254890561104, -0.04539500176906586, 0.024299249053001404, -0.024772493168711662, 0.0014333827421069145, 0.0055014593526721, 0.011285044252872467, -0.03238079696893692, 0.0366399921476841, 0.05387698858976364, -0.03050602413713932, 0.03731345385313034, 0.014852575026452541, 0.013150717131793499, -0.04754279926419258, 0.022570088505744934, -0.046741925179958344, -0.04022572189569473, -0.03165272995829582, 0.02420824021100998, -0.023279955610632896, 0.004275120794773102, 0.02597380429506302, 0.01898435689508915, 0.0056152199395000935, -0.005983803886920214, 0.03465600684285164, 0.02903168834745884, 0.0066618165001273155, -0.033582109957933426, -0.019330188632011414, 0.010411364026367664, 0.03866037726402283, -0.05172918736934662, -0.034601401537656784, 0.012449952773749828, 0.035165656358003616, 0.009246455505490303, -0.026738274842500687, 0.008918825536966324, -0.004200038965791464, 0.007540048100054264, 0.016772853210568428, -0.010902808979153633, 0.02752094715833664, 0.049035340547561646, -0.0009766342118382454, -0.033545706421136856, -0.059555914252996445, -0.017764844000339508, 0.02884967066347599, 0.013815078884363174, -0.01554423850029707, 0.006684568710625172, -0.021532593294978142, -0.03432837873697281, -0.028194410726428032, 0.045540615916252136, 0.019530408084392548, -0.015571541152894497, 0.022897720336914062, 0.017209693789482117, -0.02402622438967228, 0.02326175384223461, 0.01865672692656517, 0.0010545600671321154, -0.0010301015572622418, 0.01799236610531807, 0.022952323779463768, 0.024535872042179108, -0.029832562431693077, 0.04746999591588974, 0.0009328363230451941, -0.01525301206856966, 0.014424835331737995, -0.00506006833165884, -0.017382608726620674, -0.013660364784300327, 0.03978888317942619, -0.016791054978966713, -0.019585013389587402, -0.02888607420027256, -0.10651625692844391, -0.02788498066365719, -0.015535137616097927, 0.024226441979408264, 0.019930845126509666, -0.03782309964299202, 0.02520933374762535, 0.0432836078107357, -0.008946128189563751, 0.05748092010617256, -0.006193123292177916, -0.019530408084392548, -0.02038588747382164, -0.04714236408472061, 0.04186387360095978, -0.0067664762027561665, 0.008045144379138947, 0.02078632451593876, -0.0314343087375164, 0.04055335372686386, 0.00809519924223423, -0.01721879467368126, 0.009965422563254833, 0.018301794305443764, 0.013032406568527222, 0.03267202526330948, -0.028758661821484566, 0.012386246584355831, -0.026629064232110977, -0.05485987663269043, -0.03323627635836601, 0.05121954157948494, -0.04994542524218559, 0.05762653425335884, -0.022879518568515778, 0.06112125888466835, -0.0033832381013780832, 0.00356070464476943, -0.09938120096921921, -0.0011313484283164144, -0.014170011505484581, -0.0898435190320015, -0.011030221357941628, -0.00951038021594286, 0.029814360663294792, -0.025263939052820206, 0.01376047357916832, 0.04470333829522133, -0.05365856736898422, 0.04823446646332741, 0.0018281317315995693, -0.039133623242378235, -0.006830182392150164, -0.020950138568878174, -0.07812163233757019, -0.009810708463191986, 0.12180567532777786, -0.01392428856343031, 0.0029145448934286833, 0.009264657273888588, 0.056243207305669785, 0.005924648605287075, -0.014142708852887154, 0.010138338431715965, 0.02358938381075859, 0.01048417016863823, 0.045504212379455566, -0.009637792594730854, 0.003187570022419095, 0.02571898140013218, 0.03654898330569267, -0.008149804547429085, 0.03223518282175064, 0.007794871460646391, -0.04423009604215622, -0.010921010747551918, -0.021496189758181572, 0.03764108568429947, 0.06945762783288956, -0.036931220442056656, -0.023680392652750015, -0.03745906800031662, 0.006356938276439905, -0.0370040237903595, -0.020695315673947334, 0.04168185964226723, -0.013842381536960602, -0.0006381965940818191, 0.015107398852705956, -0.004020296968519688, 0.030050981789827347, 0.012213330715894699, -0.014543145895004272, -0.010384061373770237, -0.000023232032617670484, 0.013787776231765747, 0.011712783947587013, 0.056133996695280075, -0.032435402274131775, 0.021496189758181572, -0.00022453484416473657, -0.004982711281627417, -0.006739174015820026, -0.021259568631649017, 0.017528222873806953, 0.026465250179171562, 0.05060068517923355, -0.010420464910566807, 0.011321447789669037, 0.05504189431667328, -0.016108490526676178, 0.03731345385313034, 0.04372044652700424, 0.02884967066347599, 0.05056428164243698, 0.022897720336914062, -0.021496189758181572, 0.026519855484366417, -0.024790694937109947, -0.08074267208576202, 0.03108847700059414, -0.03623955324292183, -0.04696034640073776, 0.04342922195792198, 0.02340736612677574, -0.02266109734773636, 0.05871863663196564, 0.02506371960043907, -0.019930845126509666, 0.002623317763209343, -0.05129234865307808, -0.04757920280098915, -0.04524938762187958, 0.07207867503166199, 0.00967419520020485, -0.0071441615000367165, 0.020003652200102806, -0.08358214050531387, 0.001842920552007854, -0.018820542842149734, -0.02888607420027256, 0.0203130804002285, 0.018966155126690865, 0.03669459745287895, -0.03285404294729233, 0.017419012263417244, -0.019585013389587402, -0.016909364610910416, 0.01372407004237175, -0.03363671526312828, -0.09676015377044678, 0.019748827442526817, 0.0646887868642807, 0.08176197111606598, 0.039716076105833054, -0.013514750637114048, 0.013742271810770035, -0.0003154010628350079, 0.029941771179437637, 0.004220515489578247, 0.009328363463282585, -0.02431745082139969, 0.026683669537305832, -0.029905367642641068, 0.0023252652026712894, 0.0003378687833901495, -0.023753199726343155, -0.02686568722128868, -0.05060068517923355, -0.045467808842659, 0.011485262773931026, -0.007458140607923269, 0.018820542842149734, -0.07306156307458878, -0.05784495547413826, 0.021314173936843872, 0.05445944145321846, 0.02377139963209629, -0.03542047739028931, 0.0016916190506890416, 0.017236996442079544, -0.0019566810224205256, 0.0053649465553462505, 0.02240627445280552, -0.015480533242225647, -0.06694579869508743, 0.08926106244325638, -0.030451418831944466, -0.0571896955370903, -0.0338551327586174, 0.0328904464840889, 0.05161997675895691, -0.023425567895174026, 0.009583187289536, -0.011985809542238712, -0.08744089305400848, -0.06195853650569916, -0.04321080073714256, -0.056607238948345184, -0.04321080073714256, 0.014197314158082008, -0.0398980937898159, 0.06388791650533676, 0.014488541521131992, -0.028176208958029747, 0.04310159012675285, 0.0338551327586174, 0.0443757064640522, -0.06195853650569916, -0.026811081916093826, -0.0074035353027284145, 0.026155821979045868, -0.06720062345266342, -0.0063387369737029076, 0.011339649558067322, 0.006457047536969185, -0.03432837873697281, -0.042519137263298035, -0.033509302884340286, -0.005756282713264227, 0.02586459368467331, 0.03727705031633377, -0.009929019026458263, 0.03119768761098385, -0.006284131668508053, -0.030815452337265015, -0.02921370416879654, 0.04706955701112747, 0.030050981789827347, -0.017054978758096695, -0.03147071227431297, 0.05693487077951431, -0.01891154982149601, 0.010065531358122826, 0.026519855484366417, 0.00809519924223423, -0.009291959926486015, 0.04808885231614113, 0.019239181652665138, 0.011357851326465607, 0.018784139305353165, 0.02207864448428154, -0.02679288014769554, -0.022988727316260338, 0.023461971431970596, -0.009446674026548862, -0.05726249888539314, -0.04867130517959595, -0.029432125389575958, 0.025118324905633926, -0.002541410271078348, -0.0025163828395307064, 0.011103027500212193, 0.004295597784221172, -0.09566805511713028, -0.04179107025265694, 0.04681473225355148, 0.10222066193819046, 0.01451584417372942, -0.008850568905472755, 0.033582109957933426, -0.013951591216027737, -0.011275943368673325, -0.03183474764227867, 0.054896280169487, -0.005433202721178532, -0.00129004439804703, -0.0008879009401425719, -0.028467435389757156, -0.04142703488469124, 0.04856209456920624 ]
9,406
asyncclick.types
get_metavar
null
def get_metavar(self, param: "Parameter") -> str: return f"[{'|'.join(self.formats)}]"
(self, param: 'Parameter') -> str
[ 0.07774624973535538, 0.019352128729224205, 0.05748223885893822, -0.04299347102642059, 0.020956361666321754, -0.013568442314863205, 0.025279350578784943, -0.02649519219994545, 0.0025372228119522333, 0.024637656286358833, -0.004162565339356661, 0.018794868141412735, -0.0406968854367733, -0.03352004662156105, 0.028673572465777397, 0.015307770110666752, -0.025346897542476654, 0.026562737300992012, 0.009557857178151608, 0.018153173848986626, 0.05906958505511284, 0.019335241988301277, -0.023404929786920547, -0.06977573782205582, 0.039075762033462524, 0.010030684061348438, 0.010748367756605148, -0.06845857948064804, -0.06008278578519821, -0.034685228019952774, -0.016895117238163948, -0.039852552115917206, -0.014742066152393818, 0.038265202194452286, 0.004973125644028187, 0.030683087185025215, -0.05059247463941574, 0.021412301808595657, -0.09753742814064026, -0.011871331371366978, 0.002309252740815282, -0.018929962068796158, -0.006530920974910259, -0.07186968624591827, 0.008130933158099651, -0.001164125045761466, 0.023354269564151764, 0.049376633018255234, -0.0831499844789505, -0.024857183918356895, 0.04147367179393768, 0.01081591472029686, -0.03856916353106499, -0.05380094423890114, -0.09409254789352417, 0.02218909002840519, 0.058056384325027466, 0.023371156305074692, 0.06552029401063919, 0.04518873989582062, 0.014497209340333939, 0.03519182652235031, 0.002661762060597539, -0.011440721340477467, -0.009042813442647457, -0.021800696849822998, 0.025481991469860077, -0.010165777988731861, -0.0006438044365495443, 0.025009164586663246, 0.013635989278554916, -0.04059556499123573, -0.030784405767917633, 0.003767839167267084, 0.012023312039673328, -0.05214604735374451, -0.0731530711054802, -0.07241005450487137, 0.019841842353343964, -0.04316233843564987, 0.012040198780596256, 0.015501966699957848, -0.004219557624310255, -0.029821865260601044, 0.007497683167457581, -0.06231182813644409, -0.060623157769441605, -0.02619123086333275, 0.009963138028979301, -0.03189892694354057, -0.013146275654435158, -0.06535142660140991, 0.023928416892886162, 0.07241005450487137, -0.07484173774719238, -0.04755287244915962, -0.017747893929481506, -0.033232975751161575, -0.02921394631266594, -0.008873946964740753, -0.006079202517867088, -0.05815770477056503, 0.013982165604829788, -0.0021657159086316824, 0.018693547695875168, -0.04407421872019768, -0.035158056765794754, 0.033553820103406906, -0.019335241988301277, 0.006467596162110567, -0.0012432814110070467, -0.013551555573940277, -0.04549270123243332, -0.062278054654598236, 0.05988014489412308, 0.07450400292873383, 0.010039127431809902, -0.03813010826706886, 0.021513622254133224, 0.0052475337870419025, 0.0092201242223382, 0.004284993279725313, -0.013711979612708092, -0.04518873989582062, 0.012909862212836742, -0.00225437106564641, -0.03559710830450058, 0.0044411951676011086, -0.01795053482055664, 0.0018638665787875652, 0.0008490830659866333, 0.05005210265517235, -0.0585629865527153, -0.026393871754407883, 0.05066002160310745, -0.053665850311517715, 0.030058279633522034, 0.023252949118614197, -0.023337382823228836, 0.07403118163347244, -0.0058934492990374565, 0.0291295126080513, 0.010723037645220757, -0.031730059534311295, -0.02441813051700592, -0.047350235283374786, 0.04208159074187279, 0.03782615065574646, 0.022476162761449814, 0.019672974944114685, 0.007324595004320145, 0.016177434474229813, 0.018254494294524193, -0.03145987167954445, 0.05586111545562744, -0.016895117238163948, -0.009101917035877705, -0.037319548428058624, 0.03840029612183571, -0.009464981034398079, 0.047620419412851334, -0.05140303447842598, 0.002290255157276988, 0.029467245563864708, 0.029416585341095924, 0.06720896065235138, 0.014539426192641258, 0.01898062229156494, 0.028234519064426422, -0.00315358629450202, 0.028437158092856407, -0.03297967463731766, -0.02323606237769127, 0.014303012751042843, 0.08179904520511627, 0.11381617933511734, -0.042486872524023056, 0.07180213928222656, 0.03080129250884056, -0.03502296283841133, -0.0006817994290031493, 0.011997981928288937, -0.004128791857510805, -0.0323379822075367, 0.016616487875580788, -0.06393294781446457, 0.01713152974843979, 0.02345559000968933, -0.06808707118034363, -0.0040907966904342175, 0.03772483021020889, 0.015062913298606873, -0.004757820162922144, 0.02619123086333275, -0.04431063309311867, -0.04478345811367035, 0.03120657242834568, -0.01835581474006176, 0.06687122583389282, -0.0027715254109352827, 0.022847669199109077, 0.047113820910453796, -0.02418171614408493, 0.042182911187410355, 0.04187894985079765, 0.004156232811510563, 0.08531147986650467, -0.01692044734954834, -0.10381927341222763, -0.02115900255739689, -0.0122934989631176, -0.02585349790751934, 0.01972363516688347, -0.020382216200232506, 0.004854918923228979, -0.01608455739915371, -0.03728577494621277, 0.028437158092856407, -0.033232975751161575, 0.007100846152752638, 0.040730658918619156, -0.01703021116554737, 0.047991927713155746, 0.03904198855161667, 0.057651106268167496, -0.01528243999928236, 0.0600152388215065, -0.041541218757629395, -0.05988014489412308, 0.018811754882335663, -0.03921085596084595, -0.02083815634250641, -0.007734096609055996, 0.05802261084318161, -0.01640540361404419, 0.05130171403288841, -0.013315142132341862, -0.03860293701291084, -0.019200148060917854, 0.014235465787351131, 0.02928149327635765, 0.0222566369920969, 0.004643835127353668, 0.026275664567947388, 0.0008949937182478607, -0.02713688462972641, -0.01128874160349369, 0.047755513340234756, 0.022847669199109077, 0.012344158254563808, 0.011525155045092106, 0.07099157571792603, -0.011846001259982586, -0.014640746638178825, -0.01762968674302101, 0.0062565128318965435, -0.041068390011787415, -0.02073683589696884, 0.016827570274472237, -0.010182664729654789, -0.06494614481925964, -0.02975432015955448, 0.0003269154403824359, 0.021902015432715416, -0.0066195763647556305, -0.005268642213195562, 0.022290408611297607, 0.013205379247665405, -0.017747893929481506, 0.016971107572317123, 0.03640766814351082, -0.0164729505777359, -0.062446918338537216, -0.02186824195086956, -0.00546706048771739, 0.022932102903723717, 0.05714450404047966, -0.022003335878252983, -0.00993780791759491, 0.002292365999892354, -0.0014849718427285552, -0.043533846735954285, 0.04934285953640938, 0.027896786108613014, -0.008228031918406487, 0.05045738071203232, 0.048093248158693314, 0.026123683899641037, -0.042824603617191315, 0.0743689090013504, 0.0035926399286836386, 0.042182911187410355, -0.033722687512636185, -0.0052601988427340984, 0.028150085359811783, 0.02082126960158348, 0.0702485665678978, -0.03318231552839279, 0.0316118523478508, -0.01987561583518982, -0.006682901177555323, -0.007615889888256788, 0.020804382860660553, -0.016700919717550278, -0.08828353136777878, 0.014446549117565155, 0.0035356474108994007, -0.029720546677708626, 0.04667476564645767, -0.020567968487739563, -0.013458679430186749, 0.07781379669904709, -0.002697646152228117, 0.009481867775321007, -0.0048844702541828156, 0.06683745235204697, -0.06943800300359726, 0.04724891483783722, 0.05302415415644646, 0.0322197750210762, 0.0275252778083086, 0.015924133360385895, -0.0006453875685110688, -0.05363207682967186, 0.03017648681998253, -0.06025165319442749, -0.06302106380462646, -0.01005601417273283, 0.017224406823515892, 0.03152741864323616, 0.02034844271838665, 0.002296587685123086, 0.0017847103299573064, -0.012892975471913815, -0.025397557765245438, -0.0026174343656748533, 0.0005857564974576235, -0.016844457015395164, -0.05461150407791138, 0.015561070293188095, 0.05396980792284012, 0.017359500750899315, -0.008101381361484528, 0.004922465421259403, -0.02467142976820469, 0.00466916523873806, 0.0410008430480957, 0.04157499223947525, 0.007134619634598494, 0.0013699313858523965, 0.007151506375521421, 0.0013541001826524734, 0.04819456860423088, 0.01685290038585663, 0.02625877782702446, -0.030345352366566658, -0.02482341043651104, 0.013298255391418934, -0.05927222594618797, 0.061568811535835266, 0.047113820910453796, -0.02060174196958542, 0.05180831626057625, 0.009574743919074535, 0.031105253845453262, -0.0000854887839523144, 0.011440721340477467, -0.009237010963261127, 0.06376408040523529, -0.0072274962440133095, -0.027322638779878616, 0.004331431817263365, 0.021513622254133224, -0.0901748389005661, -0.017933648079633713, 0.06903272122144699, 0.008721967227756977, 0.005479725543409586, -0.04410799220204353, -0.08470355719327927, 0.0263432115316391, 0.01644762046635151, 0.02218909002840519, 0.0257690642029047, -0.0158059261739254, 0.0021140004973858595, 0.011567371897399426, -0.0009155743755400181, -0.01472517941147089, 0.02060174196958542, -0.0036728514824062586, -0.027643484994769096, 0.003510317299515009, 0.015924133360385895, -0.022459276020526886, -0.061974093317985535, -0.021327869966626167, 0.008789514191448689, -0.03711690753698349, 0.007607446517795324, 0.04532383382320404, -0.05170699581503868, -0.03024403378367424, -0.006670236121863127, -0.018068740144371986, -0.041068390011787415, 0.034026648849248886, 0.049680594354867935, -0.06842480599880219, -0.023489363491535187, 0.01548507995903492, -0.05991391837596893, -0.01827138103544712, -0.026376985013484955, 0.05170699581503868, 0.011727795004844666, -0.017123086377978325, 0.013990608975291252, -0.033553820103406906, 0.0025055601727217436, -0.0006823271396569908, -0.0025456661824136972, 0.03183137997984886, 0.08740542083978653, 0.0696406438946724, 0.03412796929478645, -0.053361888974905014, 0.02433369681239128, 0.008806400001049042, -0.03286146745085716, -0.0048886919394135475, 0.0445132739841938, 0.03152741864323616, -0.062041640281677246, 0.0050955540500581264, -0.03041289933025837, 0.009684507735073566, -0.03806256130337715, 0.004143567755818367, 0.011339401826262474, 0.05508432909846306, -0.045357607305049896, 0.015628617256879807, 0.04859984666109085, -0.018001195043325424, 0.00190502789337188, -0.0006833825609646738, 0.0030733747407794, 0.0018227053806185722, -0.060454294085502625, -0.012352601625025272, 0.055590931326150894, 0.020466648042201996, -0.05994769185781479, 0.0749092847108841, -0.08645977079868317, 0.025684630498290062, -0.03080129250884056, -0.016093000769615173, -0.023371156305074692, 0.06592557579278946, 0.04116971045732498, 0.0209225881844759, 0.014851829968392849, -0.004635391756892204, -0.045864205807447433, 0.04191272333264351, 0.016456063836812973, -0.03296278789639473, -0.009313000366091728, -0.02938281185925007, 0.009929364547133446, -0.018811754882335663, 0.007333037909120321, -0.022965876385569572, 0.05282151699066162, 0.051200393587350845, 0.024806523695588112, -0.041777629405260086, -0.005471282172948122, -0.01400749571621418, -0.0629197433590889, 0.012158405035734177, 0.038265202194452286, -0.019520994275808334, 0.038028787821531296, -0.004335653502494097, 0.01754525490105152, -0.03049733303487301, -0.009448094293475151, 0.005074445623904467, 0.05842789262533188, -0.011035441420972347, 0.03596861660480499, 0.09199859946966171, 0.006197409238666296, 0.020314669236540794, -0.019892502576112747, -0.03593484312295914, 0.0509302094578743, 0.043939124792814255, -0.042014043778181076, -0.04255441948771477, -0.03458390757441521, 0.018406474962830544, -0.0895669162273407, 0.03422928974032402, 0.005222203675657511, -0.0270693376660347, -0.0002172840031562373, -0.006564694456756115, -0.034921642392873764, -0.01860911399126053, 0.04930908605456352, -0.026680944487452507, -0.005243312101811171, -0.02386086992919445, 0.02831895276904106, 0.08119112998247147, 0.04309479147195816, -0.029264606535434723, -0.04181140288710594, -0.014851829968392849, -0.0901748389005661, -0.017984308302402496, 0.012149961665272713, -0.04819456860423088, -0.02968677319586277, -0.04326365888118744, 0.045965526252985, 0.03230420872569084, -0.012276612222194672, -0.0012031755177304149, 0.027896786108613014, -0.014058155938982964, 0.0925389751791954, -0.04522251337766647, 0.055354516953229904, 0.006712452974170446, 0.011710908263921738, 0.024367470294237137, -0.018896188586950302, 0.004491855390369892, -0.03529314696788788, 0.023016536608338356, 0.032270435243844986, 0.018085626885294914, 0.01321382261812687, 0.07045120000839233, -0.01452253945171833, -0.05788751691579819, 0.009642290882766247, -0.07349080592393875, 0.027913670986890793, -0.03218600153923035, 0.05302415415644646, 0.029973845928907394, -0.021175889298319817, 0.03370580077171326, 0.0004889219999313354, 0.004593175370246172, 0.007447022944688797, 0.04660721868276596, 0.0106892641633749, -0.012605901807546616, 0.02235795557498932, 0.0005604265024885535, 0.02975432015955448, -0.03495541587471962, -0.009363660588860512, 0.02544821798801422, -0.07038365304470062, 0.010030684061348438, -0.0308857262134552, -0.044817231595516205, 0.027643484994769096, 0.04062933847308159, 0.03590106964111328, -0.0020401212386786938, 0.05038983374834061, -0.03860293701291084, 0.019014393910765648, 0.008346238173544407, -0.008958380669355392, 0.010419078171253204, 0.05616507679224014, 0.015856586396694183, -0.022222863510251045, -0.014674519188702106, 0.00016332579252775759, -0.07957001030445099, 0.0016158436192199588, 0.05005210265517235, 0.004800037015229464, 0.010993224568665028, -0.0026216560509055853, 0.01828826777637005, -0.016785353422164917, -0.0075863380916416645, 0.011972651816904545, 0.014328342862427235, 0.025279350578784943, 0.0005477615050040185, 0.06008278578519821, 0.04653967171907425, 0.013247596099972725, 0.06403426826000214, 0.0066153546795248985, -0.053429435938596725, 0.0033076773397624493, -0.04204781726002693, 0.0028369612991809845, -0.0488700345158577, -0.05640149116516113, -0.03964991122484207, 0.04545892775058746, -0.031324781477451324, -0.04454704746603966, 0.054003581404685974, -0.07004592567682266, -0.02146296203136444, 0.053125474601984024, -0.038906898349523544, -0.006855989806354046, -0.029315264895558357, -0.0168360136449337, -0.05126794055104256, -0.056469038128852844, -0.0016190098831430078, -0.10314380377531052, 0.032371751964092255, -0.0029213945381343365, 0.01584814302623272, -0.0010707206092774868, -0.028690459206700325, -0.003717179177328944, -0.0532943420112133, -0.02099013514816761, -0.02977120690047741, 0.0340941958129406, 0.02762659825384617, -0.028150085359811783, -0.0333680659532547, -0.0212265495210886, 0.0025709960609674454, 0.03422928974032402, -0.045864205807447433, -0.03975123167037964, -0.009836487472057343, -0.020095141604542732, 0.012268168851733208, 0.02249304950237274, -0.03856916353106499, 0.003499763086438179, 0.047451552003622055, -0.03208468109369278, -0.01696266420185566, 0.04346629977226257, -0.020567968487739563, -0.013272925280034542, -0.005361518822610378, -0.051200393587350845, -0.012825428508222103, -0.015147346071898937, 0.012377931736409664, -0.07531456649303436, -0.040899522602558136, -0.051842089742422104, -0.004766263533383608, 0.02272946387529373, -0.0031915814615786076, -0.02642764523625374, -0.017899874597787857, -0.02131098322570324, -0.0024443459697067738, 0.008451780304312706, 0.03272637352347374, 0.0400889627635479, 0.05245000869035721, 0.025735290721058846, 0.015071356669068336, -0.07463909685611725, -0.02490784414112568, 0.05282151699066162, 0.006725118029862642, 0.013256038539111614, -0.015138902701437473, -0.0018322040559723973, -0.025752177461981773, -0.019014393910765648, -0.02929838001728058, -0.045695338398218155, -0.03178071975708008, -0.008607981726527214, 0.03431371971964836, -0.01940278895199299, 0.039075762033462524, -0.023320496082305908, 0.04603307321667671, 0.027423959225416183, 0.02235795557498932, -0.005049115512520075, 0.007029077969491482, 0.015214893035590649, -0.009245454333722591, 0.0037024032790213823, 0.06845857948064804, -0.01560328621417284, -0.04079820588231087, -0.029484132304787636, 0.01687823049724102, 0.11057393997907639, 0.009802713990211487, -0.033570706844329834, 0.04204781726002693, -0.020128915086388588, -0.014471879228949547, 0.0071430630050599575, 0.027255091816186905, -0.03502296283841133, -0.014345229603350163, 0.014632303267717361, -0.0018406474264338613, 0.0240128505975008, 0.017427047714591026, 0.04059556499123573, -0.044648364186286926, 0.04103461652994156, 0.010925677604973316, -0.029264606535434723, -0.0046100621111691, 0.03613748028874397, -0.03677917644381523, -0.03377334773540497, 0.06525010615587234, 0.014243909157812595, 0.012057085521519184, 0.022864555940032005, 0.031966473907232285, 0.0058934492990374565, -0.029399698600172997, 0.12719042599201202, -0.025819724425673485, 0.0008986876928247511, 0.041304804384708405, 0.003976811654865742, 0.003064931370317936, -0.008831730112433434, -0.00810560304671526, -0.019909389317035675, -0.005108218640089035, -0.04302724450826645, -0.0550505556166172, 0.0004596341459546238, 0.024046624079346657, -0.050254739820957184, 0.047350235283374786, 0.0386367104947567, -0.006155192852020264, 0.0017023878172039986, -0.06521633267402649, -0.022813895717263222, 0.03166251257061958, 0.00630717258900404, -0.024485677480697632, 0.005424844101071358, -0.009127247147262096, -0.04123725742101669 ]
9,407
asyncclick.types
get_missing_message
Optionally might return extra information about a missing parameter. .. versionadded:: 2.0
def get_missing_message(self, param: "Parameter") -> t.Optional[str]: """Optionally might return extra information about a missing parameter. .. versionadded:: 2.0 """
(self, param: 'Parameter') -> Optional[str]
[ 0.044618330895900726, 0.006867904216051102, 0.08809690177440643, 0.045791614800691605, 0.05252961814403534, -0.04662967473268509, 0.049479078501462936, 0.0039032658096402884, 0.04123256728053093, -0.02354949526488781, 0.021739283576607704, -0.022091269493103027, 0.0014655579579994082, -0.09104686975479126, 0.00114185712300241, 0.034528084099292755, 0.03109203651547432, 0.05031714215874672, 0.011933978646993637, -0.04083029925823212, 0.029600290581583977, 0.007907099090516567, -0.012361389584839344, 0.04455128684639931, -0.021722523495554924, -0.01863846182823181, 0.06570392847061157, -0.05195973813533783, -0.003008636413142085, -0.024840107187628746, -0.05360233783721924, -0.05145690217614174, -0.02133701555430889, 0.04247289523482323, -0.04860749840736389, 0.10090246051549911, -0.0064363032579422, 0.031159082427620888, -0.11457960307598114, -0.03419286012649536, -0.023365121334791183, 0.04176892712712288, -0.00004317974890000187, -0.0289633646607399, 0.014146457426249981, -0.029784662649035454, 0.005828709341585636, 0.06660903245210648, -0.11270234733819962, 0.07622996717691422, 0.03533262386918068, 0.025996631011366844, -0.028728706762194633, -0.02939915470778942, -0.06137953698635101, 0.007416833657771349, 0.04676376283168793, -0.0037838423158973455, 0.02195717953145504, 0.050082482397556305, 0.025493795052170753, 0.023331599310040474, 0.0006940186722204089, -0.008942103013396263, 0.006419541779905558, -0.027421332895755768, 0.05816138535737991, -0.03330451622605324, 0.02036486566066742, 0.0340755321085453, 0.05568072572350502, -0.015177272260189056, -0.05229496210813522, 0.06087670102715492, 0.0589994452893734, -0.04830579459667206, -0.02348244935274124, -0.0386178195476532, 0.05712218955159187, 0.013459248468279839, 0.02148786559700966, 0.010559559799730778, -0.053367678076028824, -0.00039126939373090863, 0.008556596003472805, -0.03392468020319939, -0.016803108155727386, -0.04404845088720322, 0.019409475848078728, 0.004104400519281626, -0.051758602261543274, -0.02242649346590042, 0.010542798787355423, 0.029030408710241318, 0.008330319076776505, -0.03486330807209015, 0.029717618599534035, -0.004848178941756487, 0.014816906303167343, -0.02415289729833603, 0.03680760785937309, -0.025493795052170753, 0.036070115864276886, -0.0101908128708601, 0.05246257409453392, -0.04280811920762062, -0.014565488323569298, -0.007031325716525316, 0.05842956528067589, 0.022845523431897163, -0.0052169254049658775, -0.0176160279661417, -0.08219695091247559, -0.04126608744263649, 0.02418641932308674, -0.018420565873384476, 0.008011856116354465, -0.015370026230812073, -0.0439814031124115, 0.016962340101599693, 0.010618223808705807, 0.013626860454678535, -0.09272298961877823, -0.11162963509559631, 0.021538149565458298, -0.047937050461769104, -0.03043835051357746, -0.028544334694743156, 0.03734396770596504, -0.021772807464003563, 0.03744453564286232, 0.008518883027136326, -0.020800655707716942, -0.07683336734771729, -0.045758090913295746, -0.01878931187093258, 0.05306597799062729, 0.020180491730570793, 0.01719699800014496, 0.034595128148794174, 0.009377894923090935, 0.02133701555430889, -0.043646179139614105, -0.04119904339313507, 0.03958996757864952, -0.011959120631217957, 0.027471616864204407, -0.015830958262085915, -0.013316778466105461, 0.00031008230871520936, 0.02735428884625435, -0.011037253774702549, -0.05360233783721924, -0.04341152310371399, 0.0014372734585776925, 0.00327891088090837, 0.05889887735247612, -0.015579541213810444, -0.004357913509011269, -0.056384697556495667, 0.048473406583070755, -0.07917993515729904, 0.022577345371246338, 0.0011952834902331233, 0.03171220049262047, 0.037209875881671906, -0.014263786375522614, 0.04984782636165619, 0.03420962020754814, -0.01173284463584423, -0.0493449904024601, 0.021571671590209007, -0.049546126276254654, -0.04532230272889137, 0.08420830219984055, 0.09681272506713867, -0.03151106834411621, 0.012520620599389076, -0.010634984821081161, -0.014305689372122288, 0.048506930470466614, -0.022158313542604446, -0.0017494509229436517, 0.0035449950955808163, 0.03380735218524933, -0.007571874652057886, 0.006855333223938942, -0.013727427460253239, -0.06034034118056297, -0.008875058963894844, 0.05018305033445358, 0.006122030317783356, 0.02784036286175251, 0.0836719423532486, -0.009285707958042622, 0.015638204291462898, 0.04478594288229942, 0.02623128704726696, 0.06801697611808777, 0.00045517151011154056, 0.03596954792737961, 0.007265982683748007, -0.04642853885889053, 0.03590250387787819, -0.05796024948358536, -0.03152782842516899, 0.02576197311282158, 0.011833411641418934, -0.07569360733032227, 0.00015229126438498497, 0.01650978811085224, -0.01661873608827591, 0.05320006608963013, 0.0018887784099206328, 0.01448168233036995, -0.03166191652417183, -0.005099596921354532, 0.013786091469228268, -0.01768307201564312, 0.02299637533724308, 0.04247289523482323, -0.06258634477853775, 0.09413093328475952, 0.040327463299036026, 0.036740563809871674, 0.027454854920506477, 0.06439655274152756, -0.020079925656318665, -0.05554663762450218, -0.02251029945909977, -0.02730400487780571, 0.023264553397893906, -0.004906842950731516, 0.01182503066956997, -0.026030153036117554, -0.009553886950016022, -0.02148786559700966, -0.04639501869678497, 0.016719302162528038, -0.02891308069229126, -0.009411416947841644, 0.00012145326763857156, -0.022359449416399002, 0.12135113030672073, 0.025560839101672173, -0.0439814031124115, -0.01713833399116993, 0.0589994452893734, -0.0057784258387982845, 0.024303749203681946, 0.019375953823328018, 0.06161419302225113, -0.03410905599594116, 0.000374246301362291, 0.010601462796330452, -0.0482722744345665, -0.060642044991254807, 0.002746742684394121, 0.05816138535737991, 0.022275643423199654, -0.06365905702114105, 0.004965507425367832, 0.005187593400478363, 0.06711187213659286, -0.011674179695546627, -0.0035177581012248993, -0.029265064746141434, 0.03320394828915596, 0.01758250594139099, 0.026398899033665657, 0.03146078437566757, 0.01153170969337225, -0.0004407673259265721, -0.029801424592733383, 0.027488376945257187, -0.006260310299694538, 0.0131407855078578, 0.010693649761378765, 0.004163064528256655, 0.052663709968328476, 0.0056443363428115845, -0.03196362033486366, 0.05078645423054695, 0.03355593606829643, -0.03643885999917984, 0.07944811880588531, 0.02041514962911606, 0.001031861756928265, -0.07160387188196182, 0.016870154067873955, -0.014003987424075603, 0.018068579956889153, -0.023147225379943848, 0.04569104686379433, 0.014272167347371578, 0.01148142572492361, -0.020029641687870026, 0.030321022495627403, 0.0493449904024601, -0.0024932294618338346, 0.010500895790755749, 0.05474209785461426, 0.014875570312142372, -0.047467734664678574, -0.04227176308631897, -0.0063944002613425255, -0.004927794449031353, 0.0012130922405049205, -0.008443457074463367, -0.039858147501945496, -0.022124791517853737, 0.03982462361454964, 0.0294997226446867, 0.009210282936692238, 0.017331086099147797, 0.01769983395934105, 0.01825295388698578, 0.007911289110779762, 0.01661873608827591, 0.04019337147474289, 0.03318718820810318, -0.0007731106015853584, 0.01500966027379036, -0.025443511083722115, -0.03384087607264519, -0.03912065550684929, -0.0395229235291481, -0.0035680418368428946, -0.0036204205825924873, 0.029130976647138596, -0.00040200704825110734, 0.004613521974533796, -0.046227406710386276, -0.055881861597299576, -0.06305565685033798, -0.01924186386168003, -0.008564976043999195, -0.011456284672021866, 0.05088702216744423, 0.06520108878612518, 0.014934234321117401, -0.05765854939818382, -0.051155202090740204, 0.014247025363147259, 0.017548982053995132, 0.006855333223938942, 0.010065103881061077, 0.008858297020196915, -0.0009910062653943896, -0.01527783926576376, -0.03419286012649536, 0.008212991058826447, -0.030354544520378113, 0.03965701162815094, 0.07059819996356964, 0.011062395758926868, 0.012302725575864315, 0.018521131947636604, 0.03312014415860176, 0.04760182648897171, 0.026415660977363586, -0.01981174573302269, 0.014548726379871368, 0.020063163712620735, -0.009143237955868244, 0.019660893827676773, 0.020599521696567535, 0.029281826689839363, -0.030890902504324913, -0.03697521984577179, -0.037109311670064926, -0.03979110345244408, -0.005103787407279015, -0.04458480700850487, 0.003821555059403181, 0.01924186386168003, 0.025024481117725372, -0.001017195638269186, -0.02670060098171234, -0.02413613721728325, -0.008916961960494518, -0.022728195413947105, -0.04156779125332832, 0.009696357883512974, -0.019057491794228554, -0.004571618977934122, -0.012017784640192986, -0.0019956310279667377, -0.03001932054758072, 0.006184884812682867, -0.005334253888577223, 0.00041641120333224535, 0.021236447617411613, 0.017833923920989037, -0.028259392827749252, -0.02242649346590042, 0.011137821711599827, -0.04126608744263649, -0.04807113856077194, 0.0052713993936777115, 0.02239297144114971, -0.05933466926217079, -0.043646179139614105, 0.007886147126555443, 0.0012340437388047576, 0.00616393331438303, -0.008632021024823189, 0.006750575732439756, -0.03105851449072361, -0.030740052461624146, -0.03176248446106911, -0.03422638401389122, -0.039355311542749405, -0.033388324081897736, 0.02239297144114971, 0.01825295388698578, 0.028795752674341202, 0.010148909874260426, -0.02737104892730713, 0.005426440387964249, -0.0074461656622588634, -0.07207318395376205, 0.026331854984164238, 0.08407420665025711, 0.04709899052977562, 0.04666319862008095, -0.04438367486000061, 0.0017138333059847355, 0.02616424299776554, -0.029248304665088654, -0.044752418994903564, -0.0026796977035701275, 0.024504883214831352, -0.05849660933017731, 0.0005683096242137253, -0.03258378431200981, -0.0015650775749236345, -0.055311981588602066, -0.01882283389568329, 0.023314837366342545, 0.011406000703573227, 0.03519853204488754, 0.005619194358587265, 0.05568072572350502, 0.007454546168446541, 0.018604937940835953, -0.006897236220538616, 0.005698809865862131, 0.022895807400345802, -0.042070627212524414, -0.01443139836192131, 0.00268388818949461, 0.0330866202712059, -0.03804793581366539, 0.016467884182929993, -0.05983750522136688, -0.08481170237064362, -0.00654525076970458, -0.02349921129643917, -0.0022145742550492287, -0.0019547755364328623, 0.08709122985601425, -0.04545639082789421, 0.004295059014111757, 0.005732332356274128, 0.025024481117725372, 0.04589218273758888, -0.035567279905080795, -0.05283132195472717, -0.012989934533834457, 0.0009815781377255917, 0.011757985688745975, -0.00826746504753828, -0.026952018961310387, 0.0012466147309169173, -0.018990445882081985, 0.008070521056652069, 0.04277459904551506, 0.03062272258102894, 0.018504371866583824, -0.00007398500747513026, 0.03476274013519287, -0.0008359651546925306, -0.018554655835032463, 0.01261280756443739, 0.005263018887490034, -0.024773063138127327, 0.002887117676436901, 0.00328519637696445, -0.05514436587691307, -0.027052586898207664, 0.02026429772377014, -0.0003103442140854895, -0.014808525331318378, -0.00910971499979496, -0.0025120857171714306, 0.014867189340293407, -0.044182538986206055, -0.0021003885194659233, 0.024957435205578804, -0.006511728744953871, -0.01870550587773323, 0.023918241262435913, -0.018956923857331276, 0.0022208597511053085, -0.15366673469543457, -0.0014404160901904106, 0.04693137854337692, 0.051758602261543274, 0.028477288782596588, -0.026398899033665657, 0.028007974848151207, 0.034092292189598083, 0.022124791517853737, 0.023951763287186623, -0.010911544784903526, -0.02031458169221878, -0.024454599246382713, 0.06965956836938858, 0.03303633630275726, 0.0069559006951749325, 0.016786348074674606, 0.03109203651547432, -0.061882372945547104, 0.026331854984164238, 0.014473301358520985, -0.03603659197688103, -0.056988101452589035, -0.05159099027514458, 0.03573489189147949, 0.016291892156004906, -0.014900712296366692, 0.0294997226446867, 0.03466217219829559, -0.017548982053995132, 0.040360983461141586, -0.07086637616157532, 0.026633556932210922, -0.0854821503162384, -0.015143749304115772, 0.03590250387787819, -0.02561112307012081, 0.007580255623906851, 0.009009147994220257, 0.01667740009725094, -0.010224335826933384, -0.05769206956028938, 0.030253976583480835, -0.004810465965420008, 0.002401042729616165, -0.02616424299776554, -0.00749225914478302, -0.04448423907160759, -0.014540346339344978, 0.034008488059043884, 0.06533518433570862, 0.0005562625010497868, 0.034997399896383286, 0.03260054439306259, 0.012394911609590054, 0.010006439872086048, -0.006298023276031017, 0.05313302204012871, -0.015168891288340092, -0.003888599807396531, -0.013517912477254868, -0.007513210643082857, -0.00910971499979496, -0.02095150761306286, 0.004441719502210617, -0.015026421286165714, 0.0010370996315032244, -0.007454546168446541, 0.01531136129051447, -0.03246645629405975, 0.01989555172622204, 0.06372610479593277, 0.008284226059913635, -0.026532988995313644, 0.02033134363591671, 0.0015053658280521631, 0.007886147126555443, 0.03058920055627823, 0.02614748105406761, -0.025510555133223534, 0.007630539126694202, -0.02514180913567543, -0.030170170590281487, -0.013786091469228268, 0.004024784546345472, -0.03841668367385864, -0.04280811920762062, 0.04699842259287834, -0.01707966811954975, 0.026633556932210922, 0.07730267941951752, 0.027605706825852394, -0.022577345371246338, 0.0375450998544693, -0.02889631874859333, 0.0012403292348608375, 0.013853136450052261, 0.016291892156004906, 0.039388835430145264, 0.06952548027038574, 0.023281315341591835, -0.019141297787427902, 0.018102101981639862, -0.04508764296770096, 0.026868212968111038, 0.015143749304115772, -0.017968012019991875, -0.051725082099437714, -0.03281844034790993, -0.028561094775795937, 0.004395626485347748, 0.01870550587773323, 0.0006102126790210605, 0.029801424592733383, 0.008372222073376179, -0.04669671878218651, 0.019593849778175354, -0.04421606287360191, 0.02675088495016098, -0.020180491730570793, 0.005070264916867018, -0.05853012949228287, -0.03570136800408363, -0.07113455981016159, -0.021052075549960136, -0.007186367176473141, 0.037779759615659714, 0.00550186587497592, -0.013886659406125546, -0.045791614800691605, 0.0044668614864349365, 0.012520620599389076, -0.03224856033921242, -0.015680108219385147, 0.0661732405424118, -0.00966283492743969, -0.004881701432168484, -0.08776167780160904, -0.002176861511543393, -0.005464153364300728, 0.06439655274152756, -0.05145690217614174, -0.04971373826265335, 0.06932434439659119, -0.006256120279431343, -0.025309421122074127, 0.0037545100785791874, -0.027940930798649788, 0.007886147126555443, 0.018319997936487198, -0.03249998018145561, -0.05527845770120621, 0.05950228124856949, -0.02525913715362549, -0.012713374570012093, -0.04582513868808746, -0.056015949696302414, -0.028292914852499962, -0.007018755190074444, -0.018923401832580566, -0.04542286694049835, -0.037243399769067764, -0.10204222053289413, 0.022359449416399002, -0.034595128148794174, -0.010752313770353794, 0.002899688668549061, 0.05366938188672066, -0.03276815637946129, -0.022778479382395744, -0.00442076800391078, -0.048506930470466614, 0.015738772228360176, 0.016358936205506325, -0.0004981220699846745, 0.09419798105955124, -0.024773063138127327, -0.038282595574855804, 0.03865133970975876, -0.010810977779328823, 0.05625060573220253, 0.016945580020546913, -0.013769330456852913, 0.010794216766953468, 0.006872094236314297, -0.053367678076028824, -0.05185917019844055, -0.020599521696567535, 0.09158322960138321, 0.009721499867737293, -0.040997911244630814, -0.03332127630710602, -0.014666055329144001, -0.012386531569063663, 0.0007306837942451239, 0.0013681334676221013, 0.022108031436800957, -0.02143758162856102, 0.011129440739750862, -0.03784680366516113, 0.02775655686855316, 0.05098759010434151, -0.0557812936604023, -0.05021657422184944, -0.0395229235291481, -0.0300360806286335, -0.008632021024823189, 0.004001738037914038, -0.08467761427164078, -0.016886914148926735, 0.024957435205578804, 0.03640533983707428, 0.012931270524859428, -0.02779007889330387, -0.019510043784976006, -0.00014286309306044132, -0.01527783926576376, 0.006650008261203766, -0.010107006877660751, 0.025326183065772057, 0.05782616138458252, -0.03482978418469429, -0.08266627043485641, 0.03482978418469429, 0.036070115864276886, 0.0364723838865757, 0.04552343487739563, -0.02185661345720291, 0.046227406710386276, 0.0940638855099678, -0.022292403504252434, 0.019057491794228554, 0.013920181430876255, 0.0012958507286384702, 0.027538660913705826, -0.017448415979743004, 0.07274363189935684, 0.0364723838865757, -0.008569166995584965, 0.06721243262290955, 0.055345501750707626, 0.007043896708637476, 0.0036057543475180864, -0.0027551231905817986, -0.028024736791849136, 0.0536358579993248, -0.07978334277868271, 0.0034863308537751436, 0.02779007889330387, -0.009721499867737293, -0.015579541213810444, 0.024236703291535378, 0.05628412961959839, -0.001165951369330287, 0.02889631874859333, -0.054272785782814026, 0.04002575948834419, 0.051725082099437714, 0.027119630947709084, -0.019979357719421387, 0.05306597799062729, -0.03637181594967842, 0.044182538986206055 ]
9,408
asyncclick.types
shell_complete
Return a list of :class:`~click.shell_completion.CompletionItem` objects for the incomplete value. Most types do not provide completions, but some do, and this allows custom types to provide custom completions as well. :param ctx: Invocation context for this command. :param param: The parameter that is requesting completion. :param incomplete: Value being completed. May be empty. .. versionadded:: 8.0
def shell_complete( self, ctx: "Context", param: "Parameter", incomplete: str ) -> t.List["CompletionItem"]: """Return a list of :class:`~click.shell_completion.CompletionItem` objects for the incomplete value. Most types do not provide completions, but some do, and this allows custom types to provide custom completions as well. :param ctx: Invocation context for this command. :param param: The parameter that is requesting completion. :param incomplete: Value being completed. May be empty. .. versionadded:: 8.0 """ return []
(self, ctx: 'Context', param: 'Parameter', incomplete: str) -> List[ForwardRef('CompletionItem')]
[ 0.04539463296532631, 0.023543715476989746, -0.057486046105623245, -0.06543183326721191, 0.07289396971464157, 0.021833643317222595, 0.06512091308832169, -0.050300292670726776, 0.0328541062772274, -0.06529364734888077, 0.01647023670375347, 0.0041305143386125565, -0.0422508642077446, -0.024994684383273125, -0.054134998470544815, 0.04884932190179825, 0.01787802204489708, 0.02561652846634388, 0.013827398419380188, 0.015338825061917305, 0.03820887580513954, 0.06975019723176956, -0.007712596096098423, 0.020296305418014526, -0.025150146335363388, -0.06809194386005402, 0.07579590380191803, -0.06681371480226517, -0.008636726066470146, -0.04577464610338211, 0.03710337355732918, 0.007449176162481308, -0.06094073876738548, 0.0072289397940039635, -0.018966250121593475, 0.026497475802898407, 0.03641243651509285, 0.08712729066610336, 0.040765345096588135, -0.029192132875323296, -0.061009831726551056, -0.004979072604328394, -0.02053813450038433, -0.02266276814043522, 0.05755514279007912, 0.01575338840484619, 0.013335105031728745, 0.030124898999929428, -0.007211666088551283, 0.012816901318728924, 0.03534148260951042, -0.0160470362752676, -0.036757905036211014, -0.013723757117986679, -0.02616927959024906, 0.0320940725505352, -0.008675591088831425, 0.043149083852767944, 0.016323411837220192, 0.0676082894206047, 0.02724023349583149, 0.006106165237724781, -0.02884666435420513, -0.05313313752412796, 0.08768004179000854, 0.016012489795684814, 0.05876428261399269, -0.016522057354450226, -0.03366595879197121, 0.016288865357637405, -0.007613273803144693, 0.024027371779084206, -0.006347993388772011, 0.03900345414876938, 0.024424660950899124, -0.03565240278840065, 0.00821352656930685, -0.003005580510944128, 0.006075936835259199, -0.024493753910064697, 0.008062383159995079, 0.04691469669342041, 0.0029645562171936035, 0.004797701258212328, -0.05955886095762253, 0.02026175893843174, -0.011383204720914364, -0.006559593137353659, -0.03516874834895134, 0.05306404456496239, -0.010795907117426395, -0.00166580849327147, -0.00809693057090044, 0.02591017819941044, 0.03181769698858261, -0.056622374802827835, -0.032543182373046875, 0.032923199236392975, -0.05765878036618233, -0.021920010447502136, -0.03275046497583389, 0.03516874834895134, 0.030245814472436905, 0.00336832320317626, 0.03658517077565193, -0.0022110019344836473, -0.008273983374238014, -0.024873770773410797, 0.037414297461509705, 0.054515015333890915, -0.006248671095818281, -0.01056271605193615, 0.029416687786579132, -0.02703295275568962, 0.018897155299782753, 0.04504916071891785, -0.01786074973642826, 0.0058859288692474365, -0.036757905036211014, -0.012739170342683792, 0.047260165214538574, -0.012635529972612858, 0.002457148628309369, -0.050300292670726776, 0.059489767998456955, 0.04269997403025627, -0.04884932190179825, -0.004460868891328573, -0.0694047287106514, 0.07745415717363358, 0.005454092286527157, 0.024804675951600075, -0.027188412845134735, -0.018845336511731148, 0.0038778898306190968, -0.002041506115347147, 0.006559593137353659, -0.013896492309868336, 0.007090752013027668, 0.0013181802351027727, 0.014811985194683075, -0.031040392816066742, 0.02772388979792595, -0.027689343318343163, 0.056898750364780426, 0.012428248301148415, 0.05482593551278114, 0.0009495000704191625, -0.00716416398063302, 0.044565506279468536, -0.04919479042291641, 0.0247355829924345, -0.013127823360264301, -0.005056803114712238, 0.04242359846830368, 0.01223824080079794, -0.02648020163178444, -0.01977810263633728, -0.04138718917965889, -0.04145628586411476, 0.018776241689920425, -0.03173132985830307, -0.015062449499964714, 0.04176720604300499, 0.048020195215940475, 0.03831251710653305, -0.03200770542025566, 0.031109485775232315, -0.029658516868948936, -0.014941535890102386, 0.003759135026484728, -0.009059925563633442, 0.0411108136177063, -0.017653467133641243, 0.05600053071975708, 0.055862344801425934, -0.05769332870841026, 0.004417685326188803, 0.05879883095622063, -0.088301882147789, -0.05334042012691498, 0.0007632706547155976, 0.020019929856061935, -0.01692798361182213, 0.028898485004901886, 0.029934892430901527, 0.014596066437661648, 0.047640178352594376, -0.002774548251181841, -0.004948843736201525, -0.07337762415409088, 0.006382540334016085, 0.05790061131119728, -0.004324840381741524, -0.04995482414960861, 0.023906458169221878, -0.04038533195853233, 0.044289130717515945, -0.021660909056663513, -0.05264947935938835, -0.040868986397981644, -0.06895562261343002, 0.015304278582334518, -0.0031178579665720463, -0.011236380785703659, 0.04608557000756264, -0.022990964353084564, 0.010338161140680313, 0.004741562530398369, -0.08622907102108002, -0.028933031484484673, 0.0007071319269016385, -0.03544512391090393, -0.0011335702147334814, -0.011685489676892757, -0.04542917758226395, 0.01036407146602869, -0.05973159521818161, 0.037794310599565506, -0.015822481364011765, 0.03086765855550766, -0.01638386957347393, 0.03430507704615593, 0.000894980737939477, 0.07365399599075317, -0.010821817442774773, 0.00024614669382572174, -0.03886526823043823, -0.040488969534635544, -0.0022865731734782457, -0.02217911183834076, -0.09728407859802246, -0.026238372549414635, -0.009431304410099983, -0.0026039727963507175, 0.0679883062839508, 0.02665293589234352, 0.0008517971145920455, -0.04162902012467384, -0.006188214290887117, -0.009034015238285065, 0.026393834501504898, -0.014751527458429337, 0.0023707812651991844, -0.005924793891608715, 0.009094472043216228, -0.0018353041959926486, 0.03480600565671921, -0.013404198922216892, -0.01667751744389534, -0.009975418448448181, 0.07579590380191803, 0.00038298481376841664, -0.020762689411640167, -0.005315904971212149, -0.055965982377529144, -0.04387456923723221, -0.06639914959669113, -0.0001479039347032085, 0.015572017058730125, 0.0021008835174143314, -0.03696518763899803, -0.0012652802979573607, 0.11711400002241135, -0.008753322064876556, 0.028984852135181427, 0.026825670152902603, 0.0053461333736777306, 0.0068705156445503235, 0.04653467983007431, -0.08457081764936447, -0.06681371480226517, -0.024338293820619583, -0.030522190034389496, -0.010243156924843788, 0.11614669114351273, 0.030124898999929428, 0.027378421276807785, 0.004376661032438278, -0.011158649809658527, -0.004888386931270361, 0.0006488340441137552, 0.004594738129526377, 0.009422668255865574, -0.0773850604891777, 0.024441935122013092, 0.0012231762520968914, 0.01514881756156683, -0.052027635276317596, 0.04473824054002762, 0.0017618921119719744, 0.03658517077565193, 0.04100717604160309, 0.0018493388779461384, 0.07365399599075317, 0.060077063739299774, -0.006356630474328995, 0.0019011592958122492, 0.010441801510751247, -0.01920807920396328, -0.02570289559662342, 0.00554477795958519, -0.06142439320683479, -0.04712197557091713, -0.059006109833717346, -0.037967048585414886, 0.008718774653971195, -0.07275577634572983, -0.04031623527407646, -0.021868189796805382, 0.01910443790256977, 0.03689609467983246, 0.0418708473443985, 0.011728674173355103, -0.028017539530992508, -0.007604637183248997, -0.013127823360264301, -0.01084772776812315, -0.010830454528331757, 0.007198710925877094, -0.05119851231575012, -0.0026773849967867136, 0.03793250024318695, 0.0006698860670439899, 0.020520860329270363, 0.07406856119632721, -0.003294911002740264, 0.04504916071891785, 0.04318362846970558, 0.004707015585154295, -0.027913898229599, 0.015969306230545044, -0.017385728657245636, -0.008144432678818703, -0.015364735387265682, 0.004076534416526556, 0.020779961720108986, 0.03135131672024727, 0.0026061320677399635, -0.019363539293408394, -0.004385297652333975, -0.030798563733696938, 0.02819027379155159, 0.02983125112950802, 0.017705287784337997, -0.0201753918081522, 0.06881742924451828, 0.04895296320319176, 0.09534945338964462, -0.1014988049864769, 0.010536805726587772, -0.010856364853680134, 0.011875498108565807, 0.030988572165369987, 0.0969386100769043, -0.03228408098220825, 0.02304278500378132, 0.058833375573158264, 0.011296837590634823, 0.017385728657245636, 0.05036938562989235, -0.0667446181178093, -0.05579324811697006, -0.01328328438103199, -0.026307467371225357, -0.0019281490240246058, -0.00941403117030859, -0.06715918332338333, 0.01324010081589222, -0.0017759267939254642, 0.0026298831216990948, 0.004275179468095303, -0.0002121395809808746, -0.0275338813662529, 0.01467379741370678, -0.028691204264760017, 0.031593143939971924, -0.012937814928591251, -0.02827664092183113, 0.028691204264760017, 0.020330851897597313, -0.018966250121593475, 0.00849853828549385, 0.0002874410420190543, -0.07192665338516235, -0.006758238188922405, -0.05264947935938835, -0.021712729707360268, -0.03934892266988754, 0.009396757930517197, -0.011452298611402512, -0.04024714231491089, -0.03686154633760452, 0.029934892430901527, 0.010519532486796379, -0.012937814928591251, 0.029192132875323296, -0.04967844858765602, -0.05254584178328514, -0.022524580359458923, 0.06850650906562805, -0.003579922951757908, 0.013291921466588974, 0.0029062582179903984, 0.007630547508597374, -0.06011161208152771, 0.015416556037962437, 0.002026391914114356, -0.058729734271764755, -0.02800026535987854, 0.030833112075924873, -0.029019398614764214, 0.02368190325796604, 0.021747276186943054, -0.05171671509742737, 0.01457015611231327, -0.09749136120080948, 0.01796438917517662, 0.00300989905372262, 0.005454092286527157, -0.006818694993853569, -0.028691204264760017, -0.027482062578201294, 0.05292585492134094, -0.036930639296770096, 0.04919479042291641, 0.041421737521886826, 0.010269067250192165, 0.033199574798345566, -0.09631676971912384, -0.0027443196158856153, 0.056518733501434326, -0.026877490803599358, -0.07310124486684799, -0.018568960949778557, 0.006658915430307388, 0.002828527707606554, -0.04394366219639778, 0.03477145731449127, 0.03765612468123436, -0.030746744945645332, 0.08325804024934769, 0.02323279343545437, 0.07931969314813614, 0.05703693628311157, 0.005596598144620657, -0.014293781481683254, 0.005929112434387207, -0.005091350059956312, -0.01825803890824318, -0.014138320460915565, 0.023664629086852074, 0.0890619158744812, -0.014984719455242157, 0.013499202206730843, -0.017653467133641243, -0.05917884409427643, 0.01157321222126484, -0.0441509410738945, -0.034253254532814026, 0.07849056273698807, 0.051647622138261795, -0.0136719373986125, -0.032335903495550156, 0.01056271605193615, 0.01213459949940443, -0.009534945711493492, 0.007976016029715538, -0.022438213229179382, 0.07192665338516235, -0.03917618840932846, 0.029364867135882378, -0.010001328773796558, -0.030625829473137856, 0.03354504331946373, 0.023526441305875778, 0.09002923220396042, 0.026428380981087685, 0.014095136895775795, -0.031575869768857956, 0.01625431887805462, -0.07002657651901245, 0.017567100003361702, 0.04128354787826538, -0.020192665979266167, 0.037967048585414886, -0.01213459949940443, -0.002968874527141452, 0.011581849306821823, -0.004044146742671728, -0.009776773862540722, -0.009206749498844147, -0.035410575568675995, -0.011771857738494873, -0.0022973690647631884, -0.034944191575050354, 0.06107892468571663, -0.006874833721667528, 0.00544545566663146, -0.01666024513542652, 0.05119851231575012, -0.0023880547378212214, 0.03737974911928177, -0.014855168759822845, -0.003849820466712117, -0.09175657480955124, 0.051923997700214386, 0.005898883566260338, -0.07137390226125717, -0.013931038789451122, -0.03250863775610924, 0.02857028879225254, 0.0694047287106514, -0.0312822200357914, 0.0014261393807828426, 0.034443262964487076, 0.04770927503705025, -0.0031200172379612923, 0.059489767998456955, 0.01471698097884655, -0.03834706172347069, 0.006719372700899839, 0.039798032492399216, 0.0033553680405020714, -0.012428248301148415, 0.024441935122013092, -0.05216582491993904, -0.01640114188194275, -0.04698378965258598, -0.004149946849793196, 0.05068030580878258, -0.009077198803424835, 0.029779430478811264, -0.018655328080058098, 0.01544246543198824, 0.039210736751556396, -0.034944191575050354, -0.025581981986761093, -0.06328992545604706, 0.00522953737527132, 0.0384507030248642, 0.006464589387178421, 0.005441137123852968, 0.03268137201666832, 0.009319026954472065, 0.02846664935350418, 0.02504650503396988, -0.03392506018280983, 0.018102576956152916, 0.02677384950220585, -0.029209407046437263, -0.049367524683475494, -0.06204623728990555, -0.0070432499051094055, -0.0691283568739891, -0.04518735036253929, 0.008744684979319572, -0.024113738909363747, -0.012661440297961235, -0.0350823812186718, 0.036550622433423996, 0.04280361533164978, -0.045912835747003555, -0.005320223048329353, 0.07275577634572983, 0.0006358789396472275, -0.022127291187644005, 0.023370979353785515, -0.0007643502322025597, -0.017403002828359604, 0.004603374749422073, -0.00964722316712141, 0.002381577156484127, -0.029589422047138214, 0.04328726977109909, -0.0312822200357914, 0.026221100240945816, -0.015986580401659012, -0.05454955995082855, -0.01528700441122055, -0.029382141306996346, -0.01817167177796364, -0.05081849545240402, -0.01510563399642706, -0.017368456348776817, 0.01375830452889204, 0.011400477960705757, 0.0018849654588848352, 0.009422668255865574, -0.051267605274915695, -0.012117326259613037, 0.05209673196077347, 0.02599654532968998, 0.01653069257736206, 0.03299229219555855, 0.014596066437661648, -0.006352311931550503, -0.003316502785310149, -0.08180706948041916, -0.0013894332805648446, 0.04256178438663483, 0.021056337282061577, 0.05741695314645767, 0.014587430283427238, 0.03582514077425003, -0.0009824276203289628, 0.0007956583867780864, 0.004186653066426516, -0.016332048922777176, -0.0028954623267054558, 0.019519001245498657, -0.028708476573228836, 0.019156258553266525, 0.05005846172571182, -0.06356630474328995, 0.021747276186943054, 0.02523651346564293, -0.04501461610198021, 0.055862344801425934, 0.07123571634292603, -0.04038533195853233, 0.0037699309177696705, 0.015615200623869896, 0.02570289559662342, -0.0035540126264095306, -0.053271323442459106, -0.050300292670726776, 0.028794843703508377, -0.024960137903690338, -0.017316635698080063, -0.00369004113599658, 0.027102045714855194, 0.009111746214330196, 0.035894233733415604, 0.01279962807893753, -0.005307267885655165, -0.027292054146528244, -0.07849056273698807, -0.02781025692820549, -0.038174327462911606, -0.05220036953687668, -0.004372342489659786, -0.004776109475642443, 0.03021126799285412, 0.006287536583840847, -0.019242625683546066, -0.07351581007242203, 0.048296570777893066, -0.006615731865167618, -0.001055839704349637, 0.03497873991727829, 0.056242357939481735, 0.02034812606871128, -0.008852643892168999, -0.02045176737010479, -0.022904597222805023, 0.0007152288453653455, 0.016651608049869537, -0.01596066914498806, 0.053478606045246124, -0.004983390681445599, -0.021349987015128136, 0.02839755453169346, 0.034166887402534485, -0.051751259714365005, -0.04860749468207359, -0.018102576956152916, -0.01236779149621725, -0.022524580359458923, 0.0343741700053215, 0.016012489795684814, -0.022092744708061218, 0.017489369958639145, 0.016832979395985603, -0.04556736722588539, 0.0004922933876514435, -0.024131011217832565, 0.023008238524198532, 0.06449906527996063, 0.026549294590950012, -0.008628088980913162, -0.06805740296840668, -0.019087163731455803, 0.003219339530915022, 0.038554344326257706, 0.048296570777893066, 0.02190273627638817, -0.03782885894179344, 0.010865001007914543, -0.059006109833717346, 0.016349321231245995, -0.003871412482112646, -0.014008769765496254, -0.008947648108005524, -0.02648020163178444, -0.0045688278041779995, -0.021833643317222595, -0.01834440603852272, 0.03648152947425842, 0.013171006925404072, 0.0543077327311039, 0.011383204720914364, 0.03395960479974747, 0.00026625406462699175, 0.02591017819941044, 0.023250065743923187, -0.02053813450038433, 0.04159447178244591, -0.060457080602645874, -0.015062449499964714, 0.007639184128493071, 0.025201966986060143, -0.06619186699390411, -0.006883470341563225, 0.015926122665405273, -0.038761626929044724, 0.005125897005200386, 0.011167286895215511, 0.05437682569026947, -0.013110550120472908, -0.017385728657245636, 0.02820754610002041, 0.06525909900665283, 0.02007175050675869, 0.11421206593513489, 0.01304145622998476, -0.006175259128212929, 0.02342280000448227, -0.02504650503396988, 0.016556603834033012, 0.0017456982750445604, -0.001970253186300397, -0.06567366421222687, 0.021384533494710922, 0.04290725290775299, -0.013412835076451302, 0.03592877835035324, 0.04408184811472893, -0.05112941563129425, -0.018499866127967834, -0.034944191575050354, 0.0347023643553257, 0.057278767228126526, -0.00012948340736329556, 0.0021775346249341965, -0.04536008462309837, -0.02007175050675869, -0.05686420202255249, -0.0197953749448061, -0.013067366555333138, -0.022110018879175186, 0.005678647197782993, -0.017385728657245636, 0.06449906527996063, 0.040005315095186234, 0.01141775120049715, -0.043909113854169846, 0.04995482414960861, -0.04712197557091713, -0.02743024192750454, -0.08187615871429443, -0.015891576185822487, -0.002558629959821701, 0.009560855105519295, 0.015546106733381748, -0.0041240365244448185, -0.010018602013587952, 0.00908583588898182 ]
9,411
asyncclick.types
File
Declares a parameter to be a file for reading or writing. The file is automatically closed once the context tears down (after the command finished working). Files can be opened for reading or writing. The special value ``-`` indicates stdin or stdout depending on the mode. By default, the file is opened for reading text data, but it can also be opened in binary mode or for writing. The encoding parameter can be used to force a specific encoding. The `lazy` flag controls if the file should be opened immediately or upon first IO. The default is to be non-lazy for standard input and output streams as well as files opened for reading, `lazy` otherwise. When opening a file lazily for reading, it is still opened temporarily for validation, but will not be held open until first IO. lazy is mainly useful when opening for writing to avoid creating the file until it is needed. Starting with Click 2.0, files can also be opened atomically in which case all writes go into a separate file in the same folder and upon completion the file will be moved over to the original location. This is useful if a file regularly read by other users is modified. See :ref:`file-args` for more information.
class File(ParamType): """Declares a parameter to be a file for reading or writing. The file is automatically closed once the context tears down (after the command finished working). Files can be opened for reading or writing. The special value ``-`` indicates stdin or stdout depending on the mode. By default, the file is opened for reading text data, but it can also be opened in binary mode or for writing. The encoding parameter can be used to force a specific encoding. The `lazy` flag controls if the file should be opened immediately or upon first IO. The default is to be non-lazy for standard input and output streams as well as files opened for reading, `lazy` otherwise. When opening a file lazily for reading, it is still opened temporarily for validation, but will not be held open until first IO. lazy is mainly useful when opening for writing to avoid creating the file until it is needed. Starting with Click 2.0, files can also be opened atomically in which case all writes go into a separate file in the same folder and upon completion the file will be moved over to the original location. This is useful if a file regularly read by other users is modified. See :ref:`file-args` for more information. """ name = "filename" envvar_list_splitter: t.ClassVar[str] = os.path.pathsep def __init__( self, mode: str = "r", encoding: t.Optional[str] = None, errors: t.Optional[str] = "strict", lazy: t.Optional[bool] = None, atomic: bool = False, ) -> None: self.mode = mode self.encoding = encoding self.errors = errors self.lazy = lazy self.atomic = atomic async def to_info_dict(self) -> t.Dict[str, t.Any]: info_dict = await super().to_info_dict() info_dict.update(mode=self.mode, encoding=self.encoding) return info_dict def resolve_lazy_flag(self, value: "t.Union[str, os.PathLike[str]]") -> bool: if self.lazy is not None: return self.lazy if os.fspath(value) == "-": return False elif "w" in self.mode: return True return False def convert( self, value: t.Union[str, "os.PathLike[str]", t.IO[t.Any]], param: t.Optional["Parameter"], ctx: t.Optional["Context"], ) -> t.IO[t.Any]: if _is_file_like(value): return value value = t.cast("t.Union[str, os.PathLike[str]]", value) try: lazy = self.resolve_lazy_flag(value) if lazy: lf = LazyFile( value, self.mode, self.encoding, self.errors, atomic=self.atomic ) if ctx is not None: ctx.call_on_close(lf.close_intelligently) return t.cast(t.IO[t.Any], lf) f, should_close = open_stream( value, self.mode, self.encoding, self.errors, atomic=self.atomic ) # If a context is provided, we automatically close the file # at the end of the context execution (or flush out). If a # context does not exist, it's the caller's responsibility to # properly close the file. This for instance happens when the # type is used with prompts. if ctx is not None: if should_close: ctx.call_on_close(safecall(f.close)) else: ctx.call_on_close(safecall(f.flush)) return f except OSError as e: # noqa: B014 self.fail(f"'{format_filename(value)}': {e.strerror}", param, ctx) def shell_complete( self, ctx: "Context", param: "Parameter", incomplete: str ) -> t.List["CompletionItem"]: """Return a special completion marker that tells the completion system to use the shell to provide file path completions. :param ctx: Invocation context for this command. :param param: The parameter that is requesting completion. :param incomplete: Value being completed. May be empty. .. versionadded:: 8.0 """ from .shell_completion import CompletionItem return [CompletionItem(incomplete, type="file")]
(mode: str = 'r', encoding: Optional[str] = None, errors: Optional[str] = 'strict', lazy: Optional[bool] = None, atomic: bool = False) -> None
[ 0.04193990305066109, -0.04616737738251686, -0.06504452228546143, -0.0017069478053599596, 0.08622375130653381, 0.0059592751786112785, 0.037000872194767, 0.037942636758089066, 0.01672154851257801, -0.088902547955513, 0.04206547141075134, 0.020258396863937378, -0.018688788637518883, 0.026139192283153534, 0.009977469220757484, 0.052069101482629776, 0.025595061480998993, 0.04129113256931305, -0.009909452870488167, 0.04846946895122528, 0.03342216834425926, 0.017380783334374428, -0.0025244515854865313, -0.05428747832775116, 0.001400874345563352, -0.003623176598921418, 0.002261542249470949, -0.025636916980147362, -0.00497303856536746, -0.053534068167209625, 0.0012543777702376246, -0.037984494119882584, -0.009574604220688343, 0.004575404804199934, 0.024674225598573685, -0.03842398524284363, -0.02161872200667858, 0.08513548970222473, -0.01611463353037834, -0.06935571134090424, -0.03664509579539299, -0.003251702757552266, -0.014848483726382256, -0.01055299211293459, -0.03183163329958916, 0.022979049012064934, -0.04637666046619415, 0.0004215049266349524, -0.008114868775010109, -0.021430369466543198, 0.058431241661310196, 0.027876222506165504, -0.014660131186246872, 0.002088885521516204, -0.015329830348491669, 0.05537573993206024, 0.008706088177859783, 0.013875327073037624, -0.01342537347227335, -0.009642619639635086, 0.04273517057299614, 0.0391564667224884, 0.05910094082355499, -0.005797082558274269, -0.00780094787478447, 0.015015908516943455, -0.0025963918305933475, -0.016564587131142616, -0.0014950508484616876, 0.04855318367481232, -0.0072725131176412106, -0.006168556399643421, 0.009668780490756035, -0.006016827654093504, 0.03455228731036186, 0.004868398420512676, -0.0393657460808754, 0.04277702793478966, 0.03645674139261246, -0.031015437096357346, 0.022581415250897408, -0.011029106564819813, 0.010526832193136215, -0.03984709456562996, 0.0010575228370726109, 0.01878296583890915, 0.035933539271354675, -0.012462681159377098, -0.00968970824033022, 0.0462510921061039, -0.0381309911608696, 0.05374335125088692, -0.024674225598573685, 0.016313450410962105, 0.03178977593779564, -0.0911627858877182, 0.001305389916524291, 0.007063232362270355, -0.07044397294521332, 0.006749310996383429, -0.04583252966403961, -0.012766138650476933, 0.058766093105077744, -0.011060498654842377, 0.023313898593187332, -0.031915344297885895, 0.01820744387805462, 0.02710188366472721, 0.005477929022163153, -0.05349221080541611, -0.06429111212491989, -0.029780680313706398, 0.013310268521308899, 0.009595531970262527, -0.032480403780937195, 0.021262945607304573, -0.0322711244225502, -0.007570738438516855, 0.014890340156853199, -0.027876222506165504, 0.009396715089678764, 0.04189804568886757, -0.06370512396097183, -0.015936745330691338, 0.07224378734827042, 0.03425929322838783, -0.022937193512916565, -0.01157323643565178, 0.0017435719491913915, 0.0323757641017437, 0.014210176654160023, 0.019693337380886078, 0.026390329003334045, 0.024297518655657768, 0.0204781424254179, 0.008512502536177635, -0.027855295687913895, 0.03842398524284363, -0.037691500037908554, 0.07940119504928589, 0.021723363548517227, -0.05629657581448555, -0.03547312319278717, -0.04939030483365059, 0.029634183272719383, 0.0013786383206024766, 0.05052042379975319, -0.061570458114147186, -0.011196531355381012, 0.04905545711517334, 0.020090971142053604, -0.027876222506165504, -0.06743032485246658, 0.06437481939792633, 0.08547034114599228, -0.00850727129727602, -0.044618699699640274, -0.0045858691446483135, -0.014649666845798492, -0.016009993851184845, -0.029299333691596985, -0.015926280990242958, 0.00375920906662941, 0.034196507185697556, 0.02766694314777851, 0.07998718321323395, -0.033380310982465744, 0.011719733476638794, 0.042316608130931854, 0.004842238035053015, 0.016229737550020218, 0.02737394906580448, 0.021242016926407814, 0.029445830732584, 0.02049906924366951, 0.047506775707006454, 0.013352124951779842, -0.0010627548908814788, 0.021890787407755852, -0.039951734244823456, -0.02883891575038433, -0.0679325982928276, 0.002349178772419691, -0.005388984456658363, 0.041102778166532516, 0.06307727843523026, 0.01401135977357626, 0.002070573391392827, 0.05504089221358299, 0.0033641913905739784, -0.043446727097034454, 0.004813462030142546, 0.049181025475263596, -0.012944026850163937, -0.03271061182022095, -0.03145492821931839, -0.06734661012887955, -0.025950837880373, 0.04032843932509422, -0.009930381551384926, -0.057301126420497894, 0.01900271140038967, 0.07437845319509506, -0.015225189737975597, -0.042860738933086395, 0.039407603442668915, 0.05273880064487457, -0.014084608294069767, -0.029613254591822624, 0.03865419328212738, -0.06696990877389908, -0.044576842337846756, -0.03827748820185661, 0.025532277300953865, 0.06818373501300812, -0.04365600645542145, -0.009396715089678764, 0.02630661614239216, -0.03524291142821312, 0.058891661465168, 0.09392528980970383, 0.06956499069929123, -0.006529565900564194, 0.019703801721334457, 0.07509000599384308, -0.06784888356924057, 0.04637666046619415, -0.015225189737975597, -0.0014047984732314944, 0.03919832408428192, -0.014534562826156616, -0.02768786996603012, 0.007596898823976517, 0.01759006455540657, -0.016606444492936134, -0.007978836074471474, 0.018688788637518883, -0.0014283425407484174, -0.08563777059316635, -0.007387617602944374, 0.00044439503108151257, -0.005802314728498459, -0.0019633169285953045, 0.004873630125075579, -0.0347406379878521, -0.03120379149913788, 0.010171054862439632, 0.03545219451189041, 0.0036441045813262463, -0.009747260250151157, 0.06784888356924057, 0.04156319797039032, -0.06864415109157562, -0.023585963994264603, -0.03898904100060463, -0.018385332077741623, -0.02218378148972988, -0.06027291715145111, 0.004329499788582325, 0.0201432928442955, -0.011772054247558117, -0.028797060251235962, 0.002364874817430973, 0.0566314272582531, 0.005838938523083925, -0.039072755724191666, 0.01141627598553896, -0.09869690239429474, -0.011301171965897083, 0.013896255753934383, -0.025825269520282745, 0.041102778166532516, -0.040600504726171494, 0.004316419828683138, -0.06726290285587311, 0.0187306459993124, 0.024109166115522385, -0.023732461035251617, 0.038800690323114395, 0.01648087613284588, 0.014754307456314564, 0.005213711876422167, -0.011468596756458282, 0.010652400553226471, -0.007000448182225227, 0.01358233392238617, -0.03754500299692154, -0.01729707047343254, -0.02714373916387558, 0.03469878435134888, 0.012462681159377098, 0.04926473647356033, 0.05374335125088692, -0.0035603921860456467, 0.040286585688591, 0.024381231516599655, -0.1074029877781868, -0.06856044381856918, 0.05018557235598564, -0.10321737080812454, -0.0065347980707883835, 0.005373288411647081, 0.001403490430675447, 0.022665128111839294, -0.024674225598573685, -0.04813462123274803, -0.0018743725959211588, -0.07781066000461578, -0.04708821699023247, -0.0038219934795051813, 0.04298630729317665, -0.0015316749922931194, 0.015078692696988583, -0.0018665245734155178, -0.005948811303824186, 0.030366666615009308, -0.0011490832548588514, -0.008345077745616436, 0.014649666845798492, 0.02948768623173237, -0.05696627497673035, -0.0021909100469201803, 0.04495355114340782, -0.02513464353978634, 0.03896811231970787, 0.014042751863598824, 0.06876972317695618, 0.0391564667224884, 0.0006105118081904948, 0.044911693781614304, -0.04041215404868126, 0.07006726413965225, -0.017119182273745537, 0.01125931553542614, -0.06299357116222382, 0.04696264490485191, 0.0007534114411100745, -0.006613278295844793, 0.05981249734759331, -0.038549553602933884, 0.011499988846480846, -0.013111451640725136, -0.036226533353328705, -0.039072755724191666, -0.03608003631234169, -0.026641465723514557, 0.11409997940063477, 0.007392849773168564, 0.13050760328769684, -0.05537573993206024, 0.05864052474498749, -0.021702434867620468, -0.02191171608865261, -0.012232472188770771, -0.012860314920544624, -0.05943579226732254, -0.004146378953009844, 0.006398765370249748, 0.017401712015271187, -0.04499540477991104, 0.02105366438627243, 0.004436756484210491, -0.040244728326797485, 0.02339761145412922, 0.00795790832489729, -0.04068421944975853, 0.031643278896808624, 0.026474041864275932, -0.03957502916455269, 0.020436285063624382, 0.01791444979608059, -0.024464944377541542, 0.03875883296132088, -0.03584982827305794, 0.004993966780602932, -0.029215620830655098, 0.009506587870419025, -0.036833446472883224, 0.0005745416274294257, 0.05801268294453621, 0.04541396722197533, 0.028964484110474586, 0.004748061764985323, 0.004483844619244337, -0.07048582285642624, -0.016512267291545868, -0.004389667883515358, -0.008883976377546787, 0.03084801323711872, 0.0012622257927432656, 0.017726097255945206, 0.02111644856631756, 0.021221088245511055, 0.03628931939601898, 0.061612311750650406, -0.01401135977357626, 0.022141925990581512, 0.014220640994608402, 0.013812542892992496, 0.04470241069793701, 0.002536223502829671, 0.01228479202836752, 0.027562301605939865, 0.05052042379975319, -0.00201563723385334, -0.00692196749150753, 0.06483524292707443, 0.00807301327586174, -0.005394216626882553, 0.0018586765509098768, -0.027060028165578842, -0.0318107046186924, -0.03482435271143913, 0.0019423888297751546, 0.020886238664388657, 0.02948768623173237, -0.06508637964725494, -0.0129754189401865, 0.03005274571478367, -0.006979519966989756, -0.008046852424740791, 0.024109166115522385, -0.023816172033548355, 0.058891661465168, 0.029885319992899895, 0.014534562826156616, 0.003662416711449623, 0.012023190967738628, 0.016554122790694237, -0.007078928407281637, -0.029215620830655098, 0.03484527766704559, -0.058389388024806976, -0.025553204119205475, -0.021126912906765938, -0.00994607713073492, -0.020907167345285416, -0.04248403385281563, 0.0690627172589302, 0.038256559520959854, -0.04595809802412987, 0.0311410054564476, 0.04269331693649292, 0.043153733015060425, -0.02138851396739483, -0.028692418709397316, -0.00009417643013875932, 0.0622820109128952, 0.005368056707084179, -0.014429922215640545, -0.0011431971797719598, 0.035912610590457916, 0.04407456889748573, -0.027604158967733383, -0.04838575795292854, -0.056171007454395294, -0.042525891214609146, 0.014168321155011654, -0.03344309702515602, -0.009747260250151157, 0.06270057708024979, 0.021995428949594498, 0.039386674761772156, -0.09392528980970383, 0.014157856814563274, -0.06014734506607056, 0.03434300422668457, 0.02224656566977501, -0.04420013725757599, -0.013132380321621895, -0.03499177470803261, 0.009229290299117565, -0.04884617403149605, 0.03268968686461449, 0.014042751863598824, 0.007424241863191128, 0.031622353941202164, -0.005179703701287508, -0.029278405010700226, -0.047757912427186966, 0.015371685847640038, -0.067011758685112, -0.007884659804403782, 0.06403997540473938, -0.017140110954642296, -0.0022890104446560144, 0.06759774684906006, 0.006294124759733677, 0.03524291142821312, -0.005203248001635075, 0.009307770989835262, 0.03905182704329491, -0.011447668075561523, -0.012766138650476933, -0.0006971671828068793, 0.033045463263988495, 0.006398765370249748, 0.04244217649102211, -0.02218378148972988, -0.03861233592033386, 0.009004313498735428, -0.016752939671278, 0.005870330613106489, 0.001848212443292141, 0.0038429214619100094, -0.005286959931254387, -0.012232472188770771, -0.044283851981163025, -0.03356866538524628, -0.04122835025191307, 0.013331197202205658, -0.00728297745808959, 0.025762485340237617, -0.027018170803785324, 0.008052084594964981, -0.001403490430675447, 0.006111003924161196, 0.010589616373181343, 0.011876693926751614, 0.001625851378776133, -0.03063873201608658, -0.031078221276402473, 0.01705639809370041, -0.025030001997947693, -0.01959916204214096, -0.030931726098060608, 0.03484527766704559, -0.017213359475135803, 0.04997629299759865, 0.02712281234562397, 0.05797082558274269, -0.044911693781614304, 0.026997243985533714, -0.03432207554578781, 0.04968329891562462, 0.0031392143573611975, -0.01591581664979458, 0.02946675941348076, -0.05198539048433304, -0.011311635375022888, 0.0007763015455566347, 0.06429111212491989, -0.03091079741716385, 0.0368962325155735, 0.02917376533150673, -0.05156682804226875, 0.03030388243496418, -0.04587438702583313, 0.05993806570768356, -0.030722444877028465, -0.025343922898173332, -0.02798086404800415, 0.04244217649102211, 0.03664509579539299, -0.08312639594078064, -0.04158412665128708, 0.04562325030565262, -0.04867875203490257, -0.010144894011318684, -0.02427659183740616, -0.014063680544495583, 0.08028017729520798, -0.0963529497385025, -0.03777521103620529, 0.0548316091299057, 0.0023766469676047564, 0.06500266492366791, 0.01213829591870308, -0.007131248712539673, -0.06098446995019913, 0.032145556062459946, 0.04277702793478966, 0.03660323843359947, -0.01429388951510191, 0.020582782104611397, 0.010275694541633129, 0.03930296376347542, 0.046585939824581146, 0.006440621335059404, -0.016365770250558853, -0.00951181910932064, -0.0016009992687031627, -0.0733320489525795, -0.01672154851257801, -0.028671491891145706, 0.009898989461362362, 0.029383046552538872, 0.055585023015737534, -0.05232023820281029, -0.026725178584456444, -0.024381231516599655, 0.0026709481608122587, 0.03354773670434952, -0.053241074085235596, 0.020090971142053604, -0.014911267906427383, -0.004439372103661299, -0.01255685742944479, 0.03693808987736702, -0.022748839110136032, -0.05679885298013687, -0.03268968686461449, -0.040244728326797485, 0.018312083557248116, -0.025050930678844452, -0.007848035544157028, -0.011301171965897083, 0.00031359444255940616, -0.06052405387163162, 0.08295897394418716, 0.0059592751786112785, -0.023523179814219475, 0.016941294074058533, -0.0054674651473760605, -0.05688256397843361, 0.050352998077869415, -0.022100068628787994, -0.011929014697670937, 0.035640545189380646, -0.013069596141576767, -0.025762485340237617, -0.005640121642500162, 0.011562773026525974, 0.007936980575323105, -0.03003181703388691, 0.006696990691125393, -0.029864393174648285, 0.003400815650820732, -0.0485113263130188, -0.04191897436976433, -0.0015761471586301923, -0.011740661226212978, 0.05696627497673035, 0.05792896822094917, 0.050018150359392166, -0.05399448797106743, -0.0031418304424732924, -0.037670571357011795, 0.021890787407755852, -0.031287502497434616, -0.018249299377202988, -0.0830426812171936, 0.006037755403667688, -0.003994650207459927, -0.03352680802345276, -0.07324833422899246, 0.012431289069354534, -0.028483137488365173, 0.057887110859155655, -0.027520446106791496, 0.031601425260305405, 0.07257863879203796, 0.00003133083009743132, -0.044869836419820786, 0.01700407825410366, -0.011740661226212978, 0.037105511873960495, -0.01989215426146984, 0.020300252363085747, 0.0398261658847332, -0.006048219744116068, 0.004805613774806261, 0.010249534621834755, 0.019201528280973434, -0.0570918433368206, -0.0385914072394371, 0.023481322452425957, -0.028462210670113564, 0.012065047398209572, 0.048636894673109055, 0.008706088177859783, 0.0010084726382046938, 0.012912634760141373, -0.026662394404411316, 0.01184530183672905, -0.03976338356733322, 0.036247462034225464, 0.03432207554578781, 0.01874111033976078, 0.01645994745194912, -0.038842543959617615, 0.004816078115254641, -0.005208479706197977, 0.028085503727197647, 0.016951756551861763, 0.028085503727197647, 0.008800264447927475, 0.005477929022163153, 0.015099621377885342, -0.08521920442581177, 0.008114868775010109, 0.050980839878320694, -0.02536485157907009, -0.03748222067952156, -0.08496806770563126, -0.055292028933763504, 0.020833918824791908, -0.0600217767059803, 0.004996582865715027, -0.024381231516599655, 0.034217435866594315, -0.04043307900428772, 0.05910094082355499, -0.04943216219544411, -0.003460983745753765, -0.01543447095900774, -0.02710188366472721, -0.0066394382156431675, 0.011081426404416561, -0.01141627598553896, 0.010882609523832798, 0.030178314074873924, -0.019787514582276344, -0.024904433637857437, 0.017757488414645195, -0.003086894052103162, -0.04913916811347008, -0.0040574343875050545, 0.0018861446296796203, -0.012776602059602737, -0.02339761145412922, 0.01169880572706461, 0.056715138256549835, -0.007936980575323105, 0.03672880679368973, -0.007507954258471727, -0.08015460520982742, 0.020676959306001663, 0.05575244501233101, 0.0002750082639977336, -0.007000448182225227, -0.018343476578593254, -0.050101861357688904, 0.03829841688275337, 0.03612189367413521, -0.03379887342453003, 0.03790077939629555, -0.022623270750045776, -0.03145492821931839, 0.0210955198854208, -0.020666494965553284, 0.017956305295228958, -0.07278791815042496, -0.011165139265358448, 0.03145492821931839, -0.00648770947009325, 0.05859866738319397, -0.019452665001153946, -0.018008626997470856, -0.00598543556407094, -0.01039079949259758, -0.0072777452878654, -0.027855295687913895, 0.07634568959474564, 0.029906248673796654, -0.019745659083127975, 0.02247677557170391, 0.015654215589165688, -0.04587438702583313, -0.029215620830655098, -0.09986887127161026, 0.01670061983168125, 0.0028514531441032887, -0.0007265973254106939, 0.05537573993206024, 0.039972662925720215, -0.03953317180275917, 0.006906271446496248 ]
9,413
asyncclick.types
__init__
null
def __init__( self, mode: str = "r", encoding: t.Optional[str] = None, errors: t.Optional[str] = "strict", lazy: t.Optional[bool] = None, atomic: bool = False, ) -> None: self.mode = mode self.encoding = encoding self.errors = errors self.lazy = lazy self.atomic = atomic
(self, mode: str = 'r', encoding: Optional[str] = None, errors: Optional[str] = 'strict', lazy: Optional[bool] = None, atomic: bool = False) -> NoneType
[ 0.004378946032375097, 0.0035539271775633097, 0.011440844275057316, -0.01302523072808981, 0.01985297165811062, 0.008648472838103771, -0.005063908640295267, 0.009646373800933361, 0.02925424836575985, -0.08228304237127304, 0.021306056529283524, 0.08256315439939499, -0.02085087262094021, 0.06306032091379166, 0.007094724103808403, 0.022496534511446953, -0.012526280246675014, 0.03792022913694382, -0.04639362916350365, 0.03436630219221115, -0.011370816268026829, 0.04800427705049515, -0.04121154919266701, 0.06292026489973068, 0.03431377932429314, 0.062465082854032516, -0.00026807640097104013, -0.03293072432279587, 0.019835464656352997, -0.010547985322773457, 0.006350675132125616, 0.039775971323251724, -0.015029785223305225, 0.03277315944433212, -0.016290292143821716, -0.05122556909918785, -0.02466740645468235, 0.06257012486457825, -0.09089650213718414, -0.014915989711880684, -0.04849447309970856, -0.009410028345882893, -0.05304630100727081, -0.012613815255463123, -0.058263398706912994, 0.0038340396713465452, 0.015940150246024132, 0.013261575251817703, 0.00309655605815351, -0.006670178379863501, 0.0074536181055009365, 0.07780124247074127, 0.010372915305197239, -0.0051470668986439705, -0.04705889895558357, 0.0617297887802124, -0.005694161634892225, 0.07857155054807663, -0.03616952523589134, -0.0016117410268634558, -0.04170174524188042, 0.029919514432549477, 0.028694022446870804, 0.004494930151849985, -0.023827068507671356, -0.004142601042985916, -0.04803929105401039, -0.025910405442118645, 0.047198954969644547, 0.03228296339511871, 0.05182081088423729, 0.0021796252112835646, -0.017095614224672318, 0.014364518225193024, 0.03865552321076393, -0.009891471825540066, -0.10812342166900635, 0.02135857753455639, -0.007576167583465576, 0.026943320408463478, 0.009453796781599522, 0.017612071707844734, -0.006088069640100002, 0.02127104252576828, -0.004906345158815384, -0.04649867117404938, 0.003087802557274699, -0.012876421213150024, 0.01148461177945137, 0.044677942991256714, -0.0633404329419136, 0.02197132259607315, -0.03496154025197029, 0.007401097100228071, 0.0024794330820441246, 0.0029127320740371943, 0.0034160593058913946, -0.010031528770923615, -0.020920900627970695, -0.024387292563915253, -0.058963678777217865, 0.007913177832961082, -0.053676556795835495, -0.05234602093696594, -0.014259476214647293, 0.0001176253572339192, 0.01908266358077526, -0.006009288132190704, 0.02324933558702469, -0.057843226939439774, -0.006004911381751299, 0.036799777299165726, -0.0056372638791799545, 0.06369057297706604, -0.011458351276814938, -0.01082809828221798, -0.037289973348379135, -0.052381034940481186, -0.006827741861343384, -0.009672634303569794, 0.006630787625908852, -0.00014552718494087458, -0.06453091651201248, 0.03700986132025719, 0.08620461821556091, 0.030934922397136688, 0.03725495934486389, -0.04639362916350365, 0.06880263239145279, 0.012158632278442383, 0.043172337114810944, 0.030672317370772362, 0.041596703231334686, -0.03193282335996628, -0.011799738742411137, -0.0377451591193676, -0.016377827152609825, 0.05542725697159767, -0.07563037425279617, 0.04506309702992439, 0.018539944663643837, 0.014705905690789223, 0.007970075123012066, -0.043592505156993866, 0.0032409890554845333, -0.007269794121384621, 0.010451696813106537, -0.09726905822753906, 0.0026041707023978233, 0.025700321421027184, 0.08816540241241455, -0.030112091451883316, -0.04124656319618225, 0.06642167270183563, -0.0010728527558967471, 0.018697507679462433, 0.01708686165511608, -0.021095970645546913, 0.02165619656443596, 0.006910900119692087, -0.017226917669177055, -0.008070740848779678, -0.022846674546599388, -0.03781518712639809, 0.03536419942975044, 0.04593844711780548, -0.02864150144159794, -0.09124664217233658, 0.03352596238255501, -0.0029192971996963024, 0.0030352813191711903, -0.00728730158880353, 0.015484968200325966, 0.03700986132025719, 0.0049413591623306274, 0.0765407383441925, 0.023196814581751823, 0.04051126912236214, -0.03802527114748955, -0.006018041633069515, 0.032615598291158676, -0.015029785223305225, -0.03254557028412819, 0.013436646200716496, 0.05010512098670006, 0.01985297165811062, 0.020745830610394478, 0.004748782142996788, 0.08795531839132309, -0.017288193106651306, 0.055847425013780594, -0.0041163405403494835, -0.02456236444413662, -0.01348916720598936, 0.0003093820414505899, -0.045693349093198776, 0.022391492500901222, -0.06411074846982956, 0.05434182286262512, 0.05532221496105194, -0.03883059322834015, 0.06894268840551376, 0.016973065212368965, -0.02794121950864792, -0.03205537423491478, 0.03496154025197029, -0.011370816268026829, 0.03974095731973648, -0.009506317786872387, 0.022986730560660362, 0.00953257828950882, -0.06109953671693802, 0.001093642320483923, 0.05042024701833725, 0.0355742871761322, -0.022041350603103638, -0.0034817105624824762, 0.02016809955239296, 0.01876753568649292, 0.020710816606879234, 0.10427187383174896, 0.027013348415493965, -0.030409712344408035, -0.02347692847251892, 0.0001984585978789255, -0.0019837652798742056, 0.019310254603624344, -0.04341743513941765, -0.04054628312587738, 0.031705230474472046, -0.037710145115852356, 0.013165286742150784, -0.019100170582532883, 0.002187284640967846, 0.040686339139938354, -0.017095614224672318, 0.025840377435088158, 0.038200341165065765, -0.10063041001558304, -0.0571429468691349, 0.03555677831172943, -0.01403188519179821, -0.0001903889497043565, -0.005864855367690325, 0.027538558468222618, -0.007987583056092262, -0.01817229762673378, 0.07111355662345886, -0.017743375152349472, -0.009768922813236713, -0.006219372618943453, 0.005694161634892225, -0.05080540105700493, -0.021936308592557907, -0.01082809828221798, -0.036589693278074265, -0.016036439687013626, -0.04121154919266701, 0.03697484731674194, -0.015266130678355694, 0.00819328986108303, -0.028413910418748856, -0.010337901301681995, 0.05140064284205437, 0.0036852299235761166, -0.031092485412955284, -0.02984948642551899, -0.04471295699477196, 0.014600863680243492, -0.00586923211812973, 0.05192585289478302, 0.01579134166240692, -0.019905492663383484, 0.023897096514701843, -0.07415977865457535, -0.05350148305296898, -0.0022649720776826143, -0.02697833441197872, -0.005133936647325754, 0.0060399253852665424, 0.02564779855310917, -0.01742824912071228, 0.04275216907262802, 0.004046312533318996, -0.009418782778084278, -0.028781557455658913, -0.03468142822384834, 0.014259476214647293, -0.022829167544841766, -0.021726224571466446, -0.029621895402669907, 0.06190485879778862, 0.012508773244917393, 0.013340356759727001, 0.08872562646865845, -0.0439426451921463, -0.040896423161029816, -0.029499346390366554, 0.04541323706507683, -0.05644266679883003, -0.013296589255332947, -0.07850152254104614, 0.05269616097211838, 0.028431417420506477, -0.018504930660128593, -0.047374024987220764, -0.013209054246544838, -0.001337099471129477, -0.0007117702043615282, 0.05304630100727081, 0.07920180261135101, 0.04821436107158661, 0.01513482816517353, 0.04986002296209335, -0.01378678623586893, 0.04751408100128174, 0.016307799145579338, -0.028238840401172638, 0.018627479672431946, 0.044082701206207275, -0.011327048763632774, -0.02466740645468235, 0.030829880386590958, -0.0169205442070961, -0.042682141065597534, -0.03492652624845505, 0.04341743513941765, -0.023739533498883247, 0.006473224610090256, 0.05353649705648422, -0.0765407383441925, 0.05045526102185249, -0.014662138186395168, -0.0036764764226973057, -0.060679368674755096, 0.03732498735189438, -0.01168594229966402, -0.06207992881536484, 0.023301856592297554, -0.03862050920724869, 0.04513312503695488, -0.03984599933028221, -0.03335089236497879, -0.0005150896613486111, -0.0025538380723446608, -0.05360652506351471, 0.006499485112726688, -0.047374024987220764, 0.06698189675807953, -0.01836487464606762, -0.016850516200065613, -0.04215692728757858, -0.00499388063326478, 0.03366601839661598, 0.0044292788952589035, -0.046183545142412186, -0.04075636714696884, 0.024719927459955215, -0.0018130717799067497, -0.0345238633453846, -0.005278369877487421, -0.025717828422784805, -0.013900581747293472, 0.007580544333904982, -0.0098389508202672, -0.004462104290723801, 0.03651966527104378, 0.0136817442253232, -0.03946084529161453, 0.00716475211083889, 0.0032322355546057224, -0.012963956221938133, -0.05444686487317085, -0.02976195141673088, -0.008823542855679989, 0.0073835900984704494, -0.001373207662254572, -0.002928050933405757, -0.04345244914293289, -0.00939252134412527, -0.0067358301021158695, -0.001575632719323039, 0.01896011456847191, -0.006635164376348257, -0.07177882641553879, -0.026190517470240593, -0.022093871608376503, 0.05171576887369156, 0.04082639515399933, 0.051260583102703094, -0.032002851366996765, 0.014802194200456142, 0.03016461245715618, -0.010302887298166752, -0.02445732057094574, 0.05591745674610138, -0.0009010649519041181, 0.02288168855011463, -0.01074056327342987, 0.03156517446041107, -0.028203826397657394, -0.020518239587545395, 0.05262613296508789, 0.04751408100128174, 0.006547629367560148, 0.061659760773181915, 0.06992308050394058, 0.017165644094347954, 0.02365199849009514, -0.009585099294781685, 0.0046875071711838245, -0.017743375152349472, -0.02876405045390129, -0.005120806396007538, -0.0308648943901062, -0.0044292788952589035, 0.034786470234394073, -0.031074978411197662, 0.00748863210901618, -0.008959222584962845, -0.016211509704589844, 0.03616952523589134, -0.006228126119822264, 0.025332672521471977, 0.019590366631746292, 0.042577099055051804, 0.05122556909918785, -0.010530478321015835, 0.00614496786147356, -0.006376935634762049, -0.05171576887369156, 0.028098784387111664, -0.03981098532676697, -0.04831940308213234, 0.00953257828950882, -0.0011456162901595235, -0.058963678777217865, -0.014040638692677021, 0.0020691121462732553, 0.0055934963747859, -0.004591218661516905, 0.014399532228708267, 0.05402669683098793, 0.03103996440768242, -0.002492563333362341, -0.011265774257481098, 0.009812690317630768, 0.0684875026345253, -0.015572503209114075, 0.011064442805945873, 0.0022562185768038034, 0.01781340315937996, -0.02205885760486126, -0.031022457405924797, -0.04583340510725975, -0.04520315304398537, -0.005532221402972937, 0.009016120806336403, -0.02976195141673088, -0.020028043538331985, 0.009121162816882133, 0.030409712344408035, 0.011755971238017082, -0.04124656319618225, -0.0515056848526001, 0.07002811878919601, 0.03562680631875992, 0.04943985491991043, -0.04653368517756462, -0.04054628312587738, -0.05045526102185249, 0.04793424904346466, -0.015554996207356453, 0.00726104062050581, -0.02387958951294422, 0.007155998609960079, 0.005829840898513794, -0.060959480702877045, 0.00927872583270073, -0.05000007897615433, -0.002001272514462471, -0.00728730158880353, 0.041491661220788956, 0.008302709087729454, -0.016316551715135574, -0.04975498095154762, 0.0399160273373127, -0.04401267319917679, 0.022986730560660362, 0.04415272921323776, -0.024142194539308548, 0.08200293034315109, -0.024387292563915253, -0.00536590488627553, 0.05619756877422333, 0.0733194425702095, -0.030339684337377548, 0.05462193489074707, -0.03697484731674194, -0.03778017312288284, 0.006753337103873491, -0.05728300288319588, -0.03974095731973648, -0.023441914469003677, -0.003175337566062808, -0.022496534511446953, -0.08711498230695724, -0.04513312503695488, 0.037500057369470596, -0.018294846639037132, 0.0015242057852447033, 0.02247902750968933, -0.025822870433330536, -0.005510337650775909, 0.0029258625581860542, 0.021236028522253036, -0.02766110748052597, -0.018732521682977676, -0.05241604894399643, 0.024982532486319542, 0.02687329240143299, 0.01838238164782524, 0.04425777122378349, -0.03268562629818916, -0.023932110518217087, -0.01432950422167778, 0.04642864316701889, -0.015292391180992126, 0.06978302448987961, 0.006411949638277292, 0.005203964654356241, -0.07612057030200958, -0.030794866383075714, 0.020500732585787773, 0.013454153202474117, 0.03209038823843002, -0.0030002673156559467, 0.04842444509267807, 0.04194684326648712, -0.023319363594055176, -0.012815145775675774, 0.04821436107158661, 0.001502322033047676, 0.006175605114549398, 0.003184091066941619, -0.04170174524188042, 0.003451073309406638, 0.06474100053310394, 0.008775399066507816, -0.011274527758359909, -0.046778783202171326, -0.07233905047178268, -0.03401615843176842, -0.03144262731075287, 0.0036699112970381975, -0.039390817284584045, 0.07934185862541199, -0.020098071545362473, 0.0249475184828043, -0.017822157591581345, 0.02774864248931408, 0.015336158685386181, -0.08837548643350601, 0.00030363755649887025, 0.021603675559163094, -0.02067580260336399, 0.07142868638038635, -0.024142194539308548, -0.0288515854626894, 0.008836673572659492, 0.010232859291136265, 0.03900566324591637, 0.029324276372790337, 0.06264015287160873, -0.013795539736747742, -0.03272064030170441, 0.004674376919865608, 0.08396371454000473, 0.025490235537290573, 0.009252465330064297, 0.024509841576218605, 0.0049413591623306274, -0.06320037692785263, -0.034891512244939804, 0.023441914469003677, -0.015616270713508129, 0.020010536536574364, 0.035994455218315125, 0.006210619118064642, -0.050560303032398224, 0.003974095918238163, -0.03566182032227516, 0.023144293576478958, -0.03595944121479988, 0.018627479672431946, 0.0028164435643702745, -0.007265417370945215, -0.07261916249990463, 0.03354347124695778, -0.008083871565759182, -0.06565136462450027, 0.013821800239384174, -0.07041327655315399, -0.022233927622437477, 0.008665979839861393, -0.019800450652837753, -0.05122556909918785, 0.08718501031398773, -0.033981144428253174, 0.04352247714996338, -0.012648829258978367, -0.020413197576999664, 0.011344555765390396, -0.05493706092238426, 0.008315839804708958, -0.01622026413679123, -0.03135509043931961, 0.028729036450386047, 0.015572503209114075, -0.026733234524726868, -0.0032015980686992407, 0.013559195213019848, -0.0019859536550939083, 0.024212222546339035, -0.04986002296209335, 0.051960866898298264, -0.03354347124695778, -0.06565136462450027, -0.052065908908843994, -0.04303228110074997, 0.03144262731075287, 0.008210796862840652, 0.03044472634792328, 0.00006972037954255939, -0.006932783871889114, 0.002154459012672305, 0.007654949091374874, 0.04163171723484993, 0.07626062631607056, 0.02457987144589424, -0.03174024447798729, -0.029394304379820824, 0.023091772571206093, -0.015476214699447155, -0.04296225309371948, -0.010066542774438858, -0.0075323996134102345, -0.017480770125985146, 0.05462193489074707, -0.0172619316726923, 0.021586168557405472, 0.05080540105700493, 0.01182599924504757, 0.00744048785418272, 0.01467089168727398, 0.0203606765717268, -0.01183475274592638, 0.013751772232353687, 0.07801132649183273, -0.0026194893289357424, -0.060749396681785583, -0.0011675000423565507, 0.02025563456118107, 0.031022457405924797, -0.005002634134143591, -0.007615558337420225, -0.03214290738105774, -0.05910373479127884, -0.032002851366996765, 0.024737434461712837, -0.013515427708625793, 0.05742305889725685, 0.047093912959098816, -0.0035801876801997423, 0.010749316774308681, 0.018995128571987152, 0.00889357179403305, -0.017717115581035614, 0.06481102854013443, 0.04443284124135971, 0.02156866155564785, 0.04275216907262802, 0.02864150144159794, -0.08340349048376083, -0.028799064457416534, 0.02078084461390972, -0.03177525848150253, 0.06964296847581863, -0.0002984401653520763, -0.06978302448987961, -0.0018338614609092474, 0.04751408100128174, -0.0037837070412933826, -0.010653028264641762, -0.03025214932858944, -0.027398502454161644, -0.013016477227210999, -0.04793424904346466, 0.036309581249952316, -0.021411098539829254, 0.026032954454421997, -0.005536598153412342, -0.004300164524465799, -0.07086846232414246, -0.01742824912071228, -0.015852615237236023, -0.03606448322534561, -0.0034423198085278273, 0.00983019731938839, 0.005120806396007538, 0.04282219707965851, 0.09124664217233658, 0.019747929647564888, -0.041281577199697495, -0.02358197048306465, 0.039881013333797455, 0.04961492493748665, 0.036694735288619995, -0.05882362276315689, -0.009585099294781685, -0.006972174625843763, -0.024492334574460983, 0.017848417162895203, 0.01732320711016655, 0.044362813234329224, 0.008613458834588528, -0.055357228964567184, 0.03844543918967247, 0.03662470728158951, -0.016106467694044113, 0.013016477227210999, 0.048774585127830505, -0.09936990588903427, -0.01997552253305912, -0.02645312249660492, -0.0938376858830452, 0.046673741191625595, -0.026593178510665894, 0.050560303032398224, 0.06600150465965271, -0.012193646281957626, -0.004963242914527655, -0.00953257828950882, 0.037710145115852356, -0.005969897378236055, -0.0058517251163721085, 0.037079889327287674, -0.00009136481094174087, -0.016806749626994133, 0.020623281598091125, -0.03207287937402725, -0.009515071287751198, 0.0007790628587827086, 0.03714991733431816, -0.004810056649148464, -0.05612754076719284, -0.008757892064750195, 0.029604388400912285, -0.028501445427536964, -0.0034423198085278273, -0.12016825377941132, -0.005335267633199692, 0.008521546609699726, 0.03277315944433212, -0.0029937021899968386, 0.02457987144589424, 0.0329132154583931, 0.007042203098535538 ]
9,414
asyncclick.types
convert
null
def convert( self, value: t.Union[str, "os.PathLike[str]", t.IO[t.Any]], param: t.Optional["Parameter"], ctx: t.Optional["Context"], ) -> t.IO[t.Any]: if _is_file_like(value): return value value = t.cast("t.Union[str, os.PathLike[str]]", value) try: lazy = self.resolve_lazy_flag(value) if lazy: lf = LazyFile( value, self.mode, self.encoding, self.errors, atomic=self.atomic ) if ctx is not None: ctx.call_on_close(lf.close_intelligently) return t.cast(t.IO[t.Any], lf) f, should_close = open_stream( value, self.mode, self.encoding, self.errors, atomic=self.atomic ) # If a context is provided, we automatically close the file # at the end of the context execution (or flush out). If a # context does not exist, it's the caller's responsibility to # properly close the file. This for instance happens when the # type is used with prompts. if ctx is not None: if should_close: ctx.call_on_close(safecall(f.close)) else: ctx.call_on_close(safecall(f.flush)) return f except OSError as e: # noqa: B014 self.fail(f"'{format_filename(value)}': {e.strerror}", param, ctx)
(self, value: Union[str, ForwardRef('os.PathLike[str]'), IO[Any]], param: Optional[ForwardRef('Parameter')], ctx: Optional[ForwardRef('Context')]) -> IO[Any]
[ 0.040394753217697144, -0.016526874154806137, -0.020927634090185165, 0.004650585353374481, 0.021926933899521828, -0.018333299085497856, 0.054577115923166275, 0.05107956752181053, 0.01711300015449524, -0.03228505328297615, 0.08878389745950699, 0.06902851909399033, -0.015998397022485733, 0.045083772391080856, 0.031247321516275406, 0.08763086050748825, -0.04004884138703346, 0.03605164587497711, 0.021100590005517006, 0.07979020476341248, 0.01390371285378933, -0.005193473771214485, -0.007706135045737028, -0.03228505328297615, 0.007489940617233515, -0.025731956586241722, -0.03799259290099144, -0.011280551552772522, -0.044430386275053024, -0.029575416818261147, 0.039510756731033325, -0.01588309369981289, 0.011280551552772522, 0.004648183006793261, -0.006423380691558123, -0.014614752493798733, -0.04400760307908058, 0.08225002139806747, -0.021408066153526306, -0.10062175244092941, -0.05380842462182045, 0.020062856376171112, -0.017141826450824738, 0.03641677275300026, -0.07129616290330887, 0.007710939273238182, -0.08017455041408539, 0.026865778490900993, -0.024751875549554825, 0.037627462297677994, 0.037050943821668625, -0.005034931004047394, -0.025059351697564125, 0.003610449144616723, 0.018227603286504745, 0.013567410409450531, 0.0011794614838436246, 0.0004660193808376789, 0.024482833221554756, -0.0013488138793036342, 0.028960462659597397, -0.0038602740969508886, 0.04250865429639816, -0.00866219587624073, 0.004840356297791004, 0.011001900769770145, 0.0052991691045463085, -0.04143248870968819, -0.029940545558929443, 0.0731794610619545, -0.00026093481574207544, -0.017333999276161194, -0.005006105173379183, 0.0017860073130577803, 0.04615994170308113, 0.011097987182438374, -0.03422600030899048, 0.02736542746424675, 0.04516064375638962, -0.009618256241083145, 0.06095725670456886, -0.009426083415746689, -0.013855669647455215, -0.043815430253744125, -0.013922929763793945, -0.034495044499635696, 0.02138884924352169, -0.025462916120886803, 0.019928334280848503, 0.07014312595129013, 0.0016911219572648406, -0.003562405938282609, -0.04158622398972511, -0.019053947180509567, 0.03293844312429428, -0.019630465656518936, 0.022234410047531128, 0.022368930280208588, -0.027077168226242065, -0.024098487570881844, -0.018525471910834312, -0.004021218977868557, -0.013740365393459797, 0.001854468951933086, 0.04831228032708168, -0.037531375885009766, 0.059227701276540756, 0.030670803040266037, 0.040087275207042694, -0.061649080365896225, -0.07006625831127167, -0.0357249490916729, -0.02648143284022808, 0.010886597447097301, -0.01957281492650509, -0.01769912801682949, -0.031689319759607315, -0.03341887518763542, -0.0011152036022394896, -0.0018436592072248459, -0.018602341413497925, 0.05038774758577347, -0.04085596650838852, -0.002630367176607251, 0.05069522187113762, 0.02705795131623745, -0.015335401520133018, -0.047851063311100006, 0.07029686123132706, 0.011712941341102123, 0.014710838906466961, 0.031035929918289185, 0.03543668985366821, 0.013279150240123272, -0.027442296966910362, 0.012885196134448051, -0.08555539697408676, 0.037531375885009766, -0.033226702362298965, 0.06249464303255081, 0.05127174034714699, -0.010463817045092583, 0.0083018708974123, -0.07510118931531906, 0.07283354550600052, -0.00857571791857481, 0.06399358808994293, -0.008522870019078255, -0.036608945578336716, 0.06695305556058884, 0.022330496460199356, 0.004470423329621553, -0.025289960205554962, 0.061495341360569, 0.04958061873912811, -0.029287157580256462, 0.005693123675882816, -0.03218896687030792, -0.002709638560190797, -0.03822319954633713, -0.012327894568443298, 0.012049243785440922, 0.006288859527558088, -0.003651286009699106, 0.05696006119251251, 0.04973435774445534, -0.031958360224962234, 0.030228804796934128, 0.06737583130598068, -0.060726650059223175, -0.013029325753450394, 0.005659493152052164, 0.019322989508509636, 0.05292442813515663, 0.05384685844182968, -0.00990651547908783, 0.017362825572490692, 0.01728595606982708, 0.003091582329943776, 0.0047658891417086124, 0.007504353765398264, -0.0021175057627260685, 0.0012803522404283285, 0.013029325753450394, 0.02138884924352169, 0.03368791565299034, 0.01643078774213791, 0.011943548917770386, 0.043776996433734894, -0.03791572153568268, 0.010944249108433723, 0.03597477450966835, 0.011655288748443127, -0.005126213189214468, -0.017314782366156578, -0.06022700294852257, -0.0498112291097641, -0.02425222657620907, -0.005774796940386295, 0.023118404671549797, -0.027211688458919525, 0.022695625200867653, 0.03118966892361641, 0.016930436715483665, -0.11368951201438904, 0.008191372267901897, 0.033188268542289734, 0.03864597901701927, -0.0761389210820198, 0.04854288697242737, -0.01653648167848587, -0.0653003677725792, -0.07291041314601898, 0.014999098144471645, 0.03989510238170624, -0.01697847992181778, -0.02081233076751232, 0.035513561218976974, -0.07744570076465607, 0.06737583130598068, 0.061303168535232544, 0.04742828384041786, -0.014614752493798733, 0.018294865265488625, 0.0953177809715271, -0.031554799526929855, 0.0020106094889342785, -0.049657490104436874, 0.00095666095148772, 0.020677808672189713, 0.027423080056905746, -0.019668901339173317, 0.033880092203617096, 0.016892001032829285, 0.02209988795220852, 0.03234270587563515, 0.03728155046701431, -0.012164547108113766, -0.09693203121423721, -0.002757681766524911, -0.00311800604686141, -0.04700550436973572, -0.01330797653645277, 0.04854288697242737, -0.012174156494438648, -0.030459411442279816, -0.0063801417127251625, 0.01708417572081089, -0.010857771150767803, 0.007778199855238199, 0.10615633428096771, 0.053962163627147675, -0.051540784537792206, -0.013298368081450462, 0.00623601209372282, 0.0006245620897971094, -0.019832247868180275, -0.10876988619565964, 0.034495044499635696, 0.028998898342251778, -0.02261875569820404, 0.0063561201095581055, 0.021773194894194603, -0.002289260271936655, -0.05776718631386757, -0.09485656768083572, -0.06472384929656982, -0.035071562975645065, 0.04542968422174454, 0.0076100486330688, -0.10654067993164062, 0.03747372329235077, -0.007869482040405273, -0.0036440794356167316, -0.0381271131336689, -0.02432909421622753, 0.006553097628057003, -0.009003302082419395, 0.107001893222332, 0.04185526818037033, -0.04496847093105316, -0.012817935086786747, -0.026654386892914772, -0.01574857346713543, -0.0047370633110404015, 0.0356096476316452, -0.010117905214428902, -0.033053748309612274, -0.012654588557779789, 0.004573716316372156, 0.012020417489111423, 0.0000526974254171364, -0.03328435495495796, 0.014797316864132881, -0.00415093544870615, 0.004112501163035631, -0.08132758736610413, -0.09370353072881699, 0.10492642968893051, -0.08394113928079605, -0.01718026213347912, -0.010290861129760742, 0.040779098868370056, 0.047851063311100006, 0.010636772960424423, 0.01030046958476305, -0.0015782202826812863, -0.08947572112083435, -0.047197677195072174, 0.029498547315597534, 0.02999819628894329, -0.03126653656363487, 0.003564808052033186, -0.009075367823243141, 0.029882892966270447, 0.03605164587497711, 0.020005203783512115, 0.005721949506551027, 0.030939843505620956, 0.00864297803491354, -0.029018115252256393, 0.05323190614581108, 0.0017007305286824703, -0.04358482360839844, 0.010185166262090206, -0.029806023463606834, 0.040433187037706375, 0.008974476717412472, 0.02354118600487709, 0.03017115220427513, -0.010713641531765461, 0.05004183575510979, 0.012712240219116211, 0.014797316864132881, -0.021581022068858147, 0.024578919634222984, 0.02951776422560215, -0.009368430823087692, 0.036705031991004944, -0.005731557961553335, 0.0436616949737072, 0.007542788051068783, 0.0081337196752429, -0.018198778852820396, -0.04097127169370651, -0.011405464261770248, 0.018083473667502403, -0.0050733657553792, 0.10154418647289276, -0.044737860560417175, -0.030363325029611588, -0.020677808672189713, -0.019313381984829903, -0.029325591400265694, -0.039818234741687775, -0.003168451366946101, -0.017785606905817986, 0.0412018783390522, -0.00404043635353446, -0.039971973747015, 0.01964007504284382, 0.006610749289393425, -0.009699929505586624, -0.0018208386609330773, 0.04554498940706253, 0.002309678588062525, 0.024386746808886528, 0.009680712595582008, -0.010550295002758503, 0.023483533412218094, -0.014787708409130573, 0.027730556204915047, 0.006308076903223991, -0.06514662504196167, 0.013999799266457558, -0.004953257739543915, -0.02569352276623249, 0.0034831345546990633, -0.003610449144616723, 0.058305270969867706, 0.056152936071157455, 0.0381271131336689, -0.0032044837716966867, 0.023752575740218163, -0.002400960773229599, -0.008441196754574776, 0.00444880360737443, -0.02332979626953602, 0.007864678278565407, -0.03785806894302368, 0.0393570177257061, 0.029229504987597466, 0.07367910444736481, 0.005693123675882816, 0.026327693834900856, 0.024655789136886597, -0.016017615795135498, 0.02490561455488205, -0.007686917670071125, 0.05538424476981163, -0.022599538788199425, 0.009402061812579632, 0.026519866660237312, 0.048773493617773056, -0.07283354550600052, 0.01704574003815651, 0.051194872707128525, 0.05296286568045616, -0.01889060065150261, -0.00462175952270627, 0.004076468758285046, -0.06318646669387817, -0.009454908780753613, -0.029940545558929443, 0.02384866215288639, 0.03412991389632225, -0.031689319759607315, -0.028576117008924484, 0.008397957310080528, -0.028057249262928963, -0.02204223722219467, 0.009877689182758331, -0.027999598532915115, 0.04519907757639885, 0.01489340327680111, -0.02292623184621334, 0.028441596776247025, -0.00855650007724762, 0.009493343532085419, 0.004873986355960369, -0.01082894578576088, -0.03662816435098648, -0.0008936041849665344, -0.04512220621109009, 0.032265838235616684, -0.02446361631155014, -0.02917185239493847, 0.0038410567212849855, 0.035513561218976974, 0.022388149052858353, 0.013682713732123375, 0.015229705721139908, 0.0332651361823082, 0.06899008899927139, -0.04220118001103401, -0.03637833893299103, -0.03247722610831261, 0.0712192952632904, -0.017209086567163467, -0.030939843505620956, 0.009185866452753544, -0.03939545527100563, 0.04804323613643646, 0.01030046958476305, -0.0412018783390522, -0.00001852292007242795, -0.012097286991775036, -0.007888699881732464, 0.01732439175248146, 0.02486717887222767, 0.023867879062891006, 0.02657751925289631, 0.058612748980522156, -0.10853928327560425, -0.013413671404123306, -0.02705795131623745, 0.000033480129786767066, 0.01255850214511156, 0.0261355210095644, -0.03457191213965416, -0.011367029510438442, -0.04024101421236992, -0.0013620257377624512, 0.039971973747015, 0.04458412528038025, 0.02111980691552162, 0.011962765827775002, 0.030536280944943428, 0.014182363636791706, -0.031170452013611794, -0.0011254127603024244, -0.04800480231642723, -0.03391852602362633, 0.06076508387923241, 0.009954558685421944, 0.0004657191166188568, 0.04881192743778229, 0.03163166716694832, 0.030555497854948044, 0.05784405767917633, 0.003535982221364975, 0.107001893222332, -0.05941987410187721, -0.054308075457811356, -0.002714442787691951, 0.07221858948469162, 0.0034807324409484863, -0.027423080056905746, -0.04220118001103401, -0.006207186263054609, 0.006063056644052267, -0.017401259392499924, -0.07333319634199142, 0.004657791927456856, -0.015124010853469372, 0.04281613230705261, -0.020889198407530785, -0.04250865429639816, -0.046544287353754044, -0.02965228632092476, -0.0012911619851365685, 0.02323370985686779, -0.01779521442949772, 0.0141439288854599, -0.003533580107614398, 0.011251726187765598, 0.038319285959005356, -0.008090481162071228, -0.047505151480436325, -0.02671203948557377, -0.024367529898881912, -0.015450704842805862, -0.012068460695445538, -0.03768511489033699, -0.005092583131045103, -0.04804323613643646, -0.00023511158360634, -0.016142526641488075, 0.058843355625867844, -0.027730556204915047, 0.038934238255023956, -0.05138704553246498, 0.010713641531765461, -0.01431688480079174, 0.04554498940706253, -0.06018856540322304, -0.011001900769770145, 0.016104092821478844, -0.06380141526460648, -0.02148493565618992, -0.018400559201836586, 0.05138704553246498, -0.029364027082920074, 0.02872985601425171, 0.03524451702833176, -0.07971333712339401, 0.03839615359902382, -0.001438894891180098, 0.053078167140483856, -0.03405304625630379, -0.06760644167661667, -0.0510411337018013, 0.008498848415911198, 0.0681445300579071, -0.03872285038232803, -0.007855068892240524, 0.005289560183882713, 0.0007104393444024026, -0.03530216962099075, -0.03284235671162605, 0.006629966665059328, 0.005601841490715742, -0.0571906678378582, -0.009099389426410198, -0.0015650084242224693, 0.015114402398467064, 0.023521969094872475, -0.00990651547908783, 0.014182363636791706, -0.02336823008954525, 0.050310876220464706, 0.0020526472944766283, 0.031132016330957413, -0.03624381870031357, 0.02921028807759285, 0.03184305876493454, 0.009166649542748928, 0.007148833479732275, 0.008176959119737148, 0.018525471910834312, -0.048158541321754456, -0.012433589436113834, -0.02279171161353588, -0.01040616538375616, 0.04339265078306198, -0.039164844900369644, 0.0019517565378919244, 0.07840656489133835, -0.01988990046083927, 0.006601140834391117, -0.01438414491713047, -0.016142526641488075, -0.010607946664094925, -0.018563905730843544, 0.02801881544291973, -0.03712781146168709, 0.00020433388999663293, -0.023694925010204315, 0.03518686816096306, -0.007989590056240559, -0.0626099482178688, -0.011491942219436169, -0.029806023463606834, 0.0461215078830719, 0.005188669543713331, 0.003922730218619108, 0.011040335521101952, 0.013077368959784508, -0.01274106651544571, 0.056767888367176056, 0.029306374490261078, 0.016171352937817574, 0.010185166262090206, -0.01762225851416588, 0.03514843061566353, 0.06145690754055977, -0.044468820095062256, -0.049426883459091187, -0.03939545527100563, -0.04208587482571602, 0.007537983823567629, 0.009382843971252441, -0.009474126622080803, 0.003492743242532015, -0.0038434588350355625, 0.0023060753010213375, -0.012702631764113903, -0.028383944183588028, -0.019966769963502884, -0.035686515271663666, 0.017478128895163536, -0.006999899633228779, -0.016526874154806137, 0.05469242110848427, -0.021619455888867378, -0.016104092821478844, -0.01602722331881523, -0.0022292062640190125, 0.005659493152052164, -0.00883034709841013, -0.00013879990729037672, -0.07087337970733643, 0.0009680712246336043, 0.0004179761453997344, -0.04220118001103401, -0.05957361310720444, 0.03270783647894859, -0.022330496460199356, 0.03470643237233162, 0.005779601167887449, 0.04946531727910042, 0.026250824332237244, -0.0027865078300237656, -0.05284756049513817, 0.07045060396194458, 0.008892803452908993, 0.09239675104618073, -0.010761684738099575, 0.0152200972661376, 0.03516764938831329, -0.003985186573117971, 0.0030579520389437675, -0.004674606956541538, 0.034495044499635696, -0.0461215078830719, -0.0261355210095644, -0.01957281492650509, -0.02432909421622753, 0.007941546849906445, -0.024060053750872612, -0.02042798325419426, 0.026289258152246475, -0.04885036125779152, -0.017679911106824875, 0.024271443486213684, -0.05392372980713844, 0.0130677605047822, 0.04773575812578201, 0.010963466949760914, 0.02517465502023697, -0.03003663197159767, 0.03061315044760704, -0.0178336501121521, 0.048081669956445694, -0.011117205023765564, -0.04335421696305275, 0.0009962966432794929, 0.015191270969808102, 0.0279803816229105, -0.051771391183137894, -0.016305875033140182, 0.0387997180223465, -0.06945130228996277, -0.04408447444438934, -0.04400760307908058, -0.020524071529507637, -0.0005347812548279762, -0.006678009871393442, 0.02732699364423752, 0.058612748980522156, 0.017314782366156578, -0.0485813207924366, 0.05876648798584938, -0.05173295736312866, -0.0018388548633083701, -0.08586287498474121, -0.011732158251106739, -0.010713641531765461, 0.006010208744555712, 0.0008887998992577195, -0.01855429820716381, 0.022522669285535812, -0.030766889452934265, -0.026250824332237244, -0.040394753217697144, 0.016555698588490486, -0.08009768277406693, 0.033880092203617096, 0.009368430823087692, -0.022234410047531128, 0.018631167709827423, -0.05899709463119507, 0.03339965641498566, 0.011213291436433792, 0.014336101710796356, 0.04362325742840767, -0.05453868210315704, 0.017574215307831764, 0.0498112291097641, 0.0021259132772684097, 0.026827342808246613, -0.025289960205554962, -0.023752575740218163, -0.0166037417948246, 0.007917525246739388, 0.0018496646080166101, -0.025462916120886803, 0.0073458109982311726, -0.01447062287479639, -0.015383444726467133, -0.009709537960588932, 0.0762542262673378, -0.05557641759514809, -0.00009601140482118353, 0.0065338802523911, -0.042585525661706924, 0.0713346004486084, -0.005500950384885073, -0.014191972091794014, 0.044468820095062256, -0.02784585952758789, -0.018016213551163673, 0.001092383055947721, 0.06983564794063568, 0.06672244518995285, -0.02982524037361145, 0.006615553516894579, 0.015056750737130642, -0.0002369132125750184, -0.008297067135572433, -0.07813751697540283, 0.04646741971373558, 0.011059553362429142, 0.013452106155455112, 0.008397957310080528, 0.02104293741285801, -0.04669802635908127, -0.011328594759106636 ]
9,416
asyncclick.types
get_metavar
Returns the metavar default for this param if it provides one.
def get_metavar(self, param: "Parameter") -> t.Optional[str]: """Returns the metavar default for this param if it provides one."""
(self, param: 'Parameter') -> Optional[str]
[ 0.0879175141453743, 0.04174741730093956, 0.05592009425163269, -0.036051541566848755, 0.037391748279333115, 0.0013936047907918692, 0.05829896032810211, 0.015605023130774498, -0.020069584250450134, 0.0065125636756420135, -0.0032667519990354776, 0.03457731381058693, -0.0403066948056221, -0.050425250083208084, 0.024190718308091164, 0.017255151644349098, 0.01638401858508587, 0.04838143661618233, 0.008326029404997826, 0.037961333990097046, 0.09059792757034302, -0.006127254106104374, -0.018511595204472542, -0.05072679743170738, 0.009389818646013737, -0.006537692155689001, 0.050324734300374985, -0.06225256994366646, -0.05806442350149155, -0.026921387761831284, -0.028177831321954727, -0.045231953263282776, -0.006768040359020233, 0.08490204811096191, 0.01679445616900921, 0.03993813693523407, -0.01866236887872219, 0.06004123017191887, -0.09817008674144745, -0.041981954127550125, 0.014909791760146618, -0.0030908500775694847, 0.0008821277879178524, -0.07726287841796875, 0.005570231005549431, 0.011961338110268116, 0.02278350107371807, 0.022817006334662437, -0.07297421246767044, -0.013879508711397648, 0.05384277552366257, -0.01203672494739294, -0.023520614951848984, -0.03889947757124901, -0.058634012937545776, 0.03916751965880394, 0.04147937521338463, 0.00655863294377923, 0.0034594067838042974, 0.049822159111499786, 0.028479376807808876, 0.010755153372883797, -0.013770616613328457, -0.01772422343492508, -0.016216492280364037, -0.030791232362389565, 0.0465051494538784, -0.019148193299770355, 0.009490333497524261, 0.05220102146267891, -0.02866365574300289, -0.0200025737285614, -0.05665720999240875, -0.013201029039919376, 0.07042782753705978, -0.06969071179628372, -0.058164939284324646, -0.0796082392334938, 0.04302061349153519, -0.031980667263269424, -0.029400769621133804, 0.025530925020575523, -0.03725772723555565, -0.022850511595606804, -0.012891106307506561, -0.038262881338596344, -0.017405925318598747, -0.026770614087581635, 0.054814424365758896, -0.04874999448657036, -0.030891748145222664, -0.0232525747269392, 0.054546382278203964, 0.05561854690313339, -0.010378220118582249, -0.018025770783424377, -0.018109533935785294, -0.02849612943828106, -0.024442005902528763, -0.0330025739967823, -0.01633376069366932, -0.02129252254962921, 0.06379380822181702, -0.009406570345163345, 0.04365720972418785, -0.019047677516937256, -0.018930409103631973, 0.023889170959591866, 0.007408826146274805, 0.008057988248765469, -0.03772679716348648, -0.04184793308377266, -0.0873144194483757, -0.024592779576778412, 0.02767525427043438, 0.03859793394804001, 0.011065076105296612, -0.04509793221950531, 0.003920102491974831, 0.013477446511387825, -0.05210050940513611, 0.00873646792024374, -0.02792654186487198, -0.0812164843082428, 0.05675772204995155, -0.01799226552248001, -0.007304122671484947, 0.006005798000842333, -0.0469072088599205, 0.0467061772942543, 0.04694071412086487, 0.04570102319121361, -0.05273710563778877, -0.02685437723994255, -0.01782473921775818, -0.03511339798569679, 0.03987112641334534, 0.08168555796146393, -0.023118553683161736, 0.02164432592689991, -0.023118553683161736, 0.034912366420030594, -0.035582467913627625, -0.06211854889988899, -0.016065718606114388, -0.04157989099621773, 0.04194844886660576, -0.014047034084796906, 0.007057022303342819, 0.05853349715471268, 0.0032855987083166838, -0.013829250819981098, -0.02809406816959381, -0.03829638659954071, 0.04757731407880783, -0.011500642634928226, -0.003377737943083048, -0.04891751706600189, 0.01593169942498207, -0.0473092719912529, 0.04472937434911728, -0.07424741238355637, 0.018779637292027473, -0.009674612432718277, 0.0403066948056221, 0.05025772377848625, 0.007580540142953396, 0.031360819935798645, 0.01762370951473713, 0.009674612432718277, -0.03422551229596138, 0.012153993360698223, -0.022800253704190254, -0.042853087186813354, 0.0755206048488617, 0.11699998378753662, -0.019868554547429085, 0.027407212182879448, 0.048314426094293594, -0.010420101694762707, -0.012731957249343395, 0.018159791827201843, -0.019399480894207954, -0.012958116829395294, 0.013008374720811844, 0.0017956666415557265, 0.01383762713521719, 0.009842137806117535, -0.07424741238355637, 0.009012885391712189, 0.018980666995048523, 0.0013381119351834059, 0.010353091172873974, 0.03266752138733864, -0.03323710709810257, -0.03685566410422325, 0.039201024919748306, -0.0011622098973020911, 0.10540720075368881, 0.00641623605042696, 0.028847934678196907, 0.002602931344881654, -0.026150768622756004, 0.06824999302625656, 0.042182981967926025, 0.01856185309588909, 0.04777834191918373, 0.0046907211653888226, -0.11713400483131409, 0.011668168008327484, -0.04529896378517151, -0.03799483925104141, 0.0016564108664169908, -0.025497419759631157, 0.0013067008694633842, -0.05715978518128395, -0.024190718308091164, 0.02005283161997795, -0.03742525354027748, 0.030757727101445198, 0.03712370619177818, -0.027792520821094513, 0.11854121834039688, 0.06875256448984146, 0.06044328957796097, -0.015228090807795525, 0.0543118491768837, -0.023922676220536232, -0.03812886029481888, 0.011994843371212482, -0.02283375896513462, -0.033890459686517715, 0.0136030912399292, 0.020957471802830696, 0.025112109258770943, 0.0036018036771565676, 0.0004965568077750504, -0.007308310829102993, -0.002961017657071352, -0.0031222610268741846, 0.007706184405833483, 0.013125642202794552, 0.01259793620556593, 0.08376287668943405, -0.011475513689219952, -0.0036269323900341988, -0.03437628224492073, 0.015563142485916615, 0.023235822096467018, 0.016467781737446785, 0.022280924022197723, 0.04422679916024208, -0.015621775761246681, -0.012053477577865124, 0.02767525427043438, 0.023420099169015884, -0.046672672033309937, -0.01669394038617611, 0.009607601910829544, -0.00621101725846529, -0.05736081674695015, -0.01151739526540041, 0.024810563772916794, 0.03722422197461128, -0.025782212615013123, 0.01156765315681696, 0.01095618400722742, -0.021007729694247246, -0.017439430579543114, -0.011098580434918404, 0.03487886115908623, 0.03239947929978371, -0.04864947870373726, -0.04489690065383911, 0.021778346970677376, -0.0028940073680132627, 0.029752572998404503, -0.029853088781237602, -0.001794619602151215, 0.011249354109168053, -0.017640462145209312, -0.04258504509925842, 0.03678865358233452, 0.026318294927477837, -0.06526803225278854, 0.061046384274959564, 0.006960694678127766, 0.00694394251331687, -0.04405927285552025, 0.046605661511421204, -0.003107602708041668, 0.05689174309372902, -0.028177831321954727, -0.009440075606107712, 0.020320873707532883, 0.026938140392303467, -0.012095359154045582, 0.00457345275208354, 0.018947161734104156, -0.011299612000584602, 0.010495488531887531, -0.04338916763663292, -0.02772551216185093, -0.01249742042273283, -0.05384277552366257, 0.05478091910481453, 0.024810563772916794, -0.01742267794907093, 0.06942266970872879, -0.021426543593406677, -0.020588913932442665, 0.026787366718053818, -0.022481955587863922, 0.026737108826637268, -0.0203041210770607, 0.03147808834910393, 0.004376610275357962, 0.009666236117482185, 0.05009019747376442, 0.0408092737197876, -0.009951029904186726, 0.03209793195128441, -0.02730669640004635, -0.0607113316655159, -0.01995231583714485, -0.0798092633485794, -0.051932983100414276, -0.013259663246572018, 0.012849224731326103, 0.054546382278203964, 0.006248710211366415, 0.02556442841887474, -0.022615976631641388, -0.017121130600571632, -0.05819844454526901, -0.0029254183173179626, -0.0031725189182907343, 0.006479058414697647, -0.014960049651563168, 0.024542521685361862, 0.050525765866041183, -0.012405281886458397, -0.01943298615515232, 0.0034929118119180202, 0.04925256967544556, 0.021309275180101395, 0.0737113282084465, 0.0005062418640591204, 0.0542113333940506, -0.06714431941509247, -0.02117525413632393, 0.04519844800233841, -0.010495488531887531, -0.004236307460814714, 0.037090200930833817, 0.004606958013027906, 0.004975514952093363, 0.005662370473146439, -0.005976480897516012, 0.03541494160890579, 0.018210049718618393, -0.014557987451553345, 0.012229379266500473, 0.022951027378439903, 0.011911081150174141, 0.011844070628285408, -0.002179928822442889, 0.01464175060391426, 0.03752576932311058, -0.019449738785624504, 0.0002063969586743042, -0.010637884959578514, 0.01299162209033966, -0.08818555623292923, 0.011048323474824429, 0.04338916763663292, -0.02633504755795002, 0.00017433147877454758, -0.017188141122460365, -0.05354122817516327, 0.025028346106410027, 0.01510244607925415, 0.0018291717860847712, 0.03276803717017174, -0.06004123017191887, -0.041881438344717026, -0.007090527098625898, 0.009548967704176903, -0.03484535589814186, 0.004230025224387646, 0.002471004845574498, -0.007107279729098082, -0.0007151255267672241, 0.005155604798346758, 0.020136594772338867, -0.042283497750759125, -0.018478089943528175, -0.018427832052111626, -0.06848452240228653, 0.020036078989505768, 0.06188401207327843, -0.04067525267601013, 0.0022197160869836807, 0.024877574294805527, -0.027809273451566696, -0.023822162300348282, 0.021510306745767593, 0.011408503167331219, -0.06097937375307083, -0.017858244478702545, -0.0038049286231398582, -0.03695617988705635, -0.014373709447681904, -0.007316687144339085, 0.027759017422795296, 0.005507409106940031, 0.02777577005326748, 0.038162365555763245, 0.010880797170102596, -0.03251674771308899, -0.014030281454324722, -0.012974869459867477, 0.04694071412086487, 0.07853607088327408, 0.0806133896112442, 0.03422551229596138, -0.04044071584939957, 0.008811854757368565, -0.017221646383404732, -0.06895359605550766, -0.012698451988399029, 0.02293427474796772, 0.04556700214743614, -0.047543808817863464, 0.02576545998454094, 0.0019076995085924864, -0.0018794294446706772, -0.03201416879892349, 0.0035766747314482927, -0.010554121807217598, 0.037492264062166214, -0.03501288220286369, -0.0166018009185791, 0.04278607666492462, -0.006977447308599949, 0.030640458688139915, 0.0019286401802673936, 0.011542524211108685, -0.0008041235851123929, -0.05092782899737358, -0.045734528452157974, 0.00935631338506937, 0.03263401612639427, -0.03392396494746208, 0.038530923426151276, -0.09615977853536606, -0.03385695442557335, 0.011316364631056786, -0.004079252015799284, -0.03759277984499931, 0.060175247490406036, 0.0473092719912529, 0.04580153897404671, -0.016978735104203224, 0.008464238606393337, 0.010981312952935696, 0.040072157979011536, 0.012865977361798286, -0.028881439939141273, -0.019885307177901268, -0.04462885856628418, 0.00160405901260674, -0.028027057647705078, -0.00495876232162118, -0.011643039993941784, -0.015906570479273796, 0.020387884229421616, 0.042484529316425323, 0.014206183142960072, 0.021979378536343575, -0.01198646705597639, 0.004661404062062502, 0.042752571403980255, 0.027641749009490013, -0.02593298628926277, 0.010495488531887531, -0.04184793308377266, -0.008309276774525642, 0.008288335986435413, -0.0203041210770607, -0.004925257060676813, 0.051296383142471313, 0.01757345162332058, 0.012363400310277939, 0.045835044234991074, 0.008493555709719658, 0.05806442350149155, 0.019918812438845634, 0.017556698992848396, 0.059806693345308304, 0.0330025739967823, -0.029032211750745773, -0.01727190427482128, -0.015320229344069958, -0.0020658019930124283, -0.1131133884191513, -0.04931958019733429, -0.008317653089761734, -0.026067007333040237, 0.02705540880560875, 0.025631438940763474, 0.016484534367918968, -0.022029636427760124, 0.03759277984499931, 0.013075384311378002, 0.027189429849386215, -0.02216365747153759, -0.009264173917472363, 0.11358245462179184, 0.005298001691699028, -0.05189947783946991, -0.037023190408945084, -0.020119842141866684, -0.06225256994366646, -0.005126287695020437, -0.009666236117482185, -0.044193293899297714, -0.047845352441072464, -0.0266533475369215, 0.057226795703172684, 0.029618551954627037, -0.04422679916024208, -0.020806698128581047, 0.07927318662405014, 0.007450707722455263, 0.09247421473264694, -0.09508761763572693, 0.05736081674695015, 0.00039132966776378453, 0.0023223257157951593, 0.006784792989492416, -0.0538092702627182, 0.009800256229937077, 0.024676542729139328, 0.03281829506158829, 0.027222933247685432, -0.046103086322546005, 0.05545102432370186, 0.04560050740838051, 0.012840848416090012, -0.07210308313369751, 0.018545100465416908, -0.053876280784606934, 0.0027599867898970842, -0.058466486632823944, 0.06838401407003403, 0.02474355325102806, -0.018796389922499657, 0.06456442177295685, 0.012857601046562195, 0.029467778280377388, -0.019416233524680138, 0.05689174309372902, 0.03169587254524231, 0.036051541566848755, -0.006768040359020233, -0.0204046368598938, 0.013569585978984833, -0.001711903722025454, -0.008937498554587364, 0.0021778347436338663, -0.08490204811096191, 0.008945874869823456, 0.008845359086990356, -0.032851800322532654, 0.050324734300374985, 0.05729380622506142, 0.029802830889821053, -0.02896520122885704, 0.05025772377848625, -0.014264817349612713, 0.03648710623383522, 0.04436081647872925, 0.013611466623842716, -0.021192006766796112, 0.02134278044104576, 0.02082345075905323, -0.0266533475369215, -0.053775765001773834, -0.024827316403388977, -0.06523452699184418, 0.04596906527876854, 0.0010878703324124217, 0.0001322537282248959, -0.011157214641571045, 0.008011918514966965, 0.02871391363441944, -0.04603607580065727, 0.061347927898168564, -0.006181700155138969, -0.007124032359570265, -0.019097935408353806, -0.009808632545173168, 0.060744836926460266, 0.028060562908649445, 0.030791232362389565, 0.01737242005765438, -0.01747293584048748, -0.03467782959342003, -0.01113208569586277, -0.007107279729098082, -0.04359019920229912, -0.02598324418067932, -0.02561468631029129, -0.06004123017191887, 0.016099223867058754, 0.012514173053205013, -0.03251674771308899, 0.05287112668156624, -0.07223710417747498, -0.04818040505051613, 0.06446390599012375, 0.00948195718228817, -0.018528347834944725, -0.04194844886660576, 0.013946518301963806, -0.04462885856628418, -0.05484792962670326, -0.011492266319692135, -0.055685557425022125, 0.011869199573993683, -0.010972936637699604, 0.02231442928314209, 0.0075889164581894875, -0.035280924290418625, -0.034811850637197495, -0.027541233226656914, -0.02819458395242691, 0.010445230640470982, 0.019701028242707253, -0.009121776558458805, -0.0001569245068822056, 0.013904636725783348, 0.02258247137069702, 0.013393683359026909, 0.020856956019997597, -0.029367264360189438, 0.016115976497530937, -0.007639174349606037, -0.0058089555241167545, -0.0058131436817348, 0.02566494420170784, -0.04181442782282829, -0.020438142120838165, 0.05364174395799637, -0.05622164160013199, -0.006378543097525835, 0.031059274449944496, -0.0330025739967823, -0.023822162300348282, -0.029819583520293236, -0.060175247490406036, -0.02968556247651577, 0.010872420854866505, 0.0335051491856575, -0.06845102459192276, -0.06948968023061752, -0.0940154492855072, -0.02901545912027359, -0.004031088203191757, 0.014993554912507534, -0.017740976065397263, 0.03035566583275795, -0.04804638400673866, 0.020756440237164497, -0.022850511595606804, 0.040373705327510834, 0.046471644192934036, 0.016869843006134033, -0.002623872132971883, 0.06995875388383865, -0.0473092719912529, -0.016827961429953575, 0.05337370187044144, -0.02457602694630623, 0.020371131598949432, -0.005272872745990753, -0.01084729190915823, -0.005222615320235491, -0.009808632545173168, -0.02462628483772278, -0.028378861024975777, -0.013108889572322369, 0.04127834364771843, 0.00023152581707108766, -0.020890461280941963, -0.027658501639962196, 0.0032353410497307777, 0.0068853083066642284, 0.01990205980837345, 0.03278478980064392, -0.002766269026324153, -0.04596906527876854, 0.00902126170694828, -0.022699739784002304, 0.017707470804452896, 0.037693291902542114, -0.014574740082025528, -0.039603088051080704, -0.021778346970677376, 0.02045489475131035, 0.0796082392334938, 0.011031570844352245, -0.07478349655866623, 0.04499741643667221, -0.00008768925908952951, -0.032499995082616806, 0.015144327655434608, -0.022029636427760124, -0.017255151644349098, -0.026636594906449318, -0.03668813779950142, 0.014759018085896969, 0.007354380562901497, 0.039201024919748306, 0.020069584250450134, -0.05049226060509682, -0.010922678746283054, 0.02149355411529541, 0.023101801052689552, -0.027323449030518532, 0.02891494333744049, 0.0024940394796431065, -0.012648194096982479, 0.0468066930770874, 0.006382731255143881, 0.03598453104496002, -0.011844070628285408, 0.02633504755795002, 0.006081184837967157, -0.02973582036793232, 0.08322679251432419, -0.005612112581729889, -0.0018187013920396566, 0.05397679656744003, -0.00424049561843276, -0.014130797237157822, 0.009733245708048344, 0.015219714492559433, -0.0031662366818636656, 0.007538658566772938, -0.06875256448984146, -0.0026385304518043995, 0.02432473935186863, -0.01938272826373577, -0.023989686742424965, 0.03035566583275795, 0.03412499651312828, 0.030590200796723366, 0.0400051474571228, -0.08128349483013153, -0.03144458308815956, 0.010604379698634148, 0.022951027378439903, -0.012128864414989948, 0.00014972614008001983, -0.007157537620514631, -0.01198646705597639 ]
9,418
asyncclick.types
resolve_lazy_flag
null
def resolve_lazy_flag(self, value: "t.Union[str, os.PathLike[str]]") -> bool: if self.lazy is not None: return self.lazy if os.fspath(value) == "-": return False elif "w" in self.mode: return True return False
(self, value: Union[str, os.PathLike[str]]) -> bool
[ 0.05833972617983818, -0.009499797597527504, 0.016439612954854965, 0.0374419130384922, 0.07307268679141998, 0.017275525256991386, 0.07982964813709259, 0.025739138945937157, -0.022169096395373344, -0.08602932840585709, 0.05360288918018341, 0.06729095429182053, -0.011398015543818474, -0.0032718137372285128, 0.020514685660600662, -0.008986059576272964, -0.0188951063901186, 0.06035985052585602, -0.003964053932577372, 0.014880984090268612, -0.003609226318076253, 0.06429560482501984, -0.005202684551477432, -0.04910986125469208, 0.002281344495713711, 0.004989353008568287, -0.000579043582547456, 0.023022424429655075, -0.016265464946627617, -0.004044597502797842, 0.02269154228270054, 0.013287525624036789, 0.016657298430800438, -0.010022242553532124, 0.0452437661588192, -0.013452966697514057, 0.006103902589529753, 0.11208193749189377, -0.04249221831560135, -0.10198132693767548, -0.04970196634531021, -0.006273697596043348, -0.07147052139043808, 0.0041686780750751495, -0.047472864389419556, -0.00517220888286829, -0.04708973690867424, 0.0113109415397048, -0.0069659375585615635, 0.01510737743228674, 0.05931495875120163, 0.01562982238829136, -0.025234108790755272, -0.01320915948599577, -0.02251739241182804, 0.018076607957482338, 0.01873837225139141, 0.06952005624771118, -0.01791987381875515, 0.018999595195055008, 0.009273404255509377, -0.008785788901150227, -0.018546808511018753, -0.021124206483364105, 0.03021475486457348, -0.01462846901267767, 0.012573516927659512, -0.03476002812385559, -0.007854094728827477, 0.05809592083096504, -0.06269343942403793, -0.009926460683345795, 0.004536566790193319, -0.011154207400977612, 0.03387187048792839, -0.05722517892718315, -0.03963618353009224, 0.009473674930632114, 0.018616467714309692, -0.02439819648861885, -0.027950825169682503, -0.048378437757492065, 0.010936521925032139, -0.03953169658780098, -0.050328899174928665, 0.0015488326316699386, 0.06910210102796555, -0.009020889177918434, 0.08087453246116638, 0.0487963929772377, -0.01791987381875515, 0.04301466420292854, -0.013609700836241245, -0.018233342096209526, 0.04437302425503731, 0.04123834893107414, 0.047681841999292374, 0.012686713598668575, 0.001244072918780148, -0.06523600220680237, 0.024154389277100563, -0.03321010619401932, 0.04635831341147423, -0.015838799998164177, 0.06182269752025604, 0.0023270584642887115, 0.0187209565192461, 0.03279215097427368, -0.013540041632950306, -0.08561137318611145, -0.05471744015812874, -0.08080487698316574, 0.0029670540243387222, 0.05147827789187431, -0.03361064940690994, -0.015777848660945892, -0.03301854431629181, -0.03775538131594658, 0.025582406669855118, 0.013862215913832188, -0.03223487734794617, 0.038312654942274094, -0.0692065879702568, -0.027027837932109833, 0.04893571138381958, 0.0471942275762558, -0.009142792783677578, 0.01966135948896408, 0.018285585567355156, 0.07446587085723877, 0.007179269567131996, 0.061578888446092606, -0.0029191633220762014, -0.005281051620841026, -0.02344037964940071, 0.01641349121928215, -0.0165876392275095, 0.033401671797037125, -0.00752321258187294, 0.062414802610874176, -0.051199641078710556, -0.025094790384173393, 0.004055481869727373, -0.028020484372973442, 0.06798755377531052, 0.05816558003425598, 0.03848680481314659, 0.052314192056655884, -0.019173743203282356, 0.025617236271500587, 0.06850999593734741, -0.01589975319802761, -0.040820393711328506, 0.05283663794398308, -0.01270412839949131, 0.012982766143977642, -0.02544308640062809, 0.0034307243768125772, 0.013975412584841251, -0.04291017726063728, 0.04068107530474663, -0.0068658022210001945, -0.07397826015949249, -0.0053071738220751286, -0.016274170950055122, 0.015298940241336823, 0.004014121368527412, -0.021890459582209587, 0.060882292687892914, 0.06662919372320175, 0.0235971137881279, 0.057817280292510986, 0.08526307344436646, 0.06516634672880173, 0.06697749346494675, 0.07989930361509323, 0.012207805179059505, -0.013679360039532185, -0.024903226643800735, 0.04057658463716507, -0.011815971694886684, 0.018459735438227654, -0.03751157224178314, 0.002701477613300085, 0.026888519525527954, 0.05280180647969246, 0.014506565406918526, -0.07265473157167435, 0.08505409955978394, 0.05952393636107445, -0.05450846254825592, 0.027707016095519066, 0.037198107689619064, -0.0208455678075552, -0.02335330657660961, -0.029761968180537224, 0.01218168344348669, -0.05656341463327408, 0.03505608066916466, -0.016848862171173096, -0.04336296021938324, -0.014584931544959545, -0.01562982238829136, 0.01609131507575512, -0.042840514332056046, 0.016047779470682144, 0.009552041999995708, 0.05186140537261963, -0.003337119473144412, 0.05276697874069214, -0.05457812175154686, -0.06729095429182053, -0.027915995568037033, 0.06011604145169258, 0.036188047379255295, -0.06746510416269302, -0.014349831268191338, 0.03883510082960129, -0.09550300240516663, 0.043711259961128235, 0.045557230710983276, 0.051234472543001175, 0.06199684366583824, 0.03608355671167374, 0.025791384279727936, -0.027602527290582657, -0.020897813141345978, -0.004562688991427422, -0.02168148010969162, 0.007318587973713875, -0.01788504421710968, -0.02243031933903694, 0.005995059851557016, 0.039044078439474106, 0.08986059576272964, -0.00005057787711848505, 0.04423370212316513, 0.07046046108007431, 0.010231221094727516, 0.002729776781052351, -0.0041251410730183125, -0.04022828862071037, 0.01135447807610035, -0.011885630898177624, 0.003282698104158044, -0.01172889769077301, 0.01404507178813219, 0.0122861722484231, 0.011485089547932148, 0.01598682627081871, 0.05377703905105591, 0.05151310935616493, -0.042945004999637604, -0.03563077002763748, -0.005032890010625124, -0.08679558336734772, -0.024032484740018845, -0.04259670898318291, 0.009264697320759296, 0.009700068272650242, -0.06213616207242012, -0.010910400189459324, 0.019522039219737053, 0.020114144310355186, -0.07669497281312943, -0.05001543089747429, 0.02925693802535534, -0.05638926476240158, -0.049492985010147095, -0.001697947271168232, -0.0638776496052742, -0.008572457358241081, -0.05579715967178345, -0.03674532100558281, -0.021228695288300514, -0.023005008697509766, 0.028525514528155327, -0.008263343013823032, 0.040158629417419434, 0.004220922943204641, 0.008476675488054752, 0.016953350976109505, 0.0016761787701398134, 0.022883104160428047, -0.05938461795449257, -0.021977532655000687, -0.01596941240131855, 0.006413016468286514, -0.021054547280073166, -0.0031890932004898787, 0.002540390472859144, 0.023248815909028053, 0.0814318135380745, -0.021402843296527863, 0.027045251801609993, -0.006730837281793356, 0.03199106827378273, -0.062484461814165115, -0.010614347644150257, -0.060777805745601654, 0.012869569472968578, -0.020375367254018784, -0.030772028490900993, 0.03411567956209183, 0.025129619985818863, -0.011894338764250278, 0.004253575578331947, -0.048413265496492386, -0.006056012120097876, 0.023005008697509766, -0.019452380016446114, 0.004832619335502386, -0.028647419065237045, 0.030510807409882545, 0.014793910086154938, -0.00029061021632514894, -0.010814618319272995, 0.02354486845433712, -0.034429147839546204, 0.04803013801574707, -0.05005026236176491, 0.0292743518948555, -0.04858741536736488, 0.022447733208537102, -0.07551076263189316, -0.026070021092891693, 0.07648599147796631, -0.02930918149650097, -0.018076607957482338, 0.033575817942619324, -0.03932271897792816, -0.021071961149573326, 0.03112032637000084, 0.034376900643110275, -0.014515272341668606, 0.045592062175273895, 0.021907873451709747, -0.039984483271837234, 0.040820393711328506, -0.031555697321891785, 0.02547791600227356, 0.03381962701678276, -0.0507468543946743, -0.019522039219737053, 0.020950056612491608, 0.009473674930632114, 0.0748838260769844, 0.0161435604095459, 0.12176458537578583, -0.021942703053355217, 0.012486442923545837, -0.03688463941216469, -0.026139680296182632, -0.009917753748595715, 0.011485089547932148, -0.002221480943262577, -0.037058789283037186, 0.07091324776411057, 0.03886993229389191, 0.006639409344643354, 0.03660600259900093, -0.03376738354563713, -0.003252222202718258, 0.03942720592021942, 0.002023387234658003, -0.01962652988731861, -0.01549050398170948, 0.013714189641177654, -0.03772055357694626, -0.03570042923092842, -0.018163682892918587, 0.009125377982854843, 0.031433794647455215, -0.06774374097585678, 0.04217875376343727, -0.034516219049692154, 0.010266050696372986, -0.024206632748246193, 0.007244575303047895, 0.06269343942403793, 0.009743604809045792, 0.04594035819172859, 0.026000361889600754, 0.024311121553182602, -0.0450696162879467, -0.007801850326359272, 0.009369186125695705, -0.03112032637000084, 0.006796143017709255, -0.06147439777851105, 0.04670661315321922, 0.010466321371495724, 0.024903226643800735, 0.0002799980284180492, 0.03684981167316437, -0.03284439444541931, -0.0007814911077730358, -0.007832325994968414, 0.04639314487576485, 0.04869190230965614, 0.028769321739673615, 0.00443207798525691, 0.05259282886981964, 0.0638776496052742, -0.023074667900800705, -0.009020889177918434, 0.033436499536037445, 0.0034699076786637306, -0.04075073450803757, -0.01978326216340065, -0.04806496948003769, -0.06509668380022049, -0.04071590676903725, -0.006056012120097876, -0.014706836082041264, 0.0063607716001570225, -0.024224048480391502, -0.012129439041018486, 0.019347891211509705, 0.002745014848187566, -0.0011755019659176469, 0.009038303978741169, -0.0033632416743785143, 0.04823911935091019, -0.02274378575384617, 0.002688416512683034, 0.05266248807311058, -0.03789469972252846, 0.03411567956209183, 0.018477149307727814, -0.04155181720852852, -0.012747665867209435, 0.015708189457654953, -0.02065400406718254, 0.0006862537120468915, -0.04806496948003769, -0.017205866053700447, -0.03667566180229187, -0.060708146542310715, -0.032548341900110245, -0.030597880482673645, 0.02833395078778267, -0.05168725550174713, 0.048517756164073944, 0.026522807776927948, -0.004584457725286484, -0.0037245997227728367, 0.04691559076309204, 0.02725423127412796, -0.010335709899663925, -0.056842051446437836, -0.0028625649865716696, -0.0434674508869648, 0.029883872717618942, -0.03012767992913723, 0.014645883813500404, -0.06892795115709305, 0.02265671268105507, -0.019939996302127838, -0.03650151193141937, 0.003350180573761463, 0.03002319112420082, -0.006082134321331978, -0.07216711342334747, 0.0034764381125569344, -0.007322941906750202, -0.006891924422234297, 0.023283645510673523, -0.04353711009025574, -0.02056693099439144, -0.04447751119732857, -0.06258895248174667, 0.019939996302127838, -0.01367065217345953, -0.02345779538154602, 0.0038965712301433086, -0.022360660135746002, 0.061578888446092606, 0.052279360592365265, -0.030423732474446297, -0.03098100796341896, -0.011171622201800346, -0.02817721664905548, 0.016787908971309662, 0.039113741368055344, -0.061578888446092606, -0.025843627750873566, 0.005712068639695644, 0.03206072747707367, -0.013322355225682259, 0.05732966586947441, 0.06398213654756546, -0.00681355781853199, -0.038173336535692215, 0.04430336132645607, 0.028786737471818924, -0.004055481869727373, 0.03091134876012802, 0.06189235672354698, 0.019957412034273148, -0.007214099168777466, 0.007823619060218334, 0.0044799684546887875, 0.04430336132645607, -0.0009360478725284338, -0.008851094171404839, -0.0255475752055645, -0.019069254398345947, -0.056145455688238144, 0.00024217517056968063, 0.053359080106019974, 0.03199106827378273, 0.042039431631565094, 0.04228324070572853, 0.03463812544941902, 0.03267024829983711, 0.025982948020100594, -0.013069840148091316, -0.006352064199745655, -0.03890476003289223, -0.012791203334927559, -0.028003068640828133, -0.012817325070500374, -0.056110627949237823, -0.023684186860919, -0.056006137281656265, 0.019278232008218765, -0.004910985939204693, 0.03496900573372841, -0.007588518317788839, 0.05907114967703819, -0.03587457910180092, 0.018146267160773277, 0.03364547714591026, 0.05517022684216499, -0.023823507130146027, -0.019434966146945953, 0.024816153571009636, -0.07551076263189316, -0.02556499093770981, 0.018564224243164062, -0.019487209618091583, 0.03098100796341896, 0.014907106757164001, 0.05729483813047409, -0.015673359856009483, 0.014480442740023136, -0.011711482889950275, 0.07039079815149307, 0.00893381517380476, -0.053184933960437775, -0.008137085475027561, -0.0010111493756994605, -0.034411732107400894, 0.013487796299159527, -0.013226574286818504, 0.0282991211861372, -0.00614308612421155, -0.06377315521240234, -0.0067221298813819885, 0.01880803145468235, -0.057051029056310654, -0.003709361655637622, 0.016030363738536835, -0.018424905836582184, -0.05248833820223808, 0.0005970026249997318, -0.02439819648861885, 0.05959359556436539, -0.0113109415397048, 0.025773968547582626, -0.022308414801955223, 0.0021964472252875566, 0.016012949869036674, 0.012416783720254898, 0.039113741368055344, 0.066002257168293, 0.01556016318500042, -0.0071052564308047295, 0.011554748751223087, -0.05712068825960159, -0.03684981167316437, 0.030684955418109894, 0.016744373366236687, 0.028003068640828133, -0.027654772624373436, 0.03129447624087334, 0.09313458204269409, -0.056110627949237823, -0.0505727082490921, -0.011911753565073013, -0.0012223044177517295, 0.006656824145466089, -0.044582001864910126, 0.0026557636447250843, -0.023701602593064308, 0.011171622201800346, -0.022291000932455063, 0.07481417059898376, 0.022970179095864296, -0.04444268345832825, -0.04928400740027428, -0.01360099297016859, 0.00008673408592585474, -0.03681498020887375, -0.016204511746764183, 0.023893166333436966, 0.012538687326014042, -0.039009250700473785, -0.017292939126491547, 0.012608347460627556, 0.016787908971309662, 0.02833395078778267, -0.01134577114135027, 0.005372479557991028, 0.05917564034461975, 0.011511212214827538, -0.06206650286912918, -0.036188047379255295, -0.05722517892718315, -0.06008120998740196, -0.009404015727341175, 0.02349262498319149, -0.022883104160428047, -0.01079720351845026, 0.009691360406577587, 0.01456751674413681, 0.03411567956209183, -0.025582406669855118, -0.053150102496147156, 0.01682273857295513, 0.02720198594033718, 0.013870922848582268, 0.054926417768001556, -0.007884570397436619, -0.014793910086154938, -0.00223345379345119, 0.01462846901267767, 0.03554369509220123, -0.03321010619401932, -0.08547205477952957, -0.05468260869383812, -0.015264110639691353, -0.009404015727341175, -0.06481804698705673, -0.014158268459141254, 0.016657298430800438, 0.006190977059304714, 0.03554369509220123, -0.019260818138718605, 0.010562103241682053, 0.035334717482328415, 0.015995534136891365, -0.02725423127412796, 0.05816558003425598, 0.03087651915848255, 0.05861836299300194, -0.010222513228654861, 0.03554369509220123, -0.017806677147746086, -0.03267024829983711, -0.02553016133606434, -0.012112024240195751, 0.038103677332401276, 0.006177915725857019, -0.009081841446459293, -0.009639116004109383, -0.07011216133832932, 0.016692128032445908, -0.016422197222709656, -0.0431191548705101, 0.002078897086903453, -0.034463975578546524, -0.020253462716937065, 0.0377902127802372, -0.029727138578891754, -0.017719604074954987, 0.02549533173441887, -0.005490029696375132, 0.017571577802300453, -0.011554748751223087, 0.01738872192800045, 0.03134671971201897, 0.03695429861545563, 0.010657884180545807, 0.03918340057134628, -0.006421723868697882, 0.019138913601636887, 0.06429560482501984, -0.010509857907891273, -0.02728906087577343, -0.012442906387150288, -0.028055313974618912, 0.05050304904580116, -0.02072366513311863, -0.03305337205529213, 0.030319243669509888, 0.027968239039182663, 0.040158629417419434, -0.009665238671004772, 0.016352538019418716, 0.02913503348827362, -0.013374600559473038, -0.04503478482365608, -0.04486063867807388, -0.02243031933903694, -0.024241462349891663, -0.025199279189109802, -0.024990301579236984, 0.03181691840291023, -0.0016282879514619708, 0.047438036650419235, -0.004745544865727425, -0.05144345015287399, -0.038208167999982834, -0.07467485219240189, -0.06293724477291107, -0.042875345796346664, 0.0748838260769844, -0.024676833301782608, 0.01035312470048666, 0.00755804218351841, -0.010701421648263931, 0.01697947271168232, -0.0042753443121910095, -0.00017564502195455134, -0.04876156151294708, -0.02633124403655529, -0.027585113421082497, 0.03873061388731003, 0.005703361239284277, -0.021141620352864265, -0.04423370212316513, 0.016692128032445908, 0.049249179661273956, -0.0036135800182819366, 0.024972885847091675, 0.03678014874458313, -0.07767020165920258, -0.006125671323388815, 0.02910020388662815, -0.0006595872109755874, -0.03775538131594658, -0.0046584708616137505, -0.030475977808237076, -0.006195330526679754, 0.013766434043645859, 0.014698128215968609, -0.029535574838519096, 0.012364539317786694, -0.013783848844468594, -0.011589578352868557, -0.014767787419259548, 0.019556870684027672, 0.04207426309585571, -0.03023216873407364, -0.05106032267212868, 0.019173743203282356, -0.0008865243871696293, 0.003247868502512574, -0.0810835137963295, 0.016718249768018723, -0.02249997854232788, 0.04207426309585571, 0.01886027678847313, -0.0056554707698524, -0.03639702498912811, 0.003354534273967147 ]
9,419
asyncclick.types
shell_complete
Return a special completion marker that tells the completion system to use the shell to provide file path completions. :param ctx: Invocation context for this command. :param param: The parameter that is requesting completion. :param incomplete: Value being completed. May be empty. .. versionadded:: 8.0
def shell_complete( self, ctx: "Context", param: "Parameter", incomplete: str ) -> t.List["CompletionItem"]: """Return a special completion marker that tells the completion system to use the shell to provide file path completions. :param ctx: Invocation context for this command. :param param: The parameter that is requesting completion. :param incomplete: Value being completed. May be empty. .. versionadded:: 8.0 """ from .shell_completion import CompletionItem return [CompletionItem(incomplete, type="file")]
(self, ctx: 'Context', param: 'Parameter', incomplete: str) -> List[ForwardRef('CompletionItem')]
[ 0.04524773359298706, 0.02423735149204731, -0.06453940272331238, -0.02709602750837803, 0.07969213277101517, 0.014565210789442062, 0.07004629820585251, -0.011259320192039013, 0.02404443547129631, -0.058716826140880585, 0.03763629496097565, -0.010978713631629944, -0.036268338561058044, -0.005634044297039509, -0.041950613260269165, 0.057103343307971954, 0.023097390308976173, 0.027394171804189682, -0.019203979521989822, 0.026990799233317375, 0.045002203434705734, 0.06019001081585884, 0.007151070982217789, 0.003268622560426593, -0.019852882251143456, -0.02870951220393181, 0.05078970640897751, -0.07457107305526733, 0.007760512642562389, -0.08432213217020035, 0.03728553652763367, -0.01782725565135479, -0.043914854526519775, 0.0021878506522625685, -0.0019960300996899605, 0.033602580428123474, 0.03514591604471207, 0.07927122712135315, 0.028569208458065987, -0.043704401701688766, -0.06275054067373276, 0.005945341661572456, -0.030358072370290756, -0.00812442321330309, 0.05903250724077225, 0.03398841246962547, 0.0012539585586637259, 0.00890485942363739, 0.03763629496097565, 0.016529453918337822, 0.03924977779388428, -0.03365519270300865, -0.051035236567258835, -0.03514591604471207, -0.029147958382964134, 0.038723643869161606, 0.005401667673140764, 0.023658601567149162, 0.003485654015094042, 0.06664395332336426, 0.06131243333220482, -0.005835730116814375, -0.0007174089550971985, -0.028797201812267303, 0.07962198555469513, 0.02688557282090187, 0.051561370491981506, -0.03379549831151962, -0.027376633137464523, 0.03718030825257301, -0.01815170794725418, 0.019519662484526634, -0.0027709852438420057, -0.0019083407241851091, 0.03540898114442825, -0.01460905559360981, -0.020431632176041603, -0.003490038448944688, 0.007229991722851992, -0.02692064829170704, -0.0025517616886645555, 0.023816443979740143, 0.025780685245990753, 0.004691383335739374, -0.03707507997751236, 0.03602280840277672, 0.004323087632656097, -0.02565792016685009, -0.02283432148396969, 0.06289084255695343, -0.007396601606160402, 0.018923373892903328, -0.01123301312327385, 0.029796861112117767, 0.040337126702070236, -0.08362061530351639, -0.020589472725987434, 0.05328008532524109, -0.030743906274437904, -0.01902860216796398, -0.043353643268346786, 0.02316754125058651, 0.025587769225239754, 0.005511279217898846, 0.03725045919418335, -0.0073659103363752365, 0.006633703596889973, -0.016336536034941673, 0.019484587013721466, 0.019519662484526634, -0.021799586713314056, -0.012995569966733456, 0.04247674718499184, -0.00333877420052886, 0.004537926986813545, 0.05429727956652641, -0.012285285629332066, -0.002755639608949423, 0.005322746932506561, -0.007817510515451431, 0.04815902188420296, -0.037320610135793686, -0.029884550720453262, -0.047667961567640305, 0.05541970580816269, 0.009224926121532917, -0.033251821994781494, 0.007887662388384342, -0.06422372162342072, 0.0708179622888565, 0.0011032423935830593, 0.03381303697824478, -0.023114927113056183, -0.03262045979499817, 0.020975306630134583, -0.011583770625293255, 0.0021253719460219145, -0.0030406301375478506, -0.0020037030335515738, 0.008703174069523811, 0.017423884943127632, -0.03153311088681221, 0.00926876999437809, -0.023956745862960815, 0.03584742918610573, 0.025359775871038437, 0.057454098016023636, -0.012522047385573387, 0.01132947113364935, 0.04580894485116005, -0.044651445001363754, 0.023027237504720688, -0.004787841811776161, -0.003244508057832718, 0.052438266575336456, -0.00048722425708547235, -0.04093341529369354, -0.001609100610949099, -0.03130511939525604, -0.019887957721948624, 0.02688557282090187, -0.04956205189228058, -0.023956745862960815, 0.05152629688382149, 0.0713791772723198, 0.03290106728672981, -0.05036879703402519, 0.029691632837057114, -0.012890342622995377, -0.029972240328788757, 0.02137867733836174, -0.0050421408377587795, 0.03272568807005882, -0.026955723762512207, 0.04419546201825142, 0.046931371092796326, -0.04061773419380188, 0.027306482195854187, 0.04865008220076561, -0.06362743675708771, -0.017160816118121147, -0.009461686946451664, 0.04156477749347687, 0.001559775322675705, 0.017958790063858032, 0.06432894617319107, 0.039846066385507584, 0.04556341469287872, 0.029270723462104797, -0.0002234709681943059, -0.07927122712135315, 0.015713941305875778, 0.0552443265914917, -0.004345010034739971, -0.040337126702070236, 0.0027753696776926517, -0.03760121762752533, 0.03575973957777023, -0.012504509650170803, -0.04865008220076561, -0.026254208758473396, -0.03816242888569832, 0.00988259632140398, 0.011382085271179676, -0.019168904051184654, 0.058330994099378586, -0.0004074817115906626, 0.021799586713314056, -0.021589132025837898, -0.034128718078136444, -0.02867443673312664, -0.03118235245347023, -0.030200231820344925, -0.03293614089488983, -0.0017209046054631472, -0.05538462847471237, -0.02192235179245472, -0.019344283267855644, 0.02688557282090187, 0.00030965323094278574, 0.04167000576853752, 0.004971989430487156, 0.018590154126286507, -0.0028082532808184624, 0.07116872072219849, -0.04247674718499184, 0.012706195004284382, -0.03479515761137009, -0.04184538498520851, 0.0029419795610010624, -0.03956545889377594, -0.11034835129976273, -0.023956745862960815, -0.021150685846805573, -0.007120379712432623, 0.0505792498588562, 0.0363735668361187, 0.00028910100809298456, -0.04114386811852455, -0.008102500811219215, 0.005677889101207256, 0.040161747485399246, 0.00863740686327219, 0.0047922260127961636, -0.002998977666720748, 0.014416138641536236, -0.0026920647360384464, 0.029972240328788757, -0.002138525480404496, -0.009943978860974312, 0.007361525669693947, 0.09814198315143585, -0.031603261828422546, -0.020554397255182266, -0.003354119835421443, -0.008229650557041168, -0.05503387376666069, -0.061557963490486145, -0.004529158119112253, 0.04012667387723923, -0.0082910330966115, -0.011583770625293255, 0.017511574551463127, 0.07267697900533676, -0.017336195334792137, 0.026289284229278564, 0.026271745562553406, 0.0006587666575796902, 0.00829541776329279, 0.028393829241394997, -0.06804697960615158, -0.023939209058880806, -0.03404102846980095, -0.046931371092796326, -0.01855507865548134, 0.09035516530275345, 0.02122083678841591, 0.01761680282652378, 0.0007135725463740528, -0.0030669369734823704, -0.005585815291851759, 0.0036917240358889103, 0.0018798416713252664, 0.038758717477321625, -0.08172652870416641, 0.019186442717909813, -0.0074316770769655704, 0.034497011452913284, -0.06061092019081116, 0.04093341529369354, -0.0018940912559628487, 0.05783993378281593, 0.023413071408867836, 0.008120039477944374, 0.08039364963769913, 0.04822917282581329, 0.0028323677834123373, -0.010461346246302128, 0.023921670392155647, -0.02211526781320572, -0.023553375154733658, 0.016529453918337822, -0.06608273833990097, -0.03532129153609276, -0.06688947975635529, -0.03437424823641777, 0.01531057059764862, -0.09126713871955872, -0.051561370491981506, -0.028060609474778175, 0.03293614089488983, 0.026780344545841217, 0.041775234043598175, 0.0039262929931283, -0.03549667075276375, 0.003564574522897601, -0.020729776471853256, 0.019186442717909813, -0.009391535073518753, 0.01641545630991459, -0.05328008532524109, 0.01221513468772173, 0.023237692192196846, 0.003005554433912039, 0.05331515893340111, 0.05931311473250389, 0.02102792076766491, 0.04847470298409462, 0.028463982045650482, 0.04780826345086098, -0.013144642114639282, 0.032182011753320694, -0.03332197666168213, -0.02869197353720665, -0.044090233743190765, 0.01834462396800518, 0.010408733040094376, 0.014828278683125973, 0.004932529293000698, -0.015389490872621536, 0.0051385993137955666, -0.04633508250117302, 0.021852200850844383, 0.01086471788585186, -0.019923033192753792, -0.019677503034472466, 0.07562334835529327, 0.04296781122684479, 0.07892046868801117, -0.10361380130052567, 0.01783602498471737, -0.008045502938330173, -0.008821554481983185, 0.013214793987572193, 0.07506213337182999, -0.013644471764564514, 0.010899793356657028, 0.06408341974020004, 0.010040436871349812, 0.02693818509578705, 0.047317203134298325, -0.06110198050737381, -0.0480537936091423, -0.03158572316169739, -0.015731479972600937, -0.0030318612698465586, -0.0000203638101083925, -0.02958640642464161, -0.0026284900959581137, -0.0033321974333375692, 0.006620550062507391, 0.003233546856790781, 0.01301310770213604, -0.03456716611981392, 0.018414774909615517, -0.04538803547620773, 0.013697085902094841, -0.02244848757982254, -0.025587769225239754, 0.02332538180053234, 0.014898430556058884, 0.012162520550191402, 0.023220155388116837, 0.019344283267855644, -0.08649682998657227, -0.01372339203953743, -0.04577387124300003, -0.026622503995895386, -0.015012426301836967, 0.00917231198400259, 0.0007470041164197028, -0.03362011909484863, -0.01443367637693882, 0.021062996238470078, 0.02011594921350479, -0.046931371092796326, 0.017590494826436043, -0.04258197546005249, -0.04458129405975342, -0.014626593329012394, 0.0616631917655468, 0.006041800137609243, -0.00021059159189462662, 0.01068933866918087, 0.005634044297039509, -0.07499197870492935, 0.03262045979499817, 0.006331175100058317, -0.05664735659956932, -0.042827505618333817, 0.006204025354236364, -0.03202417120337486, 0.017511574551463127, 0.03442686051130295, -0.044791750609874725, 0.024272428825497627, -0.1165216863155365, -0.003742145374417305, -0.004202514886856079, 0.011048865504562855, -0.02313246577978134, -0.014451214112341404, -0.037145234644412994, 0.05366591736674309, -0.03960053622722626, 0.03302383050322533, 0.03119989112019539, 0.018134169280529022, 0.023114927113056183, -0.0890924409031868, -0.0172660443931818, 0.04651046171784401, -0.00997905433177948, -0.05682273581624031, -0.01514396071434021, 0.001606908394023776, 0.010513960383832455, -0.05170167610049248, 0.03886394575238228, 0.02530716359615326, -0.042125992476940155, 0.06902910023927689, 0.014582748524844646, 0.0715896338224411, 0.028902428224682808, 0.001287938212044537, -0.0552443265914917, 0.017529113218188286, -0.024167200550436974, -0.02656988985836506, -0.006703855004161596, 0.03756614029407501, 0.07288743555545807, -0.016792520880699158, 0.011145323514938354, -0.022045116871595383, -0.04258197546005249, 0.01317971758544445, -0.06043554097414017, -0.03991621732711792, 0.07569349557161331, 0.057454098016023636, 0.024289965629577637, -0.062084101140499115, 0.029481178149580956, -0.0385131873190403, -0.012969262897968292, 0.02835875377058983, -0.0352160669863224, 0.03291860222816467, -0.044826824218034744, 0.02243095077574253, -0.06369758397340775, -0.017511574551463127, 0.028271064162254333, 0.02599113993346691, 0.09330152720212936, 0.04296781122684479, 0.012706195004284382, -0.03728553652763367, -0.005331515800207853, -0.08719834685325623, -0.009338921867311, 0.05475326627492905, 0.0027709852438420057, 0.03419886901974678, -0.004112633410841227, -0.018625229597091675, -0.010119358077645302, -0.018572617322206497, 0.021431291475892067, 0.027552012354135513, -0.07057243585586548, 0.003617187961935997, 0.016345305368304253, -0.002716179471462965, 0.04398500546813011, 0.006616165861487389, -0.0006291714962571859, -0.030586065724492073, 0.04651046171784401, -0.027727389708161354, 0.01816924475133419, 0.017397578805685043, -0.014661668799817562, -0.05752425268292427, 0.01873045787215233, -0.01925659365952015, -0.08123546838760376, -0.01587178185582161, -0.01292541902512312, 0.004608078394085169, 0.05840114504098892, -0.014039074070751667, 0.002589029725641012, 0.025745609775185585, 0.034111179411411285, 0.0155122559517622, 0.08018319308757782, 0.029428565874695778, -0.06096167489886284, -0.024465344846248627, 0.02849905751645565, -0.014003998599946499, -0.009216156788170338, 0.010312274098396301, -0.033058907836675644, -0.01763433963060379, -0.03246261924505234, 0.0055507393553853035, 0.017695723101496696, 0.0027972920797765255, 0.041073717176914215, -0.021589132025837898, 0.022238032892346382, 0.06745069473981857, -0.019484587013721466, -0.02744678407907486, -0.053350236266851425, -0.018239397555589676, 0.04665076360106468, 0.01978272944688797, -0.001307668280787766, 0.008926781825721264, 0.02830614149570465, 0.011969604529440403, 0.018414774909615517, -0.07232622057199478, 0.06667902320623398, 0.03658401966094971, -0.014021536335349083, -0.05296440050005913, -0.07772789150476456, 0.008654944598674774, -0.06639841943979263, -0.03190140798687935, 0.012153752148151398, -0.033392127603292465, -0.026447124779224396, -0.05457788705825806, 0.010435039177536964, 0.06608273833990097, -0.06352220475673676, -0.005594584159553051, 0.0772368311882019, 0.009768599644303322, 0.015328108333051205, 0.018958449363708496, 0.0016814443515613675, -0.028428906574845314, 0.01709943450987339, 0.012188827618956566, 0.011776687577366829, -0.03924977779388428, 0.015915626659989357, -0.024360116571187973, 0.04615970328450203, -0.0026854882016777992, -0.039460234344005585, -0.014959813095629215, -0.030428225174546242, -0.013539244420826435, -0.026850497350096703, 0.005331515800207853, -0.04184538498520851, -0.0007579653174616396, 0.01995810866355896, 0.010794566012918949, -0.002197715686634183, -0.04545819014310837, -0.023097390308976173, 0.020554397255182266, 0.029253186658024788, 0.006747699808329344, 0.020256252959370613, -0.003518537385389209, 0.0021527749486267567, -0.013644471764564514, -0.06545137614011765, -0.011715305037796497, 0.028902428224682808, -0.004796610679477453, 0.02472841367125511, 0.03658401966094971, 0.007848202250897884, -0.002012471901252866, 0.02013348788022995, -0.0019478009780868888, -0.04949190095067024, 0.029621481895446777, -0.003106397343799472, -0.03328689932823181, 0.009338921867311, 0.0441603846848011, -0.08193698525428772, 0.04651046171784401, 0.017371270805597305, -0.03791689872741699, 0.04812394827604294, 0.06780145317316055, -0.06860819458961487, -0.0038977940566837788, -0.002464072313159704, 0.028586747124791145, 0.0007217934471555054, -0.03416379168629646, -0.0346197783946991, 0.03362011909484863, -0.008216497488319874, -0.011522388085722923, -0.004193746019154787, 0.011873145587742329, 0.023220155388116837, 0.040863264352083206, 0.06425879895687103, -0.03718030825257301, -0.03516345098614693, -0.07155455648899078, -0.03516345098614693, -0.03995129466056824, -0.05412190407514572, -0.03118235245347023, 0.0002773177402559668, 0.007646516431123018, -0.008286649361252785, -0.03137527033686638, -0.051210615783929825, 0.05254349112510681, 0.020273791626095772, 0.00024279004719574004, 0.038583338260650635, 0.07828910648822784, 0.011925759725272655, -0.002229503123089671, -0.014749358408153057, -0.03333951160311699, 0.00802796520292759, -0.017239738255739212, -0.011040096171200275, 0.07176501303911209, 0.0051385993137955666, -0.01210113801062107, 0.01675744540989399, 0.02439519390463829, -0.06576705724000931, -0.06724023818969727, 0.015170267783105373, -0.0363735668361187, -0.03995129466056824, 0.030691292136907578, 0.015196573920547962, -0.030077466741204262, -0.0037684522103518248, -0.008821554481983185, -0.01816924475133419, -0.028551671653985977, 0.008431336842477322, 0.025061633437871933, 0.07604425400495529, 0.03425148129463196, -0.03202417120337486, -0.06759099662303925, -0.003123935079202056, 0.013425248675048351, 0.04903591796755791, 0.057454098016023636, 0.026394512504339218, -0.04205584153532982, 0.019011063501238823, -0.0449320524930954, 0.011811763048171997, 0.012390512973070145, -0.00856287032365799, -0.0029375951271504164, -0.03437424823641777, 0.009794906713068485, -0.01588055118918419, -0.02065962366759777, 0.02032640390098095, -0.01105763390660286, 0.06362743675708771, 0.021852200850844383, 0.05093000829219818, -0.01766064576804638, 0.015301801264286041, 0.0022240225225687027, -0.027043413370847702, 0.004272666294127703, -0.09049546718597412, 0.00791835319250822, 0.015187805518507957, 0.007501828949898481, -0.03454962745308876, 0.0005025698919780552, 0.026429587975144386, -0.04244167357683182, 0.00024580437457188964, -0.015266725793480873, 0.0673103854060173, -0.041073717176914215, -0.01762557029724121, 0.019203979521989822, 0.0595235712826252, 0.023588450625538826, 0.11441713571548462, -0.006528476253151894, -0.0017176162218675017, 0.03255030885338783, -0.040372204035520554, 0.03335705026984215, -0.02423735149204731, -0.02211526781320572, -0.07422031462192535, 0.02350076101720333, 0.038723643869161606, -0.021273450925946236, 0.033058907836675644, 0.04058265686035156, -0.049421750009059906, -0.0036391103640198708, -0.03169095143675804, 0.029428565874695778, 0.02136114053428173, 0.003014323301613331, 0.003459347179159522, -0.024307504296302795, -0.0089969327673316, -0.06159304082393646, -0.02281678467988968, 0.023255230858922005, -0.027569549158215523, 0.007137917913496494, -0.02262386679649353, 0.0704321339726448, -0.0024574955459684134, -0.002499148016795516, -0.0080981170758605, 0.054963719099760056, -0.033585041761398315, -0.007229991722851992, -0.0918283462524414, -0.02550007961690426, 0.016625910997390747, 0.004472159780561924, 0.04703659936785698, 0.011636384762823582, -0.013916308991611004, 0.0037837978452444077 ]
9,422
asyncclick.exceptions
FileError
Raised if a file cannot be opened.
class FileError(ClickException): """Raised if a file cannot be opened.""" def __init__(self, filename: str, hint: t.Optional[str] = None) -> None: if hint is None: hint = _("unknown error") super().__init__(hint) self.ui_filename: str = format_filename(filename) self.filename = filename def format_message(self) -> str: return _("Could not open file {filename!r}: {message}").format( filename=self.ui_filename, message=self.message )
(filename: str, hint: Optional[str] = None) -> None
[ -0.016037482768297195, -0.050480399280786514, 0.025383710861206055, 0.04484754428267479, 0.021993236616253853, -0.06752246618270874, 0.057081956416368484, 0.06597971171140671, 0.05869646742939949, -0.03582422062754631, 0.05320712924003601, 0.038174230605363846, 0.036954376846551895, -0.011238794773817062, -0.06608734279870987, 0.09191953390836716, -0.004883897956460714, 0.005686668679118156, -0.026029516011476517, 0.02626272290945053, -0.0004142792022321373, -0.004231365863233805, 0.004892867058515549, -0.025186382234096527, 0.01896154321730137, 0.11071962118148804, -0.03403031826019287, 0.017660964280366898, 0.02504286915063858, -0.07563090324401855, -0.042084936052560806, -0.03882003575563431, -0.025688674300909042, 0.06669726967811584, -0.035160474479198456, 0.005184376146644354, -0.01265597715973854, -0.006435622926801443, -0.03892767056822777, -0.0556827113032341, -0.024235613644123077, 0.029707014560699463, 0.0145306047052145, -0.022100871428847313, 0.00023404812964145094, -0.0233566015958786, -0.02140124887228012, -0.012987849302589893, -0.10009972006082535, -0.013212086632847786, -0.030603965744376183, 0.07864465564489365, -0.0017793263541534543, 0.0047314162366092205, -0.033940624445676804, 0.07075148820877075, 0.011552727781236172, 0.04886588454246521, -0.056185007095336914, -0.005094681400805712, -0.0034577457699924707, 0.05464224889874458, 0.046569690108299255, -0.0069424002431333065, -0.003908463753759861, 0.0038703433237969875, 0.0010651291813701391, -0.00839097611606121, -0.0044869971461594105, 0.04405822977423668, 0.0551445409655571, 0.053494151681661606, -0.032577257603406906, 0.028092503547668457, 0.08675309270620346, -0.02662150375545025, -0.03950171917676926, 0.0006407593027688563, 0.004623781889677048, 0.01767890341579914, 0.04412998631596565, -0.04115210846066475, -0.001732236472889781, -0.0072114854119718075, 0.056185007095336914, -0.07555914670228958, 0.006722647231072187, -0.024110041558742523, 0.017364969477057457, 0.03788720816373825, -0.048578862100839615, -0.03343832865357399, -0.04682083800435066, -0.02794899046421051, -0.021383309736847878, -0.018871847540140152, 0.03216465935111046, -0.05292010307312012, -0.021795907989144325, -0.0025092202704399824, 0.028774185106158257, -0.025868063792586327, 0.0749850943684578, -0.041546765714883804, 0.041080351918935776, -0.03699025511741638, 0.024432942271232605, -0.004910806193947792, 0.022064993157982826, -0.0017995077650994062, -0.025114625692367554, -0.03681086748838425, -0.02061193250119686, 0.08876226097345352, -0.027966929599642754, -0.03519635275006294, 0.0018892028601840138, -0.010592990554869175, 0.01605542190372944, -0.013328691013157368, 0.032039087265729904, 0.007668930571526289, -0.09220655262470245, -0.01470999512821436, 0.046354424208402634, 0.002639278071001172, -0.037169646471738815, -0.04463227838277817, 0.047897178679704666, 0.017634054645895958, 0.009113021194934845, -0.010799288749694824, -0.00820261612534523, -0.04491930082440376, -0.016880616545677185, 0.033097490668296814, 0.035106658935546875, 0.0532430075109005, -0.0040160976350307465, 0.06224839389324188, 0.010610929690301418, 0.03878415748476982, -0.007247363217175007, 0.036003608256578445, -0.0005269586690701544, -0.001569664105772972, 0.013992434367537498, -0.03541162237524986, -0.007368451915681362, 0.033886805176734924, 0.021114224568009377, -0.04362769424915314, -0.04696435108780861, 0.02737494185566902, 0.039178814738988876, -0.04169027879834175, -0.026442112401127815, -0.020217273384332657, 0.007633052300661802, 0.014431940391659737, 0.025401649996638298, -0.04552922770380974, 0.034424975514411926, 0.04495517909526825, 0.027608148753643036, 0.046354424208402634, -0.005399644374847412, 0.016225842759013176, -0.0057404860854148865, 0.010063789784908295, -0.0017131762579083443, -0.017589207738637924, -0.02753639407455921, 0.029653197154402733, -0.046677324920892715, 0.016611531376838684, 0.028433343395590782, 0.005283040925860405, 0.03290015831589699, -0.03645208477973938, 0.020719565451145172, -0.04369944706559181, 0.0042605167254805565, 0.0423719622194767, 0.05335064232349396, 0.005866059102118015, 0.016234811395406723, 0.02748257666826248, 0.021670334041118622, -0.015813244506716728, -0.012422770261764526, -0.003892767010256648, 0.014028312638401985, 0.02748257666826248, -0.025581039488315582, -0.03223641589283943, -0.040075767785310745, -0.06310946494340897, 0.021795907989144325, 0.0024733422324061394, -0.04337654635310173, 0.08007977902889252, 0.0423719622194767, -0.013256934471428394, 0.028702428564429283, 0.052597202360630035, 0.03047839179635048, -0.05535981059074402, -0.03358184173703194, 0.030496330931782722, -0.042084936052560806, -0.00869145430624485, -0.009175808168947697, 0.05959342047572136, 0.024917297065258026, -0.006220354698598385, -0.002511462662369013, 0.02498905174434185, -0.05083917826414108, 0.03835362195968628, 0.050695665180683136, 0.03882003575563431, -0.011534788645803928, 0.006036479491740465, 0.07243775576353073, -0.01782241463661194, 0.07157668471336365, 0.002033836208283901, 0.0057584247551858425, 0.04369944706559181, -0.040183402597904205, -0.060418613255023956, -0.036954376846551895, -0.00816225353628397, -0.03333069756627083, -0.026083333417773247, -0.0022961944341659546, -0.044668156653642654, -0.04954756796360016, -0.03831774368882179, 0.016333475708961487, 0.0021616516169160604, -0.021060407161712646, 0.06049036979675293, 0.04682083800435066, -0.06716368347406387, -0.029868464916944504, 0.04039866849780083, -0.07405226677656174, -0.0024329794105142355, 0.05805066227912903, 0.047574277967214584, -0.057081956416368484, -0.03290015831589699, -0.008624183014035225, -0.06644612550735474, -0.046892594546079636, -0.04452464357018471, 0.014557513408362865, 0.037277281284332275, -0.00980367325246334, -0.011211886070668697, 0.038389500230550766, 0.01651286706328392, 0.016970312222838402, -0.04402235150337219, -0.03542955964803696, -0.0008717241580598056, 0.036846742033958435, 0.03458642587065697, 0.0774248018860817, 0.05413995683193207, 0.028989452868700027, 0.044775791466236115, -0.029617318883538246, -0.011929446831345558, -0.028236014768481255, 0.043125398457050323, -0.012754642404615879, 0.0017793263541534543, 0.031823817640542984, -0.005596973933279514, -0.006135144270956516, 0.07764007151126862, -0.009283442050218582, 0.007081427611410618, 0.012862276285886765, -0.051269713789224625, -0.033940624445676804, 0.04068569466471672, 0.03514253720641136, 0.04951168969273567, 0.03272077068686485, -0.020378725603222847, -0.029509685933589935, -0.009310350753366947, -0.035895977169275284, -0.014324306510388851, 0.03842537850141525, -0.0020977440290153027, -0.01444987952709198, -0.007969409227371216, 0.03212878108024597, -0.020109640434384346, -0.058409444987773895, -0.046246789395809174, -0.011696239933371544, -0.042551349848508835, 0.004426452796906233, -0.02561691775918007, 0.051054447889328, 0.01933826133608818, 0.013884800486266613, 0.02726730890572071, 0.01933826133608818, 0.0833805575966835, 0.03535780683159828, -0.05521629750728607, -0.014073159545660019, 0.020468419417738914, -0.019033297896385193, -0.007323604077100754, -0.03799483925104141, -0.03175206109881401, 0.012925062328577042, -0.009597375057637691, 0.029832588508725166, 0.01193841639906168, -0.012342045083642006, 0.007269787136465311, 0.011669331230223179, 0.036111243069171906, -0.009947185404598713, -0.07807061076164246, -0.09256533533334732, 0.024020345881581306, 0.02113216370344162, -0.02297988347709179, 0.051377348601818085, -0.045098692178726196, 0.025294015184044838, -0.03191351518034935, -0.04104447364807129, 0.0195535309612751, -0.031106257811188698, -0.0007584841223433614, 0.040075767785310745, -0.010924861766397953, 0.0684552937746048, -0.02366156503558159, 0.0070948819629848, 0.002215468790382147, -0.05912700295448303, -0.04036279022693634, -0.01529301330447197, -0.00700070196762681, -0.033151306211948395, -0.018620701506733894, 0.021168041974306107, -0.00788868311792612, 0.05083917826414108, -0.052489567548036575, -0.036326512694358826, -0.006220354698598385, -0.04570861905813217, 0.01207295898348093, 0.045313961803913116, 0.000940116704441607, -0.017858292907476425, 0.010467417538166046, 0.035591013729572296, -0.029886404052376747, -0.00010104712418979034, -0.0013274874072521925, 0.038640644401311874, 0.0025809763465076685, 0.03273870795965195, 0.002843334339559078, -0.031142136082053185, -0.0012546101352199912, 0.057189591228961945, -0.013642623089253902, -0.011391276493668556, 0.018190164119005203, -0.027195552363991737, -0.013920677825808525, 0.004119247198104858, 0.01896154321730137, 0.04090096056461334, -0.007529903203248978, 0.0066194976679980755, -0.04459640011191368, 0.06214075908064842, 0.03882003575563431, 0.04692847281694412, -0.045313961803913116, -0.0016358142020180821, 0.004173064138740301, 0.002868000650778413, 0.04951168969273567, -0.053278885781764984, 0.04194142669439316, -0.08940806984901428, 0.0014126977184787393, 0.005803272593766451, 0.06450871378183365, -0.015606946311891079, -0.004121489357203245, -0.007879713550209999, -0.01355292834341526, 0.004874928388744593, 0.00027455107192508876, -0.044668156653642654, -0.0494399331510067, 0.03824598714709282, 0.04412998631596565, -0.08546148240566254, -0.04025515913963318, -0.05776363983750343, -0.03512459620833397, -0.05510866269469261, 0.030729537829756737, 0.06597971171140671, -0.014611330814659595, 0.023159272968769073, 0.01226131897419691, -0.023500114679336548, 0.012996818870306015, 0.06379114836454391, 0.027069978415966034, -0.04883000627160072, 0.03017342835664749, -0.0423719622194767, -0.06023922562599182, -0.00977676548063755, -0.048220083117485046, -0.08567675203084946, -0.017077945172786713, -0.029186783358454704, 0.027751661837100983, 0.0001984503905987367, -0.0018667790573090315, 0.05223842337727547, 0.06429344415664673, 0.02245965041220188, -0.0746980756521225, 0.008843936026096344, 0.04294601082801819, -0.002287224866449833, -0.02889975905418396, -0.01413594651967287, 0.0744110494852066, 0.053817056119441986, -0.04832771420478821, -0.014216671697795391, -0.04721549525856972, -0.11071962118148804, -0.0028298802208155394, 0.009651191532611847, 0.01838749460875988, -0.019158871844410896, 0.05901937186717987, -0.030980683863162994, -0.09048441052436829, 0.037851329892873764, -0.047466643154621124, 0.04961932450532913, 0.004256031941622496, -0.022495528683066368, -0.00019340503786224872, -0.0230875164270401, -0.006148598622530699, 0.0069154915399849415, 0.038748279213905334, 0.0033545964397490025, 0.027303185313940048, 0.016997219994664192, -0.020952774211764336, -0.020002005621790886, -0.009373136796057224, 0.06698429584503174, -0.042407840490341187, 0.00038849186967127025, -0.0005479809478856623, -0.007790018804371357, 0.0022098629269748926, -0.02346423640847206, 0.024648211896419525, 0.057081956416368484, -0.018620701506733894, -0.015867061913013458, 0.03334863483905792, -0.03831774368882179, 0.024684090167284012, 0.019481774419546127, 0.026029516011476517, -0.046139154583215714, 0.06196136772632599, -0.04660556837916374, -0.037169646471738815, 0.02968907542526722, -0.059629298746585846, 0.01757126860320568, -0.02256728522479534, 0.03239786624908447, -0.03501696512103081, 0.038389500230550766, 0.021042468026280403, 0.07756831496953964, -0.05388881266117096, 0.01159757561981678, 0.042874254286289215, 0.058983493596315384, 0.02683677151799202, 0.04111623018980026, -0.038748279213905334, -0.05474988371133804, 0.01244070939719677, 0.04122386500239372, 0.06092090532183647, 0.030621904879808426, -0.04904527589678764, 0.006278656423091888, -0.04904527589678764, -0.00883945170789957, -0.039178814738988876, 0.03469406068325043, -0.002928544767200947, 0.03334863483905792, 0.06935224682092667, -0.01341838575899601, -0.010296996682882309, 0.07229424268007278, -0.010835167020559311, -0.010763411410152912, 0.054498739540576935, -0.055862102657556534, 0.05022925138473511, -0.057512491941452026, -0.009812642820179462, -0.013615715317428112, 0.06447283178567886, -0.011301581747829914, -0.029976099729537964, 0.03386886790394783, -0.043663572520017624, -0.025491345673799515, -0.02398446761071682, 0.01784932240843773, -0.013830983079969883, 0.057584248483181, 0.001598814968019724, 0.009310350753366947, -0.007215970195829868, -0.025455467402935028, 0.032415807247161865, 0.02297988347709179, 0.004038521554321051, 0.07290416955947876, -0.01975085958838463, -0.03139328211545944, 0.0007696960237808526, 0.0011122191790491343, -0.053494151681661606, -0.007601659279316664, -0.011687270365655422, 0.015068775042891502, 0.008624183014035225, -0.02941999025642872, -0.02202911488711834, -0.007520933635532856, 0.02947380766272545, 0.040542181581258774, 0.00761959794908762, 0.007763110101222992, -0.013705410063266754, 0.031823817640542984, 0.04115210846066475, 0.021885601803660393, 0.015714580193161964, -0.009821612387895584, -0.036003608256578445, -0.041977301239967346, -0.007180091924965382, -0.055862102657556534, 0.009713978506624699, -0.012763611972332, -0.05388881266117096, -0.038389500230550766, -0.009651191532611847, -0.015230226330459118, -0.051484983414411545, 0.00985749065876007, -0.041187986731529236, 0.05076742172241211, 0.03184175863862038, 0.02637035772204399, -0.05055215209722519, -0.011669331230223179, -0.022656980901956558, -0.04560098424553871, -0.011669331230223179, -0.025383710861206055, 0.03860476613044739, 0.021939419209957123, 0.013804074376821518, 0.009920277632772923, -0.008023225702345371, -0.06676902621984482, 0.0768507570028305, 0.015876030549407005, -0.024630272760987282, 0.003168479073792696, -0.007390875369310379, -0.05435522645711899, 0.003489139024168253, 0.02615508809685707, 0.0004818308225367218, 0.01503289770334959, 0.02958144061267376, -0.060203347355127335, 0.012117806822061539, -0.01740981824696064, 0.04904527589678764, -0.024702027440071106, 0.017786536365747452, 0.006911006756126881, 0.016799891367554665, -0.07276065647602081, -0.011400246061384678, -0.007529903203248978, -0.0037716785445809364, 0.028505099937319756, -0.04369944706559181, 0.004834565334022045, 0.01621687225997448, 0.021670334041118622, 0.02075544372200966, 0.0312318317592144, 0.020271090790629387, 0.006807857658714056, -0.035895977169275284, -0.07272478193044662, 0.017643025144934654, -0.028253953903913498, 0.03968111053109169, -0.019463835284113884, -0.08495919406414032, 0.0339585617184639, -0.05604149401187897, 0.019786737859249115, 0.05625675991177559, -0.005915391258895397, -0.018782151862978935, 0.005009470973163843, 0.005058803129941225, 0.0051484983414411545, -0.01360674574971199, 0.0028545462992042303, 0.02140124887228012, 0.02055811509490013, -0.022782552987337112, 0.0037828905042260885, 0.009938215836882591, 0.035160474479198456, 0.004141670651733875, 0.0654774159193039, -0.07426753640174866, -0.015902940183877945, -0.004175306763499975, -0.010853106155991554, -0.0019800192676484585, 0.031985267996788025, -0.01809149980545044, 0.053063616156578064, 0.02034284733235836, 0.012449678964912891, -0.0023163757286965847, 0.007153183687478304, -0.009597375057637691, -0.026693260297179222, 0.03300779312849045, -0.07771182805299759, -0.026173027232289314, -0.006211385130882263, 0.03155473247170448, -0.028361588716506958, 0.053171250969171524, 0.017418786883354187, -0.07290416955947876, -0.0489017628133297, 0.04133149981498718, -0.063575878739357, 0.03169824555516243, -0.06913697719573975, -0.031465038657188416, 0.00992924626916647, -0.029455868527293205, -0.006372836418449879, 0.009337259456515312, 0.053063616156578064, -0.033133365213871, 0.015714580193161964, -0.019571468234062195, -0.04452464357018471, -0.01822604238986969, -0.0317700020968914, -0.019840555265545845, 0.020378725603222847, -0.005251647438853979, 0.016629470512270927, -0.0026572172064334154, -0.010072758421301842, -0.021437127143144608, -0.026603564620018005, -0.03492726758122444, 0.027500515803694725, -0.016530806198716164, -0.017024127766489983, -0.027392880991101265, 0.002632550895214081, 0.017616115510463715, 0.013561897911131382, 0.01653977483510971, 0.025868063792586327, -0.0073863910511136055, -0.05683080852031708, -0.056866686791181564, 0.050265129655599594, 0.005157467909157276, 0.01011760625988245, 0.0012680643703788519, -0.08696836233139038, 0.06529802829027176, 0.0224058348685503, -0.02075544372200966, -0.001123991678468883, 0.012503495439887047, 0.042658984661102295, 0.058086540549993515, 0.001762508531101048, -0.0089650247246027, -0.05166437476873398, -0.03085511177778244, -0.025581039488315582, 0.037169646471738815, 0.0034712001215666533, 0.04660556837916374, 0.008117405697703362, 0.03882003575563431, -0.02637035772204399, -0.02251346781849861, -0.03333069756627083, 0.07053621858358383, 0.027392880991101265, -0.039968132972717285, 0.0283795278519392, -0.008606243878602982, 0.02070162631571293, 0.003092238213866949, -0.025347832590341568, -0.004686568398028612, 0.023284845054149628, -0.0075523266568779945, 0.01408212911337614, 0.02762608788907528, -0.026603564620018005, 0.03593185544013977 ]
9,423
asyncclick.exceptions
__init__
null
def __init__(self, filename: str, hint: t.Optional[str] = None) -> None: if hint is None: hint = _("unknown error") super().__init__(hint) self.ui_filename: str = format_filename(filename) self.filename = filename
(self, filename: str, hint: Optional[str] = None) -> NoneType
[ -0.03363615274429321, 0.007980273105204105, 0.03605123609304428, 0.012757937423884869, 0.0021580427419394255, -0.03521120548248291, 0.051346760243177414, 0.08645296096801758, 0.04413651302456856, -0.03734628111124039, 0.040426384657621384, 0.06461221724748611, -0.0192856602370739, 0.003635749686509371, -0.03584123030304909, 0.05194178223609924, -0.0005747853429056704, 0.02723093330860138, -0.07763265818357468, 0.02087821625173092, -0.004228582605719566, -0.009669081307947636, 0.002415082883089781, 0.0546368733048439, 0.038921333849430084, 0.10920374095439911, -0.021088222041726112, -0.035438716411590576, 0.009555327706038952, -0.052466798573732376, -0.01286294125020504, 0.004755788017064333, -0.015733039006590843, 0.08162279427051544, -0.02619839832186699, -0.018393130972981453, -0.02707342803478241, 0.013344207778573036, -0.08813302218914032, -0.018480634316802025, 0.02632090263068676, 0.030066030099987984, -0.015908045694231987, -0.006763981655240059, -0.004429839551448822, 0.01161164790391922, -0.006418345030397177, -0.0053595588542521, -0.04721662029623985, 0.0034498057793825865, -0.006733355578035116, 0.045151546597480774, -0.04753163084387779, -0.022715779021382332, -0.07021240890026093, 0.053376831114292145, 0.024798350408673286, 0.04613158106803894, -0.03619123995304108, 0.019758177921175957, -0.022838283330202103, 0.03001352958381176, 0.046901606023311615, -0.03377615660429001, -0.018550636246800423, -0.005608942359685898, 0.024395836517214775, -0.03295363113284111, 0.0077833919785916805, 0.04459152743220329, 0.07518257945775986, 0.022995788604021072, -0.03076605498790741, 0.009502825327217579, 0.10108346492052078, -0.01655556820333004, -0.08778300881385803, 0.0069871144369244576, -0.016476815566420555, 0.006098959129303694, 0.030083531513810158, -0.006510223262012005, -0.006514598149806261, 0.010535361245274544, 0.037696290761232376, -0.06611726433038712, 0.018883146345615387, -0.04606157913804054, -0.004563281312584877, 0.04252645745873451, -0.05747196823358536, -0.034598685801029205, -0.03127357363700867, -0.01344046089798212, 0.0030844807624816895, -0.05715695768594742, -0.003248548833653331, -0.05834700167179108, 0.00008887023432180285, -0.0025441497564315796, -0.0034279299434274435, -0.043961506336927414, 0.05117175355553627, -0.05260680243372917, 0.03521120548248291, -0.014166736043989658, 0.029961027204990387, -0.01048285886645317, 0.025025857612490654, -0.0019928808324038982, -0.03899133577942848, -0.03171108663082123, -0.031658586114645004, 0.08078277111053467, -0.004456090275198221, -0.0266709141433239, -0.02763344720005989, -0.02488585375249386, 0.04102140665054321, -0.00859279464930296, 0.007516507524996996, 0.03484369441866875, -0.11970410495996475, -0.003539496334269643, 0.025148361921310425, -0.0023800816852599382, -0.009502825327217579, -0.027965959161520004, 0.052816811949014664, -0.020073188468813896, 0.03881632909178734, 0.021350732073187828, -0.009354070760309696, -0.06317716836929321, -0.011244134977459908, -0.005083924159407616, 0.03934134915471077, 0.05001671612262726, -0.0022028880193829536, 0.056316930800676346, 0.00838716235011816, 0.029155999422073364, 0.004239520523697138, -0.012084164656698704, -0.0020880403462797403, 0.031133567914366722, 0.02206825651228428, -0.03326864168047905, -0.014639251865446568, 0.03402116522192955, 0.0005589253851212561, -0.017736857756972313, -0.0532718263566494, 0.012565430253744125, 0.037696290761232376, -0.04368149861693382, 0.007022115867584944, -0.03864132612943649, 0.016826827079057693, 0.004961419850587845, 0.02779095247387886, -0.040391385555267334, 0.03748628497123718, -0.006444595754146576, 0.009222815744578838, 0.0302935391664505, -0.03298863023519516, 0.007621511351317167, -0.0008947181631810963, -0.000041563926060916856, 0.001925065997056663, -0.05855700746178627, -0.030468543991446495, 0.04728662222623825, 0.008290909230709076, 0.030836056917905807, 0.02854347787797451, 0.03409116715192795, 0.0001795178686734289, 0.022208260372281075, 0.0443115197122097, -0.005521439481526613, -0.014201737008988857, 0.04809165000915527, 0.05236179381608963, 0.0038982585538178682, 0.02325829677283764, 0.05834700167179108, 0.024395836517214775, -0.013405459932982922, 0.016319310292601585, -0.003097606124356389, -0.013536714017391205, 0.010412856936454773, -0.0011375390458852053, -0.02128073014318943, 0.03125607222318649, -0.06384218484163284, 0.022715779021382332, -0.024623343721032143, -0.0007645574514754117, 0.0739225372672081, 0.022453268989920616, -0.02219076082110405, -0.0011107411701232195, 0.04249145835638046, 0.026985924690961838, -0.007897146046161652, -0.031588584184646606, 0.04823165386915207, 0.0022061693016439676, -0.058977022767066956, -0.02569088153541088, 0.05852200463414192, 0.006759606767445803, -0.049001678824424744, -0.024168329313397408, 0.020143190398812294, -0.028140963986516, 0.03514120355248451, 0.10738368332386017, 0.0428064689040184, 0.005858325865119696, -0.0028832238167524338, 0.027003426104784012, 0.014534248039126396, 0.08204281330108643, -0.026688415557146072, -0.015295524150133133, 0.04767163470387459, -0.06443721055984497, -0.08652296662330627, -0.0473216213285923, -0.008115903474390507, -0.048336658626794815, 0.032621119171381, 0.006098959129303694, -0.00915281381458044, -0.06447221338748932, -0.05271180719137192, 0.008675922639667988, 0.012906691990792751, 0.008269033394753933, 0.009091561660170555, 0.03060854971408844, -0.054286859929561615, -0.03587622940540314, 0.04476653411984444, -0.055126890540122986, 0.007608385756611824, 0.057191960513591766, 0.02976852096617222, -0.046901606023311615, 0.0087021728977561, -0.0076258862391114235, 0.005582691170275211, -0.025183362886309624, -0.07623261213302612, 0.037661291658878326, 0.012407924979925156, -0.04074139520525932, -0.022400768473744392, 0.03395116329193115, 0.04872167110443115, -0.000280283042229712, -0.040076375007629395, -0.03311113640666008, 0.00013227992167230695, 0.00551706412807107, -0.018410630524158478, 0.07917271554470062, 0.05936203524470329, 0.005311432294547558, 0.025498373433947563, -0.030993562191724777, -0.032253604382276535, -0.030941059812903404, -0.0012075414415448904, -0.03570122271776199, 0.0036773134488612413, 0.055441901087760925, -0.020458200946450233, 0.06261714547872543, 0.04196643829345703, 0.012976694852113724, -0.026845920830965042, 0.00815527979284525, -0.0399363674223423, -0.06765732169151306, 0.0008690141839906573, 0.008164029568433762, 0.058101993054151535, -0.027598446235060692, 0.0051845526322722435, 0.009660331532359123, -0.02112322486937046, -0.02866598218679428, -0.00008517870446667075, -0.004615783225744963, -0.019600672647356987, 0.0053595588542521, -0.04938669130206108, 0.01605680026113987, -0.0050795492716133595, -0.05092674493789673, -0.023993322625756264, -0.05474187806248665, -0.048056647181510925, 0.029226001352071762, -0.007472756318747997, 0.06314216554164886, 0.0413714163005352, 0.015068016946315765, 0.0244133360683918, 0.020913217216730118, 0.076862633228302, 0.03818630799651146, -0.05950203910470009, -0.013291705399751663, 0.03927134722471237, -0.013344207778573036, -0.033601149916648865, -0.009529076516628265, -0.03671626001596451, 0.0039638858288526535, -0.02584838680922985, 0.00934532005339861, -0.005407685413956642, -0.006930237635970116, 0.004646409302949905, -0.023713313043117523, 0.022890783846378326, -0.009852837771177292, -0.09485325217247009, -0.07833268493413925, -0.0030057281255722046, 0.023170793429017067, -0.0067246053367853165, 0.03437117859721184, -0.028193466365337372, 0.03839631751179695, -0.04637658968567848, -0.02961101569235325, 0.012294171378016472, -0.005932703148573637, -0.0038435691967606544, -0.00014273927081376314, -0.07322251051664352, 0.07434254884719849, -0.025515874847769737, -0.05292181298136711, -0.03965635970234871, -0.04266646131873131, -0.027458440512418747, 0.03815130889415741, -0.01993318274617195, -0.04196643829345703, 0.034913696348667145, 0.02163074165582657, -0.018480634316802025, 0.005276430863887072, -0.046306587755680084, -0.02103572152554989, -0.011279136873781681, -0.0003221204096917063, -0.006475221831351519, 0.05260680243372917, 0.02591838873922825, -0.044521525502204895, 0.031133567914366722, 0.017045583575963974, -0.03899133577942848, -0.04322648048400879, -0.02334580011665821, 0.03825630992650986, -0.013720470480620861, 0.0043970257975161076, 0.01558428443968296, -0.04728662222623825, -0.04728662222623825, 0.03073105402290821, 0.012705435045063496, -0.011935409158468246, 0.025935888290405273, -0.05792698636651039, -0.014613000676035881, -0.03727627918124199, 0.04557156190276146, 0.025200864300131798, 0.006435845512896776, 0.01981067843735218, -0.010132847353816032, 0.056351929903030396, -0.014341741800308228, 0.045396555215120316, 0.0028832238167524338, -0.015076766721904278, -0.0022127320989966393, -0.027003426104784012, 0.04914168268442154, -0.03123857080936432, -0.044801536947488785, -0.0473916232585907, 0.04606157913804054, 0.015566783957183361, 0.03930634632706642, 0.01547928061336279, -0.004375149961560965, -0.013265455141663551, -0.026408405974507332, 0.0070308661088347435, -0.0266359131783247, 0.00875029992312193, -0.015628036111593246, -0.0028088463004678488, 0.08827302604913712, -0.06587225943803787, -0.0663972795009613, -0.03421367332339287, -0.02303078956902027, -0.0562119260430336, 0.03941135108470917, 0.03580622747540474, 0.05435686185956001, 0.018480634316802025, 0.04399650916457176, -0.009800336323678493, -0.01953066885471344, 0.049001678824424744, -0.021385733038187027, -0.07203246653079987, 0.04550155997276306, -0.019705675542354584, -0.016581818461418152, 0.003972636070102453, -0.04441652074456215, -0.05684194713830948, -0.01558428443968296, -0.03510620445013046, 0.01162914838641882, 0.010640365071594715, -0.01674807444214821, 0.07896270602941513, 0.06895236670970917, 0.017605602741241455, 0.004152017179876566, -0.021613240242004395, 0.04949169605970383, -0.0414414219558239, -0.02632090263068676, 0.00459390738978982, 0.06671229004859924, 0.018480634316802025, -0.04525655135512352, 0.0012392612406983972, -0.04550155997276306, -0.11431391537189484, 0.0067246053367853165, -0.034161172807216644, 0.02128073014318943, -0.04473153501749039, 0.076862633228302, -0.007240873295813799, -0.06429720669984818, 0.008776551112532616, 0.015094267204403877, 0.0428764708340168, 0.014814257621765137, -0.050436727702617645, -0.010789119638502598, -0.05743696913123131, 0.011322888545691967, -0.021070722490549088, 0.02913849800825119, -0.03417867049574852, 0.030538545921444893, 0.028875989839434624, -0.0026010265573859215, 0.0073283761739730835, 0.008492166176438332, 0.056071922183036804, -0.0121891675516963, 0.005630818195641041, 0.037451282143592834, 0.010395356453955173, -0.0000401625111408066, -0.031973596662282944, -0.015059266239404678, 0.02481584995985031, -0.019478168338537216, -0.012854190543293953, 0.05264180526137352, -0.06475222110748291, -0.00366200041025877, 0.017736857756972313, 0.0487566702067852, 0.010019093751907349, 0.06097209081053734, -0.031938593834638596, -0.006680854130536318, 0.032971128821372986, -0.07952272891998291, 0.0025900888722389936, 0.016223056241869926, 0.02961101569235325, 0.0022532022558152676, -0.027738450095057487, 0.024430837482213974, 0.016231806948781013, -0.04347148910164833, -0.023433303460478783, 0.03291862830519676, 0.04459152743220329, 0.01821812428534031, 0.04501154273748398, -0.02234826609492302, -0.08050275593996048, 0.02413332648575306, 0.009555327706038952, 0.05124175548553467, -0.009056560695171356, -0.01758810319006443, -0.003532933536916971, -0.049876708537340164, 0.022838283330202103, -0.02873598411679268, 0.021963253617286682, -0.00948532484471798, 0.047496628016233444, 0.04228144884109497, -0.02381831593811512, -0.04564156383275986, 0.04070639610290527, -0.0019447541562840343, -0.010806620121002197, 0.06769231706857681, -0.03283112496137619, 0.021385733038187027, -0.017063084989786148, -0.021490735933184624, 0.006317716557532549, 0.0518367774784565, 0.03365365415811539, -0.041826434433460236, 0.06118209660053253, -0.040636394172906876, -0.0562119260430336, 0.026373403146862984, 0.04844165965914726, 0.014044231735169888, 0.03076605498790741, -0.048896677792072296, -0.04903668165206909, 0.0032026097178459167, -0.03731127828359604, 0.029278503730893135, 0.024465838447213173, -0.002559462795034051, 0.058101993054151535, -0.02525336481630802, -0.020458200946450233, 0.012766687199473381, -0.021648241207003593, -0.013361708261072636, -0.010544111020863056, 0.007617135997861624, -0.016030550003051758, -0.010404106229543686, -0.03536871075630188, -0.004926418885588646, 0.003539496334269643, 0.02334580011665821, 0.04616658389568329, 0.026653412729501724, -0.03720627352595329, 0.007621511351317167, 0.07574259489774704, 0.07840269058942795, 0.004904543049633503, 0.013134200125932693, -0.016380561515688896, 0.027580944821238518, -0.00039321661461144686, 0.01890064775943756, -0.024518340826034546, -0.009879088960587978, -0.027685949578881264, -0.020668208599090576, -0.009984091855585575, -0.02072071097791195, -0.009572828188538551, -0.020195692777633667, 0.0036860639229416847, -0.011130381375551224, 0.010797870345413685, -0.00032047973945736885, 0.022400768473744392, -0.10465358942747116, 0.02084321528673172, -0.032218605279922485, -0.0428764708340168, 0.0005531830247491598, -0.06919737160205841, 0.05078674107789993, 0.02513086050748825, 0.0035198081750422716, 0.010815370827913284, 0.04196643829345703, -0.04564156383275986, 0.07504257559776306, 0.015400527976453304, -0.02128073014318943, 0.004228582605719566, -0.029208501800894737, -0.03640124946832657, -0.0006721324170939624, 0.04844165965914726, -0.021333230659365654, 0.01633680984377861, 0.01173415221273899, -0.057786982506513596, 0.04070639610290527, 0.022715779021382332, 0.06394719332456589, -0.02845597453415394, 0.004471403080970049, 0.013186701573431492, 0.0033579275477677584, -0.05589691549539566, -0.05467187240719795, 0.016363060101866722, -0.02357330732047558, -0.005534564610570669, -0.029120998457074165, 0.007560259196907282, 0.007695888634771109, 0.0008170592482201755, -0.0027104055043309927, 0.036506250500679016, -0.0008569824858568609, -0.008352161385118961, -0.036226242780685425, -0.015068016946315765, 0.003384178504347801, -0.03783629834651947, 0.02334580011665821, -0.045676566660404205, -0.03440617769956589, 0.043961506336927414, -0.011646648868918419, 0.018358130007982254, 0.06118209660053253, -0.009537827223539352, 0.02488585375249386, 0.04501154273748398, 0.012119165621697903, -0.012609181925654411, -0.0107366181910038, 0.017833111807703972, 0.03130857273936272, -0.014840508811175823, -0.022890783846378326, 0.017369344830513, 0.030783554539084435, 0.020580705255270004, 0.02334580011665821, 0.03584123030304909, -0.09247317165136337, -0.07059741765260696, 0.01637181080877781, -0.03561371937394142, 0.0062564644031226635, 0.010780369862914085, -0.030591048300266266, 0.04872167110443115, 0.03164108470082283, -0.006698354613035917, -0.023398302495479584, 0.04368149861693382, -0.0251658633351326, 0.004790789447724819, 0.0032135476358234882, -0.025025857612490654, -0.05680694803595543, -0.010316603817045689, 0.053096819669008255, -0.03092356026172638, 0.040111374109983444, 0.028595980256795883, -0.03696126863360405, -0.0531318224966526, 0.02763344720005989, -0.05652693659067154, 0.01561928540468216, -0.013790472410619259, -0.023363301530480385, -0.026250900700688362, -0.05554690584540367, -0.004191393498331308, -0.02497335523366928, 0.06534723937511444, -0.019460666924715042, -0.012014161795377731, 0.010089095681905746, -0.05435686185956001, 0.004677035380154848, -0.044171515852212906, -0.030188534408807755, -0.023800816386938095, -0.010649114847183228, 0.037136271595954895, 0.022243263199925423, -0.00594582874327898, -0.016188055276870728, -0.034003663808107376, -0.035508718341588974, 0.053411830216646194, 0.006304590962827206, 0.013221703469753265, -0.060762081295251846, 0.04798664525151253, 0.03001352958381176, 0.015663037076592445, 0.03314613550901413, 0.06310716271400452, 0.00566581916064024, -0.06737730652093887, -0.05089174583554268, 0.010447857901453972, 0.011856656521558762, 0.0140354810282588, 0.021210726350545883, -0.09786335378885269, -0.004755788017064333, 0.011419141665101051, -0.05561690777540207, 0.0562119260430336, 0.03636624664068222, 0.06762231886386871, 0.036506250500679016, -0.0022488271351903677, -0.027405939996242523, -0.024465838447213173, 0.012127915397286415, -0.0060858335345983505, 0.04469653218984604, 0.045046545565128326, -0.014420494437217712, 0.0022313264198601246, 0.08190280944108963, -0.010657865554094315, -0.014017980545759201, -0.029243502765893936, 0.08631295710802078, 0.013939227908849716, -0.05666694417595863, 0.033443644642829895, 0.007162120658904314, 0.01447299588471651, 0.02973352000117302, -0.03783629834651947, -0.020948218181729317, 0.06800732761621475, -0.017351845279335976, 0.03393366187810898, 0.01890064775943756, 0.0015028640627861023, 0.013055447489023209 ]
9,425
asyncclick.exceptions
format_message
null
def format_message(self) -> str: return _("Could not open file {filename!r}: {message}").format( filename=self.ui_filename, message=self.message )
(self) -> str
[ -0.0033934200182557106, 0.010264984332025051, 0.0537596233189106, 0.06039484962821007, 0.0479092039167881, -0.06303467601537704, 0.05622107908129692, 0.03544139489531517, 0.0537596233189106, -0.042130134999752045, 0.019977033138275146, 0.011834608390927315, -0.01810418628156185, -0.0046821171417832375, -0.016275931149721146, 0.08525912463665009, -0.012833459302783012, -0.02605932578444481, -0.03742126375436783, 0.04823026433587074, -0.0028873055707663298, -0.0537596233189106, -0.03471009433269501, -0.060858603566884995, 0.011558140628039837, 0.0545087605714798, -0.005930681712925434, -0.008771166205406189, 0.01638294942677021, -0.059824079275131226, -0.04623256251215935, -0.010612798854708672, -0.02795000933110714, 0.0438067801296711, -0.04969286918640137, 0.03792068734765053, -0.00692507391795516, -0.04537640139460564, -0.035958658903837204, -0.07562733441591263, 0.014626041986048222, 0.03126762434840202, 0.021421799436211586, -0.009506926871836185, -0.0011231506941840053, -0.034674420952796936, -0.02618418261408806, 0.028556454926729202, -0.048051897436380386, 0.03449605405330658, -0.021100740879774094, 0.0715605840086937, -0.039490312337875366, 0.011486793868243694, -0.06528209149837494, 0.030643340200185776, 0.003875009249895811, -0.01913871057331562, -0.02358003333210945, -0.053652603179216385, -0.040275122970342636, 0.010157964192330837, 0.011567058973014355, 0.008182557299733162, -0.01284237764775753, 0.00810675136744976, 0.04487697780132294, -0.021921226754784584, 0.018585775047540665, 0.00814688391983509, 0.08297602832317352, 0.02795000933110714, -0.05411635339260101, 0.010693063028156757, 0.07152491062879562, -0.003964192233979702, -0.029359104111790657, -0.013404232449829578, 0.004958584904670715, 0.027842989191412926, 0.028431598097085953, -0.05429472029209137, -0.009605028666555882, -0.023972438648343086, 0.05557895824313164, -0.07919466495513916, 0.02539937011897564, -0.02300926111638546, -0.012628338299691677, -0.019691646099090576, 0.017069660127162933, -0.04651794582605362, -0.03162435442209244, -0.030357955023646355, -0.03075036033987999, -0.01729261875152588, -0.007892711088061333, -0.05115547403693199, 0.04359273985028267, -0.010996285825967789, 0.034192830324172974, -0.009524763561785221, 0.037028856575489044, -0.06189312785863876, 0.041844747960567474, -0.029359104111790657, 0.007821365259587765, -0.008436729200184345, 0.024311335757374763, -0.019709482789039612, -0.02404378540813923, -0.049871236085891724, -0.041380997747182846, 0.06025215610861778, 0.02650524117052555, -0.0321059450507164, 0.00630970997735858, 0.014831162989139557, 0.02379407361149788, 0.004113574046641588, 0.016891295090317726, -0.011870281770825386, -0.08911183476448059, -0.0718102976679802, -0.009310724213719368, -0.019887849688529968, -0.049050748348236084, -0.0542590469121933, 0.05454443395137787, -0.03727857023477554, -0.02250983566045761, 0.021350452676415443, 0.041095610707998276, -0.0705617293715477, -0.012931561097502708, -0.004753463435918093, 0.0238297451287508, 0.03444254398345947, 0.04862267151474953, 0.08782759308815002, 0.03176704794168472, 0.04298629239201546, -0.013466659933328629, -0.00608229311183095, 0.015500036999583244, -0.0015551317483186722, 0.029733672738075256, 0.005747856106609106, 0.017337210476398468, 0.006167016923427582, 0.024935618042945862, 0.011103305965662003, -0.0379563607275486, 0.012280523777008057, 0.012530236504971981, -0.029573142528533936, 0.0069562881253659725, -0.007848120294511318, -0.027147360146045685, -0.014099860563874245, 0.03774232044816017, -0.013323967345058918, 0.000611462164670229, 0.062178514897823334, 0.04152368754148483, -0.0045795561745762825, -0.00806661881506443, 0.015910279005765915, 0.014848999679088593, 0.010737654753029346, -0.00608229311183095, -0.01708749681711197, -0.04273657873272896, 0.02440051920711994, -0.040810223668813705, 0.036743469536304474, 0.017132088541984558, 0.01185244508087635, 0.009596110321581364, -0.025256676599383354, 0.0007101210649125278, -0.00903425645083189, -0.004153706599026918, 0.0481589175760746, 0.009970679879188538, 0.00837430078536272, -0.01493818312883377, 0.010095535777509212, 0.028592128306627274, -0.025131819769740105, 0.004392271861433983, -0.0005381647497415543, 0.005783529486507177, 0.03647591918706894, -0.030268771573901176, -0.005792447831481695, 0.010791164822876453, -0.054152026772499084, 0.04676765948534012, -0.0435570664703846, -0.023027097806334496, 0.07202433794736862, 0.0012775490758940578, 0.01938842423260212, -0.011014122515916824, 0.0433073528110981, 0.022795220836997032, -0.04220148175954819, -0.045626115053892136, 0.047980550676584244, -0.041380997747182846, -0.021582329645752907, -0.02190339006483555, 0.054687127470970154, 0.009185867384076118, 0.00692507391795516, 0.009292887523770332, 0.03276589885354042, -0.06556747108697891, 0.04369975998997688, -0.010175800882279873, -0.029947713017463684, 0.013734210282564163, -0.025167493149638176, 0.03663644939661026, 0.022491998970508575, 0.041880421340465546, 0.03487062454223633, -0.029626652598381042, 0.05433039367198944, -0.035209521651268005, -0.03963300585746765, -0.0067244116216897964, 0.031017910689115524, -0.0474097803235054, -0.01625809445977211, -0.05265374854207039, -0.030554158613085747, -0.009551518596708775, 0.01683778502047062, -0.015508955344557762, -0.02791433595120907, 0.019067363813519478, 0.05825445428490639, 0.09353531897068024, -0.11586678773164749, -0.03913357853889465, 0.032783735543489456, -0.013983923010528088, 0.02791433595120907, 0.013225865550339222, 0.09275050461292267, -0.07512791454792023, -0.01658807136118412, -0.0046330662444233894, -0.08354680240154266, -0.01477765291929245, -0.07384367287158966, -0.006193771958351135, 0.03405013680458069, 0.015009528957307339, -0.00907438900321722, 0.005658672656863928, -0.023597870022058487, -0.0012775490758940578, -0.01589244231581688, -0.06834998726844788, 0.029038043692708015, 0.05304615572094917, 0.016481051221489906, 0.08211987465620041, 0.03959733247756958, 0.01976299285888672, -0.010015271604061127, -0.009203704074025154, -0.00604216055944562, 0.009435580112040043, 0.03487062454223633, 0.0268798116594553, 0.000023741538825561292, 0.002494899556040764, -0.0014313900610432029, 0.031214114278554916, 0.05518655106425285, 0.056613482534885406, 0.018130941316485405, 0.010220392607152462, -0.05914628505706787, -0.032212965190410614, 0.060894276946783066, 0.028681311756372452, 0.017979329451918602, 0.007139113731682301, -0.019120873883366585, -0.016811029985547066, -0.02477508783340454, 0.025952305644750595, -0.02102939411997795, 0.022367142140865326, 0.012476727366447449, -0.037314243614673615, 0.04544774815440178, 0.05729127675294876, -0.01062171719968319, -0.06874239444732666, -0.02395460195839405, -0.017051823437213898, -0.04113128408789635, 0.019031690433621407, -0.003988717682659626, 0.02322329953312874, 0.0048158918507397175, 0.06631661206483841, 0.04270090535283089, 0.060002442449331284, 0.09025337547063828, 0.011638404801487923, -0.029697999358177185, -0.007393285632133484, -0.026808464899659157, 0.03405013680458069, 0.024525374174118042, -0.035048991441726685, 0.004833728540688753, -0.010532533749938011, -0.006693197879940271, -0.01929924078285694, -0.011861363425850868, 0.01786339096724987, 0.02358003333210945, 0.015794340521097183, -0.008289576508104801, -0.043735433369874954, -0.09567571431398392, -0.00679129920899868, 0.02732572704553604, 0.0491577684879303, -0.012672930024564266, 0.048301611095666885, -0.0178277175873518, 0.003542801830917597, -0.008392137475311756, -0.03207027167081833, -0.013350722379982471, -0.028788330033421516, 0.0025550981517881155, -0.025631247088313103, -0.007567192893475294, 0.015000610612332821, -0.03494197130203247, -0.0163026861846447, 0.034799277782440186, -0.04683900624513626, -0.02539937011897564, -0.04662496596574783, 0.01397500466555357, -0.0522613450884819, 0.011290590278804302, 0.02440051920711994, 0.10009920597076416, -0.02243848890066147, -0.059824079275131226, 0.018006084486842155, 0.0270046666264534, -0.04930046200752258, 0.024543210864067078, 0.007558274548500776, 0.03597649559378624, -0.039169251918792725, 0.0013366328785195947, 0.006818054243922234, -0.020315928384661674, 0.0007017601747065783, -0.004349909722805023, -0.00692507391795516, 0.03688616305589676, -0.0008210426312871277, 0.008891562931239605, -0.025256676599383354, -0.03788501396775246, 0.049050748348236084, -0.0011983989970758557, -0.04277225211262703, -0.0006092325784265995, -0.025131819769740105, 0.02930559404194355, -0.043450046330690384, -0.02448970079421997, 0.021332615986466408, -0.008160261437296867, -0.0035695568658411503, -0.04523370787501335, 0.10787597298622131, 0.04930046200752258, 0.01774745248258114, -0.00887372624129057, -0.018425244837999344, 0.0107644097879529, 0.019459770992398262, -0.005123573821038008, -0.01951327919960022, 0.00656388234347105, -0.06510372459888458, 0.006100129801779985, -0.007406663149595261, 0.03292642906308174, -0.02502480149269104, 0.06845700740814209, -0.006345383357256651, 0.037064529955387115, 0.001074099913239479, -0.01979866623878479, -0.02877049334347248, -0.026023652404546738, 0.00983690470457077, 0.03506682813167572, -0.07195299118757248, -0.07091846317052841, -0.046696312725543976, -0.00630970997735858, -0.0377066470682621, 0.006590636912733316, 0.050691720098257065, -0.037849340587854385, 0.008102292194962502, 0.007103440351784229, -0.05136951059103012, 0.02898453362286091, 0.06214284151792526, 0.008927236311137676, -0.05240403860807419, -0.0016889064572751522, 0.0013656174996867776, -0.01625809445977211, 0.0011220359010621905, -0.07548464089632034, -0.03959733247756958, 0.002428012201562524, -0.08019351959228516, 0.006933992262929678, 0.05140518397092819, -0.001066296361386776, 0.0374569371342659, 0.0708114430308342, -0.01438524667173624, -0.0289310235530138, -0.005618540570139885, -0.009943924844264984, -0.01671292819082737, 0.02795000933110714, 0.01467063371092081, 0.04526938125491142, -0.03563759848475456, -0.02202824503183365, 0.014340655878186226, 0.001140987267717719, -0.05697021633386612, -0.025791775435209274, -0.02341950312256813, -0.01765826903283596, -0.03588731214404106, 0.08483104407787323, -0.006862645968794823, 0.01358259841799736, 0.01103195920586586, -0.10252498835325241, 0.0323556587100029, -0.004097966942936182, -0.015562465414404869, -0.009997434914112091, -0.01828255131840706, -0.010594962164759636, -0.0046776579692959785, 0.016436459496617317, -0.02275954745709896, 0.02238497883081436, 0.013760964386165142, 0.031214114278554916, 0.007972976192831993, 0.012726440094411373, 0.0673154667019844, -0.061108317226171494, 0.004338761791586876, -0.011540303938090801, 0.037064529955387115, 0.006568341050297022, -0.030357955023646355, 0.030357955023646355, 0.029002370312809944, -0.018041757866740227, 0.02284873090684414, -0.003150395816192031, -0.04170205444097519, 0.01065739057958126, -0.012396462261676788, -0.0034781440626829863, -0.04633958265185356, 0.016891295090317726, -0.046410925686359406, -0.006024323869496584, 0.01724802702665329, -0.06314168870449066, 0.0160529725253582, 0.00969421211630106, -0.003796973964199424, -0.01913871057331562, 0.06317736208438873, 0.0029341266490519047, 0.11586678773164749, -0.04170205444097519, 0.014171207323670387, 0.05768368020653725, 0.011816771700978279, 0.03228431195020676, 0.01876414194703102, -0.061108317226171494, -0.024025948718190193, 0.011950545944273472, 0.04930046200752258, 0.0481589175760746, -0.02074400708079338, -0.053902313113212585, -0.0033599764574319124, -0.04498399794101715, -0.0010601651156321168, -0.009899333119392395, 0.04494832456111908, 0.023811908438801765, -0.029751509428024292, 0.04095291718840599, -0.04955017566680908, -0.005636377260088921, 0.07141789048910141, -0.00948909018188715, -0.042665231972932816, 0.01963813602924347, -0.058504167944192886, 0.015544628724455833, -0.061179663985967636, -0.0017368424450978637, 0.006091211456805468, 0.031838394701480865, 0.0062651182524859905, -0.06899210810661316, 0.023455176502466202, -0.010648472234606743, -0.0272543802857399, -0.025987979024648666, 0.02243848890066147, -0.018746305257081985, 0.057933393865823746, -0.01068414468318224, -0.013466659933328629, -0.025256676599383354, 0.01658807136118412, 0.041559360921382904, 0.007308561820536852, 0.05697021633386612, 0.04569746181368828, -0.011201407760381699, -0.028039192780852318, 0.009159112349152565, 0.03214161843061447, -0.015794340521097183, -0.0053197769448161125, 0.008878185413777828, -0.03458523750305176, -0.013867984525859356, -0.06674469262361526, 0.03201676160097122, -0.008445647545158863, 0.03214161843061447, 0.03116060420870781, -0.0291807372123003, -0.01885332353413105, -0.022367142140865326, 0.046125542372465134, 0.05721992999315262, 0.034799277782440186, 0.10965964198112488, -0.017979329451918602, -0.05590001866221428, 0.03859848156571388, 0.023365993052721024, -0.05379529297351837, 0.01913871057331562, -0.015910279005765915, -0.021796369925141335, 0.00948909018188715, 0.04362841323018074, -0.023633543401956558, -0.0759127214550972, 0.043771106749773026, -0.005814743228256702, 0.032997775822877884, 0.06332005560398102, 0.04555476829409599, -0.05932465195655823, 0.01888899691402912, 0.007709885947406292, 0.0016922508366405964, 0.014840081334114075, -0.007852579466998577, 0.07519926130771637, 0.02992987632751465, 0.0048649427480995655, 0.04298629239201546, 0.005275185219943523, -0.04070320352911949, 0.0596100389957428, 0.009096684865653515, -0.04733843356370926, -0.04031079635024071, -0.04462726414203644, -0.026647934690117836, 0.01762259565293789, 0.07163193076848984, -0.010675226338207722, -0.010933858342468739, 0.034067973494529724, -0.04598284885287285, 0.02218877524137497, -0.045340728014707565, 0.0054892245680093765, 0.05062037333846092, 0.03276589885354042, -0.020547805353999138, 0.0005607392522506416, -0.05572165176272392, -0.01376988273113966, -0.02448970079421997, 0.04095291718840599, 0.030197424814105034, -0.04191609472036362, -0.007455714046955109, 0.031214114278554916, 0.020975884050130844, 0.035334374755620956, -0.019352750852704048, -0.012342952191829681, 0.021065067499876022, -0.054758474230766296, -0.08975395560264587, -0.03107142075896263, -0.0652107447385788, 0.05493684113025665, -0.010086617432534695, -0.039418965578079224, 0.028841840103268623, -0.01459036860615015, 0.013546925038099289, -0.012958316132426262, -0.0019887848757207394, 0.005837039090692997, 0.008624013513326645, 0.007955139502882957, 0.018532264977693558, -0.012601583264768124, -0.015116549097001553, 0.019067363813519478, 0.03087521716952324, -0.05672050267457962, -0.03656510263681412, 0.010059862397611141, 0.019352750852704048, -0.023633543401956558, 0.04302196577191353, -0.0662095919251442, 0.009203704074025154, -0.024757251143455505, -0.006385515909641981, 0.009292887523770332, 0.025577737018465996, -0.013832311145961285, 0.020601315423846245, 0.04594717547297478, 0.022081755101680756, 0.0268798116594553, 0.03429985046386719, -0.016686173155903816, 0.012878051027655602, 0.04794487729668617, -0.06560314446687698, -0.03642241284251213, 0.03203459829092026, 0.05932465195655823, -0.02083319053053856, 0.05796906724572182, -0.016909131780266762, 0.0030679013580083847, -0.05989542603492737, -0.026772791519761086, -0.07805311679840088, -0.013814474456012249, -0.03271239250898361, -0.008922777138650417, 0.03483495116233826, 0.009819068014621735, -0.02885967679321766, -0.04209446161985397, -0.01995919644832611, 0.02322329953312874, 0.03656510263681412, -0.004097966942936182, -0.05236836522817612, -0.025666918605566025, -0.006942910607904196, -0.01257482822984457, -0.050977107137441635, -0.020119724795222282, 0.015384098514914513, -0.029983384534716606, 0.009943924844264984, -0.0004946879344061017, -0.03273022919893265, -0.06053754314780235, 0.051012780517339706, -0.004887238144874573, 0.033479366451501846, -0.05807608738541603, -0.025987979024648666, 0.03297993913292885, 0.007669753395020962, -0.013216947205364704, 0.034353360533714294, 0.012521318159997463, -0.002161577343940735, -0.07113250344991684, 0.02650524117052555, 0.001489359070546925, 0.028538618236780167, 0.02341950312256813, -0.07166760414838791, 0.04901507496833801, 0.07848119735717773, -0.0015874606324359775, 0.03203459829092026, 0.05582867190241814, 0.04006108641624451, 0.0596100389957428, 0.020244581624865532, 0.0433073528110981, -0.059503018856048584, -0.01695372350513935, 0.0030723605304956436, 0.05643511563539505, -0.02095804736018181, 0.026112835854291916, -0.04038214311003685, 0.046910353004932404, -0.017604760825634003, -0.035584088414907455, -0.018514428287744522, 0.03483495116233826, -0.0048158918507397175, -0.03581596538424492, 0.03413932025432587, -0.0362083725631237, 0.009426661767065525, 0.02659442462027073, 0.0009358660317957401, -0.009845823049545288, 0.05825445428490639, 0.047730837017297745, -0.02696899324655533, 0.03321181610226631, -0.07512791454792023, -0.004802514333277941 ]
9,427
asyncclick.types
FloatRange
Restrict a :data:`click.FLOAT` value to a range of accepted values. See :ref:`ranges`. If ``min`` or ``max`` are not passed, any value is accepted in that direction. If ``min_open`` or ``max_open`` are enabled, the corresponding boundary is not included in the range. If ``clamp`` is enabled, a value outside the range is clamped to the boundary instead of failing. This is not supported if either boundary is marked ``open``. .. versionchanged:: 8.0 Added the ``min_open`` and ``max_open`` parameters.
class FloatRange(_NumberRangeBase, FloatParamType): """Restrict a :data:`click.FLOAT` value to a range of accepted values. See :ref:`ranges`. If ``min`` or ``max`` are not passed, any value is accepted in that direction. If ``min_open`` or ``max_open`` are enabled, the corresponding boundary is not included in the range. If ``clamp`` is enabled, a value outside the range is clamped to the boundary instead of failing. This is not supported if either boundary is marked ``open``. .. versionchanged:: 8.0 Added the ``min_open`` and ``max_open`` parameters. """ name = "float range" def __init__( self, min: t.Optional[float] = None, max: t.Optional[float] = None, min_open: bool = False, max_open: bool = False, clamp: bool = False, ) -> None: super().__init__( min=min, max=max, min_open=min_open, max_open=max_open, clamp=clamp ) if (min_open or max_open) and clamp: raise TypeError("Clamping is not supported for open bounds.") def _clamp(self, bound: float, dir: "te.Literal[1, -1]", open: bool) -> float: if not open: return bound # Could use Python 3.9's math.nextafter here, but clamping an # open float range doesn't seem to be particularly useful. It's # left up to the user to write a callback to do it if needed. raise RuntimeError("Clamping is not supported for open bounds.")
(min: Optional[float] = None, max: Optional[float] = None, min_open: bool = False, max_open: bool = False, clamp: bool = False) -> None
[ 0.017674921080470085, -0.043868087232112885, -0.034597717225551605, 0.024312853813171387, -0.008212147280573845, 0.02357822097837925, -0.004635184537619352, -0.046491775661706924, -0.08864571899175644, -0.05387308821082115, 0.01913544163107872, 0.025117453187704086, 0.020884567871689796, -0.007516869809478521, -0.0056715416721999645, 0.061919067054986954, 0.017491262406110764, -0.023613203316926956, 0.0656621977686882, 0.049710169434547424, 0.01945028454065323, -0.017281366512179375, 0.00005940879782428965, -0.03151925653219223, -0.0012845145538449287, 0.024225398898124695, -0.0020956718362867832, 0.019380318000912666, -0.007013996131718159, -0.04785609245300293, -0.04292355850338936, -0.02487257495522499, 0.027758633717894554, -0.011876567266881466, 0.009375317022204399, -0.05215894430875778, 0.02749626524746418, 0.042048994451761246, -0.06790108233690262, -0.002180941868573427, -0.03939032182097435, -0.03230636194348335, -0.017998509109020233, 0.023490766063332558, -0.021321848034858704, 0.013459526002407074, 0.03568217530846596, -0.011045732535421848, -0.020202407613396645, 0.00952399242669344, 0.06286359578371048, 0.01600450463593006, 0.01743004284799099, 0.007048978935927153, -0.051424309611320496, 0.06261871755123138, 0.017604956403374672, 0.028335845097899437, -0.012156426906585693, -0.0038939923979341984, 0.013188411481678486, 0.051914066076278687, 0.016590462997555733, -0.0862669050693512, 0.004355324432253838, 0.02508247084915638, -0.04092955216765404, 0.007031487300992012, -0.027058983221650124, 0.028265880420804024, -0.04512745514512062, 0.019170423969626427, 0.011920295655727386, 0.030259883031249046, 0.004792605992406607, -0.010547230951488018, -0.001960114575922489, 0.08836586028337479, 0.000632418435998261, -0.02266867645084858, 0.06146429479122162, 0.01964268833398819, 0.050409819930791855, -0.010197405703365803, -0.003928974736481905, -0.029367828741669655, -0.07297354936599731, 0.0300150066614151, 0.09550229460000992, 0.006441157311201096, -0.07486259937286377, 0.028335845097899437, -0.030767129734158516, 0.0036185048520565033, 0.04092955216765404, 0.05044480040669441, -0.025642190128564835, -0.03171166032552719, -0.07808099687099457, 0.021601708605885506, 0.022896062582731247, 0.06884560734033585, 0.005955774802714586, 0.010739634744822979, 0.03855074197053909, -0.051109470427036285, -0.012121444568037987, -0.02901800349354744, -0.02135683223605156, 0.029385320842266083, -0.015313600189983845, -0.02861570566892624, 0.0005026005092076957, 0.03150176256895065, -0.07710148394107819, 0.05331336706876755, -0.011605452746152878, 0.017158929258584976, 0.06604700535535812, -0.01924038864672184, 0.03260371461510658, 0.013914299197494984, -0.0005602670134976506, -0.007704901043325663, 0.032376326620578766, 0.05044480040669441, 0.0033823729027062654, 0.018978020176291466, -0.03214893862605095, -0.017762377858161926, 0.016581716015934944, -0.03011995367705822, -0.018908055499196053, 0.048205919563770294, 0.0002547165204305202, 0.03606698289513588, -0.04481261596083641, 0.0798301249742508, -0.016100706532597542, 0.05107448622584343, -0.03221890702843666, 0.025362329557538033, 0.004827588330954313, 0.010967021808028221, -0.02286108024418354, 0.03417792543768883, 0.019590213894844055, 0.02105947956442833, -0.019590213894844055, 0.02950775995850563, -0.053628209978342056, -0.005999503191560507, 0.013599456287920475, -0.0027964154724031687, 0.0825587585568428, 0.0031834098044782877, 0.00672101741656661, -0.05219392850995064, 0.0038262135349214077, 0.06772616505622864, -0.02709396556019783, 0.0031593593303114176, 0.02235383354127407, 0.00592079246416688, 0.020377321168780327, -0.008579464629292488, -0.019765125587582588, -0.014229142107069492, -0.019292863085865974, 0.05709148198366165, 0.03402050584554672, 0.007879814133048058, 0.06818094104528427, 0.021794112399220467, -0.001473638811148703, 0.01073088962584734, -0.00826462171971798, -0.008938034996390343, -0.00780547596514225, -0.0218465868383646, 0.02357822097837925, -0.024522749707102776, -0.0012178291799500585, -0.038515761494636536, 0.03566468507051468, 0.0215667262673378, -0.02013244293630123, -0.02607947215437889, -0.052019014954566956, -0.021881569176912308, -0.015733391046524048, -0.020884567871689796, 0.0471564419567585, -0.050304871052503586, -0.04887058585882187, -0.0024640816263854504, -0.05411796644330025, -0.020902058109641075, 0.0584208145737648, -0.026516754180192947, -0.021007006987929344, 0.01254123542457819, 0.08815596252679825, 0.005159922409802675, -0.007311347872018814, 0.025607207790017128, 0.052228908985853195, -0.017762377858161926, -0.011098206043243408, -0.02819591574370861, -0.07437285035848618, -0.008544481359422207, -0.04019492119550705, 0.020884567871689796, -0.005636559333652258, 0.008019743487238884, -0.019187914207577705, 0.0055359844118356705, 0.00896427221596241, 0.05023490637540817, 0.050129957497119904, -0.01753498986363411, 0.03932035714387894, -0.01852324604988098, 0.1087956503033638, 0.03325089067220688, 0.020307356491684914, -0.022336341440677643, 0.028178423643112183, -0.0023416427429765463, 0.016354329884052277, -0.04029987007379532, -0.051809120923280716, -0.0016168485162779689, -0.03869067132472992, -0.003607572754845023, 0.016065724194049835, -0.003974889405071735, -0.02588706836104393, -0.021024497225880623, 0.0024225397501140833, 0.0509345568716526, -0.06146429479122162, 0.05901551991701126, 0.007656800094991922, -0.04677163437008858, 0.004189157392829657, 0.0007209679461084306, -0.0053741903975605965, 0.022493762895464897, -0.03592705354094505, -0.028738144785165787, -0.03158922120928764, -0.002189687453210354, 0.030697165057063103, 0.04190906509757042, -0.06328338384628296, -0.017018998041749, -0.010748380795121193, 0.0014113262295722961, -0.00856197252869606, -0.08374816179275513, -0.025869576260447502, 0.031781625002622604, 0.02408546768128872, -0.009226640686392784, -0.014465274289250374, -0.05114445090293884, 0.023508256301283836, 0.03566468507051468, 0.07906050235033035, -0.03276113420724869, -0.0018715651240199804, -0.03256873041391373, 0.013328341767191887, -0.00025130025460384786, 0.07563222199678421, -0.018173420801758766, 0.020499760285019875, -0.015978267416357994, 0.027356334030628204, -0.03655673936009407, -0.06132436543703079, 0.05583211034536362, 0.01803349144756794, 0.050829607993364334, -0.013503254391252995, -0.011325592175126076, 0.020202407613396645, 0.009900054894387722, -0.01023238804191351, 0.005929538048803806, 0.06772616505622864, -0.043763138353824615, 0.03613694757223129, 0.004062345717102289, 0.057056497782468796, -0.049605220556259155, 0.04432285949587822, -0.06132436543703079, 0.0576162189245224, -0.064542755484581, 0.0003413529193494469, 0.055867090821266174, 0.027024000883102417, -0.03312845155596733, -0.003063157433643937, -0.021706657484173775, -0.027058983221650124, -0.013127192854881287, -0.03402050584554672, -0.02126937545835972, -0.05691656842827797, -0.07146929949522018, 0.027933545410633087, 0.059680186212062836, 0.017709903419017792, 0.018470773473381996, -0.014955028891563416, -0.004613320343196392, -0.025904560461640358, 0.019590213894844055, 0.009952528402209282, 0.015978267416357994, -0.05261371657252312, -0.02258121967315674, -0.012278866022825241, 0.03848077729344368, -0.016389312222599983, 0.011517995968461037, -0.054048001766204834, 0.03935534134507179, 0.05166918784379959, 0.013284613378345966, -0.012471269816160202, 0.03312845155596733, 0.054432809352874756, 0.06279363483190536, 0.026726648211479187, -0.0322713777422905, -0.014972520992159843, 0.010888311080634594, 0.015296109020709991, 0.026219401508569717, 0.005531611852347851, 0.03592705354094505, 0.032883573323488235, 0.023823099210858345, 0.11061474680900574, -0.037221405655145645, 0.03545478731393814, -0.03136183321475983, -0.002831398043781519, -0.054432809352874756, 0.0016015437431633472, -0.03241131082177162, 0.0415242575109005, -0.0782209262251854, 0.024557732045650482, -0.04453275352716446, 0.08500753343105316, -0.0527886301279068, -0.012768621556460857, 0.01365193072706461, -0.025607207790017128, 0.007879814133048058, 0.012567471712827682, -0.030154936015605927, 0.023228395730257034, 0.04523240402340889, 0.015785863623023033, -0.08542732894420624, 0.0292104072868824, -0.0065023768693208694, -0.04572216048836708, -0.0007411922561004758, 0.0006712271715514362, 0.0251874178647995, -0.032883573323488235, 0.02588706836104393, 0.04432285949587822, -0.0004227966128382832, -0.041874080896377563, 0.006716644857078791, 0.019275370985269547, -0.01841829903423786, 0.031379323452711105, -0.04162920266389847, 0.03876063600182533, 0.03736133500933647, 0.06905550509691238, -0.021007006987929344, -0.000936875760089606, 0.03715144097805023, -0.07850078493356705, 0.001597170950844884, 0.017360078170895576, 0.01701025292277336, 0.04411296546459198, 0.024137942120432854, -0.00846577063202858, 0.04061471298336983, -0.03655673936009407, 0.03062720037996769, 0.03255124017596245, 0.036626704037189484, 0.03697652742266655, -0.004123565275222063, 0.020797111093997955, 0.04092955216765404, -0.033180925995111465, -0.035104963928461075, -0.030557235702872276, 0.026516754180192947, 0.04176913574337959, -0.0009461679728701711, -0.0814393162727356, -0.03083709627389908, -0.05187908560037613, -0.042153943330049515, 0.016170671209692955, -0.08213897049427032, 0.005089957267045975, 0.015444784425199032, 0.02055223286151886, -0.05541231855750084, 0.048905570060014725, 0.007586834952235222, 0.02002749592065811, 0.05751127004623413, -0.01841829903423786, 0.0006684942054562271, -0.0766816958785057, -0.06618693470954895, 0.0015392310451716185, 0.0068041011691093445, -0.04078962281346321, 0.01444778311997652, 0.032201413065195084, -0.034597717225551605, 0.019520249217748642, 0.012558726593852043, 0.04253875091671944, -0.0033386447466909885, 0.002584333997219801, -0.09235386550426483, -0.01803349144756794, 0.017491262406110764, -0.04694654792547226, -0.08710648864507675, -0.011727891862392426, 0.031081972643733025, 0.029385320842266083, 0.02256372757256031, 0.03493005037307739, -0.05723141133785248, -0.12768621742725372, -0.019520249217748642, 0.010389809496700764, 0.003170291194692254, 0.03527987748384476, 0.022301359102129936, -0.08710648864507675, -0.06457774341106415, -0.026936544105410576, 0.015278617851436138, 0.0739530548453331, -0.029350338503718376, -0.057581234723329544, -0.036416810005903244, 0.022091465070843697, -0.041349343955516815, 0.010013747960329056, 0.003948652651160955, 0.009602703154087067, 0.05397803708910942, -0.011911549605429173, 0.023123448714613914, 0.028668178245425224, -0.02798601984977722, 0.05194905027747154, -0.08283861726522446, -0.020779618993401527, 0.05793106183409691, -0.07472267001867294, 0.031991519033908844, -0.038935549557209015, 0.01613568887114525, -0.047086477279663086, 0.010573468171060085, -0.032901063561439514, -0.035997018218040466, 0.027548737823963165, 0.021321848034858704, -0.03073214739561081, -0.01278611272573471, 0.054048001766204834, -0.004267868120223284, 0.03760621324181557, 0.0251874178647995, -0.01562844216823578, 0.024802610278129578, -0.037116460502147675, 0.007425040937960148, 0.06555724889039993, -0.010013747960329056, -0.0007324466132558882, 0.0010308913188055158, -0.04803100600838661, -0.014474019408226013, 0.030749639496207237, -0.008334586396813393, 0.02527487464249134, 0.028178423643112183, 0.030067479237914085, -0.03767617791891098, 0.027566229924559593, 0.01338956132531166, -0.006366819608956575, -0.06202401593327522, -0.03869067132472992, 0.035612210631370544, -0.025764629244804382, -0.03736133500933647, 0.02457522414624691, -0.055447302758693695, -0.005452901124954224, -0.029945041984319687, 0.009541483595967293, -0.009314097464084625, 0.08892557770013809, 0.025152435526251793, 0.06534735858440399, -0.016879068687558174, 0.0026302486658096313, 0.05138932913541794, -0.05943530797958374, 0.02377062477171421, -0.06468268483877182, 0.017255131155252457, -0.020394811406731606, 0.0616392083466053, 0.016844086349010468, 0.05502751097083092, 0.04855574294924736, -0.017849832773208618, -0.0004331820528022945, -0.0035682176239788532, 0.044252894818782806, 0.00652424106374383, 0.0003085568023379892, 0.03795604035258293, 0.045267388224601746, -0.021689165383577347, -0.021286865696310997, 0.003122190246358514, 0.006843456532806158, -0.01682659424841404, 0.005562221631407738, -0.01283858623355627, -0.028930548578500748, -0.00017286287038587034, 0.05205399543046951, -0.007110198028385639, -0.09599205106496811, -0.018890563398599625, 0.05044480040669441, 0.02345578372478485, 0.020394811406731606, 0.003743130248039961, 0.017701158300042152, 0.021706657484173775, 0.016476769000291824, 0.0024400311522185802, 0.02258121967315674, -0.016354329884052277, 0.01703649014234543, -0.05579712614417076, -0.03458022698760033, -0.05919043347239494, -0.012917296960949898, -0.03256873041391373, -0.06562721729278564, -0.08850578963756561, 0.012243883684277534, 0.03785109147429466, -0.03123939409852028, 0.035699665546417236, -0.035594720393419266, 0.013477018103003502, 0.05016494169831276, -0.005159922409802675, 0.011570470407605171, -0.018663177266716957, -0.024435292929410934, -0.019415300339460373, -0.0948726087808609, 0.02427787147462368, 0.03304099291563034, 0.0415242575109005, -0.03235883638262749, 0.027356334030628204, -0.031081972643733025, -0.01592579483985901, -0.015278617851436138, 0.016380567103624344, -0.008662547916173935, -0.052019014954566956, -0.035822104662656784, -0.05919043347239494, 0.013319596648216248, 0.037326354533433914, -0.06125440075993538, 0.006296854466199875, -0.036206912249326706, 0.019502757117152214, -0.028580723330378532, 0.0215667262673378, 0.03172915056347847, 0.03270865976810455, -0.032288871705532074, -0.0009691252489574254, -0.0032336970325559378, -0.007560598198324442, 0.03676663339138031, -0.03960021957755089, 0.026866579428315163, -0.04929037764668465, -0.044672682881355286, 0.02317592315375805, 0.005907673854380846, 0.005758997984230518, 0.02859821356832981, -0.031676676124334335, -0.06121941655874252, 0.014054229483008385, -0.006699153687804937, -0.004845079500228167, 0.018593212589621544, 0.00012913471437059343, 0.004060159437358379, 0.024505259469151497, -0.004753250628709793, 0.0016365261981263757, 0.005912046879529953, -0.04264369606971741, -0.0471564419567585, -0.03185158967971802, 0.008631938137114048, -0.04785609245300293, -0.013284613378345966, 0.08976516127586365, 0.015164924785494804, -0.018575720489025116, 0.0009871631627902389, -0.005557848606258631, -0.020499760285019875, -0.0074337865225970745, 0.0328310988843441, -0.008019743487238884, -0.07122442126274109, 0.02569466456770897, 0.05723141133785248, 0.03820091858506203, -0.0348425954580307, 0.004792605992406607, 0.0146052036434412, -0.018768124282360077, 0.008627565577626228, 0.0055053746327757835, 0.009226640686392784, -0.02146177925169468, -0.019082967191934586, 0.036206912249326706, 0.021776622161269188, -0.0032380700577050447, 0.04481261596083641, 0.02779361605644226, -0.0610794872045517, -0.010765871964395046, -0.0013741572620347142, -0.001930598053149879, -0.07297354936599731, 0.04803100600838661, 0.04502250999212265, 0.00881996937096119, -0.051004521548748016, 0.043763138353824615, 0.0167391374707222, 0.040334850549697876, 0.04946529120206833, -0.014683914370834827, -0.034003015607595444, -0.01862819492816925, -0.024207906797528267, -0.0642978772521019, -0.04845079779624939, 0.004517118446528912, 0.021706657484173775, 0.004792605992406607, 0.05481761693954468, -0.0266741756349802, -0.050304871052503586, 0.03918042778968811, -0.014474019408226013, -0.01314468402415514, 0.01152674201875925, -0.007967269979417324, 0.05572716146707535, -0.03330336511135101, 0.01964268833398819, 0.044287875294685364, -0.03760621324181557, -0.001961207715794444, -0.01966017857193947, 0.021601708605885506, -0.01572464406490326, 0.032778624445199966, -0.012969771400094032, -0.0069921319372951984, 0.007394431158900261, 0.028335845097899437, 0.027636194601655006, -0.03795604035258293, 0.008758749812841415, 0.010704652406275272, -0.049710169434547424, -0.004259122535586357, -0.04470766708254814, -0.028685670346021652, 0.0016004504868760705, 0.028370827436447144, -0.0015217398758977652, 0.003323339857161045, 0.014867573045194149, -0.02116442658007145, -0.003725638845935464, -0.011806601658463478, -0.060799628496170044, -0.03374064341187477, 0.011063223704695702, -0.03562970086932182, 0.004458085633814335, -0.05432786047458649, -0.024102959781885147, 0.027653686702251434, -0.011692908592522144, -0.01813843846321106, -0.014517747797071934, -0.02991005778312683, -0.01945028454065323, 0.012751130387187004, 0.039530251175165176, -0.014937537722289562, 0.07465270906686783, -0.03746628388762474, -0.024662679061293602, 0.027548737823963165, -0.004993755370378494, -0.050025008618831635, -0.037326354533433914, 0.0814393162727356, 0.006519868038594723, 0.029367828741669655, -0.006703526247292757, 0.036731649190187454, -0.025152435526251793, 0.05229887366294861 ]
9,429
asyncclick.types
__init__
null
def __init__( self, min: t.Optional[float] = None, max: t.Optional[float] = None, min_open: bool = False, max_open: bool = False, clamp: bool = False, ) -> None: super().__init__( min=min, max=max, min_open=min_open, max_open=max_open, clamp=clamp ) if (min_open or max_open) and clamp: raise TypeError("Clamping is not supported for open bounds.")
(self, min: Optional[float] = None, max: Optional[float] = None, min_open: bool = False, max_open: bool = False, clamp: bool = False) -> NoneType
[ 0.03807292506098747, -0.034693263471126556, 0.003677106462419033, 0.009337177500128746, -0.05445393919944763, -0.0016909085679799318, -0.02629583701491356, -0.015398153103888035, -0.0701107382774353, -0.042383719235658646, 0.005401423666626215, 0.04700488969683647, 0.005233302712440491, 0.0011833127355203032, -0.009716527536511421, 0.04272858053445816, 0.028278803452849388, -0.039866212755441666, 0.03158949315547943, 0.051281195133924484, 0.039348918944597244, 0.005237613804638386, -0.02929615043103695, 0.025519894436001778, -0.009018179029226303, 0.09483744949102402, -0.018501924350857735, 0.04424598067998886, -0.011906410567462444, -0.06186850368976593, -0.048591259866952896, 0.027623562142252922, 0.06300655007362366, 0.009587204083800316, 0.018519166857004166, -0.05241924524307251, 0.027933938428759575, 0.043797656893730164, -0.13801434636116028, 0.022105747833848, -0.018329491838812828, -0.06328244507312775, -0.02755459025502205, 0.004944479558616877, 0.028278803452849388, -0.004254752770066261, 0.02108839899301529, 0.01267373189330101, 0.025640597566962242, 0.0051557086408138275, 0.026451027020812035, -0.01591544784605503, 0.010699388571083546, -0.011009765788912773, -0.09973450750112534, 0.1023554727435112, 0.03924546018242836, 0.09518231451511383, 0.00434959027916193, -0.02458876371383667, -0.05817846208810806, 0.014285968616604805, 0.01192365400493145, -0.09152676165103912, -0.0023342943750321865, -0.0008939506951719522, -0.06514470279216766, -0.014501508325338364, -0.007427496369928122, 0.06762772053480148, 0.021967802196741104, 0.03869367763400078, -0.004871196113526821, 0.020812509581446648, 0.013673835434019566, -0.011104603298008442, -0.0211228858679533, 0.049763794988393784, 0.01141498051583767, -0.07642173767089844, 0.0238473080098629, 0.01587234064936638, -0.004401319660246372, 0.011242548003792763, -0.03250338137149811, -0.03807292506098747, -0.023261040449142456, 0.011656384915113449, 0.07380077987909317, 0.019915863871574402, -0.08373284339904785, 0.07035214453935623, -0.016268933191895485, -0.001834242488257587, 0.045108139514923096, 0.04941893368959427, -0.01713109202682972, -0.00657395925372839, -0.022967904806137085, 0.02338174171745777, -0.0058885435573756695, 0.005625585094094276, -0.06524816155433655, 0.04221128672361374, 0.006289447192102671, -0.026261352002620697, -0.0051513975486159325, -0.017346631735563278, -0.04214231297373772, -0.000298522412776947, -0.019726188853383064, 0.0008939506951719522, -0.030416956171393394, 0.05069492757320404, -0.051557086408138275, 0.06379973888397217, -0.017070740461349487, 0.005862678401172161, 0.05021211877465248, -0.005280721466988325, 0.006621378008276224, 0.023692118003964424, 0.0024097333662211895, -0.015320559032261372, 0.03552093356847763, 0.04165950417518616, -0.011277034878730774, 0.04345279559493065, -0.019553758203983307, -0.032417163252830505, 0.03807292506098747, -0.04165950417518616, -0.00752233387902379, 0.04945341870188713, -0.020984940230846405, 0.002858055755496025, -0.019226137548685074, 0.08283620327711105, -0.04221128672361374, 0.018674355000257492, -0.021433264017105103, -0.005009141750633717, 0.0006067441427148879, 0.012354733422398567, -0.018053600564599037, 0.028744367882609367, 0.014553237706422806, -0.0014117847895249724, 0.016743119806051254, 0.035382989794015884, -0.03803844004869461, -0.02164018154144287, -0.014104914851486683, -0.009630312211811543, 0.0111649539321661, -0.0290719885379076, 0.00794048048555851, -0.05945445969700813, 0.053039997816085815, 0.05638517439365387, -0.0367969311773777, 0.015277450904250145, -0.001527098473161459, -0.027623562142252922, -0.022174719721078873, -0.00859141070395708, -0.03007209300994873, -0.0844915434718132, 0.019795162603259087, 0.04276306927204132, 0.051039788872003555, -0.04600478336215019, 0.04952239245176315, 0.011733978986740112, 0.0039034232031553984, 0.00307144015096128, 0.011328764259815216, -0.021191859617829323, -0.04169398918747902, -0.013846267014741898, 0.03845227509737015, -0.0004359289596322924, -0.006125636864453554, -0.021002184599637985, -0.001007109065540135, 0.014320454560220242, -0.027485616505146027, -0.01712246984243393, -0.02712351083755493, -0.012018491514027119, -0.029882417991757393, -0.010035526007413864, -0.002396801020950079, -0.05066043883562088, -0.019277866929769516, -0.012837542220950127, 0.004121118225157261, -0.015251586213707924, 0.024295629933476448, 0.009949310682713985, -0.04693591594696045, 0.052488215267658234, 0.06093737110495567, -0.007897373288869858, 0.00136544369161129, 0.012725461274385452, 0.030658360570669174, 0.00508673582226038, 0.019536513835191727, -0.015096397139132023, -0.04952239245176315, -0.02903750166296959, -0.0367969311773777, -0.009914823807775974, 0.012234031222760677, 0.0023709360975772142, 0.0022060484625399113, -0.018691599369049072, -0.013078946620225906, 0.03727973997592926, 0.0814567431807518, -0.051315680146217346, 0.012699596583843231, -0.01156154740601778, 0.03703833371400833, 0.04497019201517105, 0.0023256728891283274, -0.056005824357271194, 0.015208478085696697, 0.01552747655659914, 0.004297860898077488, -0.034882936626672745, -0.05807500332593918, -0.03727973997592926, -0.08435359597206116, 0.05559198930859566, 0.007776670623570681, -0.019295109435915947, -0.050522495061159134, -0.04793601855635643, 0.0035952015314251184, 0.017984628677368164, -0.03545196354389191, 0.05790257453918457, 0.02910647541284561, -0.04838434234261513, -0.03969378396868706, 0.0176397655159235, 0.009069908410310745, 0.02957203984260559, -0.04393560439348221, -0.022519582882523537, -0.05135016888380051, 0.01278581190854311, 0.030692847445607185, 0.040866319090127945, -0.06869679689407349, -0.04741872474551201, -0.024485304951667786, -0.004205178469419479, -0.018501924350857735, -0.04786704480648041, -0.02115737274289131, 0.05307448282837868, 0.006483432836830616, -0.008854368701577187, -0.01712246984243393, -0.042107827961444855, -0.02433011680841446, 0.02603719010949135, 0.08311209082603455, 0.02736491523683071, 0.02534746378660202, -0.029158204793930054, 0.03579682484269142, 0.003431391203776002, 0.049074068665504456, -0.0457288920879364, 0.041349127888679504, -0.033951807767152786, 0.036624498665332794, 0.003140412736684084, -0.01841570809483528, 0.023950766772031784, 0.024278387427330017, -0.028951287269592285, -0.006983484607189894, -0.03334829583764076, -0.004957411903887987, -0.03284824267029762, -0.037176281213760376, 0.026692431420087814, 0.060454562306404114, 0.02510605938732624, 0.08849196135997772, -0.02931339293718338, 0.07787016779184341, 0.011363250203430653, 0.010337281972169876, -0.07345591485500336, 0.0735938623547554, -0.09518231451511383, -0.0007516945479437709, 0.01219092309474945, 0.03033073991537094, -0.05321243032813072, -0.02188158594071865, 0.016277555376291275, 0.017070740461349487, 0.03108943998813629, 0.019484784454107285, 0.005694557446986437, -0.024692222476005554, -0.05121222138404846, 0.03496915474534035, 0.03855573385953903, 0.054040100425481796, 0.004534954205155373, -0.009699284099042416, 0.03596925735473633, -0.007712008897215128, -0.020002080127596855, -0.01291513629257679, -0.022174719721078873, -0.07059355080127716, -0.034658774733543396, 0.026657944545149803, -0.003198608523234725, -0.019915863871574402, 0.025037085637450218, -0.06086839735507965, 0.01839846558868885, 0.041349127888679504, -0.03152051940560341, -0.01378591638058424, 0.03369315713644028, 0.031882625073194504, 0.03627963364124298, 0.020002080127596855, -0.027261454612016678, 0.031865380704402924, 0.010794226080179214, 0.007694765459746122, 0.03800395131111145, 0.0009111938998103142, 0.005966137629002333, 0.013130676001310349, -0.04445289820432663, 0.03164122253656387, -0.03772806003689766, -0.005349694285541773, 0.00843622162938118, 0.0054186671040952206, -0.039866212755441666, 0.011708114296197891, -0.013535890728235245, 0.034124236553907394, -0.05021211877465248, 0.025019843131303787, -0.03302067518234253, 0.03077906183898449, -0.008134466595947742, -0.022002287209033966, -0.003362418618053198, -0.01912267878651619, 0.007677522487938404, 0.009078530594706535, -0.04272858053445816, 0.005073803476989269, 0.029434096068143845, -0.013432431034743786, -0.06969690322875977, -0.028951287269592285, -0.005884232465177774, -0.032141271978616714, 0.011656384915113449, -0.028209829702973366, 0.007298172917217016, -0.029882417991757393, -0.007332658860832453, 0.013553133234381676, -0.007155916653573513, 0.0021058223210275173, -0.005121222231537104, -0.044832248240709305, -0.021933315321803093, 0.011880545876920223, -0.009173368103802204, 0.04493570700287819, 0.01402732077986002, 0.05241924524307251, -0.04593580961227417, 0.0011703802738338709, -0.007177470717579126, -0.06590340286493301, 0.020502131432294846, 0.06611032038927078, 0.02314033731818199, 0.02933063544332981, -0.004388387314975262, 0.005664382129907608, 0.00028774543898180127, 0.02262304164469242, 0.021657424047589302, 0.0520743802189827, 0.013553133234381676, 0.07104186713695526, 0.007565442007035017, 0.04962585121393204, 0.05293653905391693, -0.023036878556013107, 0.0021025892347097397, -0.0037008158396929502, 0.03721076622605324, -0.004733250942081213, -0.053281404078006744, -0.04390111565589905, 0.0005846513085998595, -0.025502651929855347, -0.048556774854660034, -0.0025778543204069138, -0.031123926863074303, 0.013251378200948238, 0.010182092897593975, 0.011277034878730774, -0.05917856842279434, 0.043349336832761765, -0.009035422466695309, 0.01764838770031929, 0.0012167213717475533, -0.014725669287145138, 0.0161223653703928, -0.04445289820432663, -0.03855573385953903, -0.004733250942081213, -0.006392905954271555, -0.03222749009728432, 0.006535162217915058, -0.0035952015314251184, -0.040831830352544785, 0.08504332602024078, -0.025813028216362, 0.0769045501947403, 0.021036669611930847, -0.0030671292915940285, -0.023519687354564667, -0.03621066361665726, 0.008906098082661629, -0.01686382293701172, -0.04569440707564354, 0.012449570000171661, 0.04697040095925331, -0.0025390570517629385, 0.03381386026740074, 0.0072679971344769, -0.07311104983091354, -0.15905101597309113, -0.0032718919683247805, -0.015596449375152588, -0.0511777363717556, -0.008992314338684082, 0.021933315321803093, -0.04959136247634888, -0.070559062063694, -0.04152156040072441, 0.07166262716054916, 0.03872816637158394, -0.03450358659029007, -0.045866839587688446, -0.03350348398089409, 0.04524608328938484, -0.03522780165076256, 0.01614823006093502, -0.050556980073451996, 0.016475850716233253, 0.01812257431447506, -0.003955152817070484, 0.03703833371400833, 0.04924650117754936, -0.004353900905698538, 0.025278490036725998, -0.0030412646010518074, -0.005030695348978043, 0.0273304283618927, -0.030744576826691628, 0.012613380327820778, -0.07262824475765228, -0.021209102123975754, -0.05145362764596939, 0.06369628012180328, -0.03327932208776474, 0.01708798296749592, -0.018933003768324852, 0.020502131432294846, -0.04369419813156128, 0.015242964029312134, 0.04762564226984978, -0.017588036134839058, 0.053315889090299606, 0.00615581264719367, -0.0487636923789978, -0.001314791850745678, -0.03755563125014305, 0.005108289886265993, 0.03034798428416252, -0.02486465498805046, -0.07076597958803177, 0.001824543229304254, -0.0392109751701355, -0.0060006240382790565, 0.03917648643255234, -0.01736387424170971, 0.02007105201482773, 0.05583339184522629, 0.037107307463884354, -0.033865589648485184, -0.01889851689338684, 0.033175863325595856, 0.007785292342305183, -0.06952447444200516, -0.000861080945469439, 0.06790361553430557, 0.008483640849590302, -0.03855573385953903, 0.0013201803667470813, -0.055247124284505844, 0.062006447464227676, -0.04231474548578262, 0.0009618456824682653, -0.017950141802430153, 0.0672483742237091, -0.028227074071764946, -0.0019215360516682267, 0.04924650117754936, -0.013932483270764351, 0.07655968517065048, -0.01982964761555195, 0.024933626875281334, -0.011483952403068542, 0.02531297691166401, -0.006349798291921616, 0.07311104983091354, 0.08049112558364868, 0.018536411225795746, -0.0022459232714027166, 0.0037051266990602016, -0.015208478085696697, 0.056281715631484985, 0.02381282113492489, 0.019760675728321075, 0.013656592927873135, 0.024537034332752228, 0.028692638501524925, -0.02214023284614086, -0.018329491838812828, 0.00011524635920068249, 0.004862574394792318, -0.03700384870171547, 0.014277346432209015, 0.040107619017362595, -0.005547990556806326, 0.038107410073280334, 0.05424702167510986, 0.0033969050273299217, -0.09014730155467987, -0.036107201129198074, 0.03579682484269142, 0.054764315485954285, 0.029227176681160927, 0.05779911205172539, 0.0042245774529874325, 0.009656176902353764, -0.02610616385936737, 0.01501880306750536, 0.005517815239727497, 0.011759843677282333, 0.025744056329131126, 0.004207334015518427, -0.09090600162744522, -0.01889851689338684, 0.012949622236192226, -0.0036577079445123672, -0.04300447180867195, -0.09118189662694931, 0.020036567002534866, 0.035658881068229675, -0.05507469177246094, 0.007341280579566956, -0.034917425364255905, -0.02857193723320961, 0.04797050729393959, 0.0313480868935585, -0.007673211861401796, -0.0037460792809724808, -0.015837853774428368, 0.018570896238088608, -0.05262616276741028, -0.04924650117754936, 0.04100426286458969, 0.025675084441900253, -0.030485928058624268, 0.027485616505146027, -0.08731942623853683, 0.02753734588623047, -0.011871924623847008, -0.010949414223432541, 0.008595721796154976, -0.028623666614294052, -0.06210990622639656, -0.02677864581346512, 0.015777502208948135, 0.0285374503582716, -0.03996967524290085, -0.01663103885948658, -0.036865901201963425, -0.026675187051296234, -0.050281088799238205, 0.020415915176272392, 0.07076597958803177, 0.018967488780617714, -0.005905786529183388, -0.016837958246469498, -0.01714833453297615, 0.009535474702715874, -0.01330310758203268, -0.040866319090127945, 0.024968113750219345, -0.02755459025502205, -0.02929615043103695, 0.023743849247694016, 0.0723523497581482, 0.029468581080436707, 0.012087463401257992, -0.036417581140995026, -0.05035006254911423, -0.00015761336544528604, 0.021260831505060196, 0.002771839965134859, 0.05414356291294098, 0.03102046623826027, -0.04752218350768089, 0.0038603153079748154, 0.06914512068033218, 0.004763426259160042, -0.02952031046152115, -0.017260415479540825, -0.045556459575891495, 0.019708946347236633, 0.0011962450807914138, -0.07593893259763718, -0.009069908410310745, 0.05338486284017563, -0.0025735434610396624, -0.019036462530493736, -0.005556612275540829, 0.004931547213345766, -0.007030903361737728, -0.0457288920879364, 0.07338694483041763, 0.00954409595578909, -0.05821295082569122, 0.011251170188188553, 0.069489985704422, 0.011544303968548775, -0.004405630752444267, -0.02108839899301529, 0.009035422466695309, -0.04866023361682892, 0.002483016811311245, 0.032434407621622086, -0.009250962175428867, -0.030658360570669174, -0.02307136543095112, 0.028382262215018272, -0.0025886313524097204, 0.005168640986084938, 0.028227074071764946, 0.011147710494697094, -0.02038143016397953, -0.01553609874099493, 0.041383612900972366, 0.006746391300112009, -0.07076597958803177, -0.005470396485179663, 0.05462637171149254, 0.020191755145788193, -0.0561782568693161, 0.0005337300826795399, 0.023795578628778458, 0.06576546281576157, 0.07380077987909317, -0.03655552491545677, -0.0033214660361409187, 0.013259999454021454, 0.006767945364117622, -0.05062595382332802, -0.07559406757354736, -0.003946531098335981, 0.015941312536597252, 0.009794121608138084, 0.05841986835002899, 0.008156020194292068, -0.09283723682165146, 0.05831640958786011, -0.03526228666305542, -0.02779599465429783, -0.008906098082661629, 0.0009456802508793771, 0.06352384388446808, -0.02184709906578064, 0.049039583653211594, 0.05110876262187958, 0.016760364174842834, -0.0402800515294075, 0.00313825742341578, -0.009906202554702759, 0.019536513835191727, 0.01713109202682972, 0.0019808094948530197, -0.012458192184567451, 0.014846371486783028, 0.02657172828912735, -0.013889375142753124, -0.027416644617915154, 0.03927994519472122, 0.016294797882437706, -0.016501715406775475, -0.043866630643606186, -0.003985328134149313, -0.018829545006155968, 0.010751117952167988, 0.041831936687231064, -0.03427942842245102, -0.00689295819029212, 0.029123717918992043, -0.017596658319234848, -0.005112600512802601, 0.024950871244072914, 0.0017286280635744333, 0.0015755948843434453, 0.03448634594678879, -0.04476327449083328, 0.03872816637158394, -0.013889375142753124, -0.009371664375066757, 0.01663103885948658, -0.013742808252573013, -0.002192038344219327, -0.011733978986740112, 0.02084699459373951, 0.021036669611930847, 0.02036418579518795, 0.06131672114133835, 0.01610512286424637, 0.06190298870205879, -0.04597029834985733, -0.04924650117754936, 0.022674771025776863, 0.021950557827949524, -0.016260311007499695, -0.013742808252573013, 0.05459188297390938, 0.007160227280110121, 0.013466917909681797, -0.025416435673832893, 0.07373180240392685, -0.003207230009138584, 0.020950455218553543 ]
9,430
asyncclick.types
__repr__
null
def __repr__(self) -> str: clamp = " clamped" if self.clamp else "" return f"<{type(self).__name__} {self._describe_range()}{clamp}>"
(self) -> str
[ 0.03819333761930466, -0.018561091274023056, 0.014669789932668209, -0.013807845301926136, 0.022762024775147438, -0.014786947518587112, 0.01207558810710907, -0.07698919624090195, 0.0007547242566943169, -0.04214321821928024, -0.006552450358867645, 0.006724002305418253, 0.014150949195027351, 0.008322364650666714, -0.006677976343780756, 0.03601755574345589, 0.023732757195830345, -0.11046276241540909, 0.025942012667655945, 0.034745559096336365, 0.049875613301992416, 0.017958568409085274, 0.015933416783809662, -0.010493963025510311, 0.0009424900636076927, 0.03939838707447052, -0.01098769810050726, 0.01057764608412981, -0.04006785899400711, -0.027230745181441307, -0.07893066853284836, -0.032636724412441254, 0.037523865699768066, -0.028670107945799828, -0.014845525845885277, -0.015364366583526134, -0.0027511087246239185, -0.0011516998056322336, -0.0629972517490387, -0.01098769810050726, 0.019464878365397453, -0.023900125175714493, -0.050042979419231415, -0.031063469126820564, -0.03862849250435829, -0.04887140542268753, 0.06276293098926544, 0.005067060701549053, 0.0015125867212191224, -0.04796762019395828, 0.041205957531929016, 0.04840277507901192, -0.01976614072918892, 0.004073314368724823, -0.0844203308224678, 0.03809291869401932, 0.04522278532385826, 0.04599267989397049, 0.027414849027991295, 0.028017373755574226, -0.07504773139953613, 0.03357398509979248, 0.02554032951593399, -0.05844484269618988, 0.004165366757661104, 0.0031841727904975414, -0.03635229170322418, 0.016535941511392593, 0.0038055258337408304, 0.04378342255949974, 0.016092415899038315, 0.003728118259459734, -0.007339078933000565, 0.02395033650100231, -0.034812506288290024, -0.04174153506755829, -0.03447777032852173, 0.05700547993183136, 0.04388384521007538, -0.07578415423631668, 0.04977519065141678, 0.04542362689971924, 0.01615099422633648, -0.05278781056404114, -0.0011611143127083778, -0.08120686560869217, -0.052151814103126526, -0.01904645934700966, 0.019381193444132805, -0.0010256509995087981, -0.03551545366644859, 0.04836929962038994, -0.024971280246973038, 0.02411770261824131, -0.023682547733187675, 0.022946128621697426, -0.02997557818889618, -0.02051929570734501, 0.027481796219944954, 0.007242842577397823, 0.004203024320304394, 0.040569961071014404, -0.0484362468123436, 0.020050665363669395, -0.036954816430807114, -0.031130414456129074, -0.04224363714456558, 0.017305832356214523, -0.03154883533716202, 0.004117248579859734, -0.0003360432165209204, 0.03929796442389488, 0.014494054019451141, -0.02398381009697914, -0.0006407049368135631, 0.07089701294898987, -0.05774189904332161, 0.011757589876651764, 0.06313114613294601, -0.022795498371124268, 0.025690961629152298, -0.033891983330249786, -0.02197539620101452, -0.01981635019183159, -0.06313114613294601, 0.0755833089351654, -0.042611848562955856, 0.06185914948582649, -0.020301716402173042, -0.05556611716747284, 0.03303840756416321, -0.031247572973370552, -0.030494417995214462, 0.0341932475566864, 0.0688885971903801, -0.017188675701618195, -0.010711540468037128, 0.06058715283870697, 0.010167594999074936, 0.11521600931882858, -0.006171688437461853, -0.017339305952191353, 0.006941580679267645, 0.03056136518716812, -0.0032343831844627857, 0.0011663445038720965, 0.016561046242713928, 0.09774281084537506, 0.03946533426642418, -0.004707220010459423, -0.012008641846477985, 0.03672049939632416, 0.05834442377090454, -0.011657169088721275, 0.04147374629974365, 0.028670107945799828, 0.0018117567524313927, -0.07879677414894104, 0.06744923442602158, -0.02053603157401085, -0.051549289375543594, -0.025004753842949867, 0.013422899879515171, -0.011807800270617008, -0.015372734516859055, 0.0035544740967452526, -0.014393633231520653, -0.046528253704309464, 0.012167640961706638, 0.05452843755483627, 0.02552359364926815, -0.07839509099721909, -0.0167702566832304, 0.054428014904260635, -0.009155020117759705, 0.04585878551006317, -0.017724253237247467, 0.09272177517414093, -0.0466286763548851, -0.01496268343180418, 0.02620980143547058, -0.024619806557893753, -0.03822680935263634, -0.025289278477430344, 0.022259920835494995, -0.057373691350221634, 0.006636134348809719, -0.014527527615427971, -0.029557157307863235, -0.0240507572889328, -0.004031472373753786, -0.0054687438532710075, -0.017255622893571854, -0.022126026451587677, -0.032452620565891266, -0.03225177899003029, -0.015473155304789543, -0.03929796442389488, 0.04676257073879242, -0.039800070226192474, -0.018376987427473068, 0.07806035131216049, -0.0031590675935149193, 0.02252770960330963, 0.015749312937259674, -0.0013222057605162263, 0.0030021604616194963, 0.006431108806282282, 0.00914665125310421, -0.027515269815921783, -0.025975486263632774, -0.013715793378651142, -0.030109470710158348, -0.008652916178107262, 0.012937532737851143, 0.017222149297595024, -0.019197089597582817, 0.0002460830146446824, -0.04759940877556801, 0.052319180220365524, 0.060218941420316696, -0.09057946503162384, 0.02708011493086815, -0.04354910925030708, -0.00836002267897129, 0.0031276862137019634, 0.005016850307583809, -0.04599267989397049, 0.02557380311191082, 0.02053603157401085, 0.03852807357907295, -0.026460852473974228, -0.02398381009697914, 0.0012332916958257556, -0.04311395063996315, 0.0994834378361702, -0.04887140542268753, 0.014837157912552357, -0.025875065475702286, -0.003173712408170104, -0.03655313327908516, 0.04980866611003876, 0.013682319782674313, 0.037490393966436386, 0.07939929515123367, -0.06915638595819473, -0.0012950085802003741, 0.05496359243988991, -0.01832677610218525, 0.03282083198428154, -0.03226851671934128, -0.04686298966407776, -0.05817705765366554, -0.008519022725522518, 0.04110553860664368, 0.01636020466685295, -0.07518162578344345, -0.012544218450784683, 0.009196861647069454, 0.03062831237912178, -0.016276521608233452, -0.053055599331855774, -0.040536485612392426, 0.028737055137753487, 0.04187542945146561, 0.010360068641602993, -0.0484362468123436, -0.004949903581291437, 0.009339124895632267, 0.026762114837765694, 0.03188357129693031, 0.019431404769420624, -0.04964129626750946, 0.004064945969730616, 0.007987629622220993, 0.0027908585034310818, 0.05921473726630211, -0.027983900159597397, -0.0056905061937868595, -0.044185105711221695, 0.028804002329707146, 0.009648755192756653, -0.026544537395238876, 0.008828653022646904, 0.028168004006147385, -0.017339305952191353, 0.016828835010528564, -0.023264126852154732, 0.013556793332099915, -0.0031653440091758966, 0.011690642684698105, 0.018795406445860863, 0.02123897708952427, -0.0021182489581406116, 0.11434569954872131, -0.020653190091252327, 0.10785182565450668, -0.007217737380415201, -0.01168227382004261, -0.038293756544589996, 0.012276429682970047, -0.07417742162942886, 0.037557341158390045, 0.04264532029628754, -0.029373053461313248, -0.03574976697564125, -0.022393815219402313, 0.02709685079753399, 0.02697969414293766, -0.007414394523948431, -0.03427692875266075, -0.0035774873103946447, 0.04893835261464119, 0.0001280102296732366, 0.06908943504095078, 0.060854941606521606, 0.009506492875516415, 0.01582462713122368, -0.0024247413966804743, 0.0494069829583168, -0.018427196890115738, 0.013958476483821869, -0.01901298575103283, 0.012945901602506638, -0.021657396107912064, -0.0585787370800972, -0.043448686599731445, 0.020335189998149872, 0.01984982378780842, -0.012971006333827972, -0.028937896713614464, -0.019983718171715736, 0.03200072795152664, 0.004874587990343571, 0.013799477368593216, 0.001656941487453878, 0.08187633752822876, 0.05643643066287041, -0.02475370094180107, -0.03782512992620468, 0.07022754102945328, 0.011004434898495674, -0.0001210147820529528, 0.024971280246973038, 0.02999231405556202, 0.04739856719970703, -0.010435383766889572, 0.011255485936999321, 0.028117794543504715, 0.004041932988911867, -0.028218215331435204, -0.0121090617030859, 0.007234474178403616, -0.011916588991880417, -0.008569232188165188, -0.01199190504848957, 0.03601755574345589, -0.013397794216871262, -0.024586332961916924, 0.051415394991636276, 0.029724525287747383, -0.028101056814193726, 0.004937350749969482, 0.01128059159964323, -0.02477043867111206, 0.007657078094780445, 0.008627811446785927, -0.02415117621421814, 0.061658307909965515, 0.014084002003073692, -0.056603796780109406, -0.0024770437739789486, -0.02200886979699135, -0.05780884623527527, -0.06313114613294601, 0.02269507758319378, -0.03574976697564125, 0.020803820341825485, -0.04180848225951195, -0.05975031480193138, 0.024971280246973038, 0.003449869342148304, 0.005778374150395393, 0.02483738586306572, -0.03996743634343147, 0.006728186737746, 0.02562401443719864, -0.019515087828040123, 0.0006056622951291502, 0.0333731435239315, 0.011146697215735912, -0.025891803205013275, -0.014519158750772476, 0.028084320947527885, -0.07859592884778976, -0.016728414222598076, 0.024569597095251083, -0.0001809664536267519, 0.0028075953014194965, 0.019130142405629158, 0.009489756077528, 0.015941785648465157, 0.0008561910362914205, 0.009958385489881039, 0.006037794053554535, 0.017238885164260864, 0.08388475328683853, 0.03069525957107544, 0.03352377563714981, 0.022092552855610847, -0.03384177386760712, -0.02344823256134987, -0.04689646512269974, -0.015941785648465157, 0.061022307723760605, -0.038327232003211975, -0.04873751103878021, -0.029674315825104713, -0.022209709510207176, -0.020887505263090134, -0.030494417995214462, -0.03422671929001808, 0.04371647536754608, 0.035314612090587616, -0.030896101146936417, 0.0013546333648264408, 0.01502963062375784, 0.028335371986031532, 0.009606912732124329, 0.019230563193559647, -0.024636544287204742, 0.018577829003334045, -0.011004434898495674, -0.05934863165020943, 0.03415977209806442, -0.05998462811112404, -0.016075680032372475, -0.029691051691770554, 0.005573348607867956, -0.0010549402795732021, 0.08977609872817993, -0.036954816430807114, 0.061089254915714264, 0.004514747299253941, -0.0034122115466743708, 0.009724070318043232, -0.07350794970989227, -0.013381057418882847, -0.01025127898901701, -0.04773330315947533, 0.044954996556043625, 0.06149093806743622, -0.01825982891023159, 0.0014853894244879484, 0.04140679910778999, -0.05707242712378502, -0.08749990165233612, -0.03154883533716202, -0.007406026124954224, -0.02704664133489132, -0.009046230465173721, 0.0453232079744339, -0.026008959859609604, 0.021389607340097427, -0.006397635210305452, 0.02415117621421814, 0.03414303436875343, -0.039733123034238815, -0.08107297122478485, -0.033255986869335175, 0.022226447239518166, -0.028101056814193726, 0.012669743970036507, -0.024519385769963264, -0.005556611809879541, 0.03822680935263634, -0.01743972674012184, 0.0510471872985363, 0.036218397319316864, -0.0036674474831670523, -0.015464787371456623, -0.07404352724552155, -0.028050847351551056, 0.04830235242843628, -0.04431900009512901, 0.04672909528017044, -0.024519385769963264, 0.04508889093995094, -0.03377482667565346, 0.02853621356189251, -0.009732439182698727, 0.03879586234688759, -0.0597168393433094, -0.01976614072918892, -0.007401842158287764, -0.004740693606436253, 0.04331479221582413, -0.03946533426642418, -0.0026109381578862667, 0.010870540514588356, -0.020284980535507202, -0.010343331843614578, 0.003809710033237934, -0.025138646364212036, 0.05322296917438507, 0.0031025810167193413, 0.023197179660201073, 0.035481978207826614, -0.03859502077102661, -0.05643643066287041, 0.05392591282725334, -0.058679159730672836, 0.018577829003334045, 0.02336454764008522, -0.018427196890115738, -0.05643643066287041, 0.0019697099924087524, 0.03708871081471443, 0.010443752631545067, -0.027465060353279114, -0.01889582723379135, 0.018694985657930374, -0.049373507499694824, -0.028101056814193726, -0.020820558071136475, -0.004677930846810341, 0.05091329291462898, -0.03270367160439491, -0.04217668995261192, 0.042745742946863174, 0.036954816430807114, -0.005209323484450579, 0.04749898985028267, 0.014904105104506016, -0.03126430884003639, 0.10805267095565796, -0.08087213337421417, 0.01018433179706335, 0.026845799759030342, 0.03722260519862175, 0.011389380320906639, -0.011305696330964565, 0.05536527559161186, -0.019197089597582817, -0.013807845301926136, -0.020971188321709633, 0.02915547415614128, 0.05017687380313873, 0.04699688404798508, 0.007418578956276178, 0.017925094813108444, -0.0008561910362914205, 0.0034289483446627855, -0.052955180406570435, 0.0019132234156131744, 0.04649478197097778, -0.0014383172383531928, -0.006364161614328623, 0.021406345069408417, 0.03161578252911568, -0.019983718171715736, 0.028787266463041306, 0.09606913477182388, -0.024619806557893753, -0.025841591879725456, 0.04572489112615585, 0.011339169926941395, 0.020017191767692566, -0.0048955087549984455, -0.029055055230855942, 0.01969919353723526, 0.0030314496252685785, 0.01825982891023159, -0.0074478681199252605, -0.030226629227399826, 0.0319003090262413, 0.03138146549463272, -0.01682046614587307, -0.028686845675110817, 0.0203686635941267, -0.03929796442389488, 0.020251506939530373, -0.023816442117094994, -0.10992718487977982, 0.003703013062477112, 0.05054508149623871, -0.0541602298617363, 0.004665378015488386, 0.00585787370800972, -0.028670107945799828, 0.02488759532570839, 0.005075429100543261, -0.01707988604903221, -0.01135590672492981, 0.0554656982421875, -0.037590812891721725, -0.028335371986031532, -0.03126430884003639, -0.011205275543034077, 0.049273088574409485, 0.012887322343885899, 0.05687158554792404, -0.04003438353538513, 0.08984304964542389, 0.020803820341825485, -0.004140261560678482, 0.035415031015872955, -0.02331433817744255, -0.07016059011220932, -0.005284639075398445, -0.02980821020901203, 0.04257837310433388, -0.022828971967101097, -0.0451558381319046, -0.018109198659658432, -0.04462026059627533, -0.026126116514205933, -0.008937441743910313, 0.003338988171890378, 0.028904423117637634, 0.010945855639874935, 0.02850273996591568, -0.041205957531929016, 0.01131406519562006, 0.0010575554333627224, -0.023766230791807175, 0.008954178541898727, -0.038394179195165634, 0.021406345069408417, -0.017238885164260864, 0.03738997131586075, 0.03789207711815834, 0.01021780539304018, -0.08120686560869217, -0.08990999311208725, 0.03230198845267296, -0.00474906200543046, 0.034845981746912, -0.015397840179502964, 0.012527481652796268, 0.003215554403141141, -0.00984959676861763, -0.01056927815079689, 0.007987629622220993, -0.012468903325498104, 0.012761796824634075, -0.011598589830100536, -0.007975077256560326, -0.007652893662452698, -0.05315602198243141, -0.03183336183428764, 0.01976614072918892, 0.02697969414293766, -0.00042914156801998615, -0.025222331285476685, 0.013682319782674313, -0.03215136006474495, 0.001229107496328652, -0.022360341623425484, -0.005636111367493868, -0.047030359506607056, -0.024519385769963264, 0.026477590203285217, -0.02766590192914009, 0.036988288164138794, 0.00618005683645606, -0.012485640123486519, 0.0019895851146429777, 0.015113314613699913, -0.015339260920882225, -0.004284616094082594, -0.006816054694354534, -0.033908721059560776, -0.007339078933000565, -0.05031076818704605, 0.00009250995208276436, 0.02197539620101452, 0.030126208439469337, -0.018544355407357216, -0.04830235242843628, 0.03144841268658638, -0.03384177386760712, -0.08234497159719467, -0.030243365094065666, 0.04980866611003876, 0.02835210971534252, -0.0552983283996582, -0.01168227382004261, 0.01762383244931698, 0.025205593556165695, -0.0011841274099424481, -0.03574976697564125, -0.02997557818889618, -0.0029080158565193415, 0.06949111819267273, -0.02701316773891449, -0.011916588991880417, -0.040536485612392426, 0.03410956263542175, -0.02040213719010353, 0.06862080842256546, 0.009314019232988358, -0.027967164292931557, 0.030812416225671768, 0.01061111968010664, -0.004652825649827719, 0.05031076818704605, -0.0004309721407480538, 0.03005926124751568, -0.011615326628088951, 0.05031076818704605, 0.14032118022441864, -0.0005967709003016353, -0.03369114175438881, 0.0016904150834307075, -0.023699283599853516, -0.0075106313452124596, 0.02408422902226448, -0.0005988630000501871, 0.010443752631545067, 0.010075543075799942, 0.046360887587070465, 0.016812097281217575, -0.05901389569044113, -0.024268334731459618, 0.07645361870527267, -0.04247795417904854, -0.017941830679774284, -0.049306560307741165, -0.018058989197015762, -0.009255440905690193, 0.01891256496310234, -0.013514951802790165, -0.01743972674012184, 0.05636948347091675, -0.012343376874923706, 0.005163297522813082, 0.04157416895031929, 0.015473155304789543, -0.02113855630159378, 0.032586514949798584, 0.019247299060225487, 0.03588366135954857, -0.012008641846477985, 0.011447959579527378, -0.006682160310447216, 0.006694713141769171, 0.05851178988814354, -0.03220156952738762, 0.016912518069148064, 0.061591360718011856, 0.045590996742248535, -0.0068662650883197784, -0.00764034129679203, 0.06962501257658005, -0.08274665474891663, 0.01591668091714382, 0.030862627550959587, -0.002184150042012334, -0.019866561517119408, -0.01907993108034134, 0.029573895037174225, 0.026460852473974228, 0.031699467450380325, -0.03574976697564125, 0.05747411027550697, -0.012201114557683468, 0.0028138714842498302 ]
9,431
asyncclick.types
_clamp
null
def _clamp(self, bound: float, dir: "te.Literal[1, -1]", open: bool) -> float: if not open: return bound # Could use Python 3.9's math.nextafter here, but clamping an # open float range doesn't seem to be particularly useful. It's # left up to the user to write a callback to do it if needed. raise RuntimeError("Clamping is not supported for open bounds.")
(self, bound: float, dir: 'te.Literal[1, -1]', open: bool) -> float
[ 0.014248255640268326, -0.010784308426082134, -0.01283196173608303, 0.014580999501049519, -0.006142960395663977, -0.0044024549424648285, 0.024384140968322754, -0.004406720865517855, -0.08484110981225967, -0.03579980880022049, -0.01788284070789814, -0.010110289789736271, 0.01892373152077198, -0.019299134612083435, -0.04433169960975647, 0.06501299887895584, 0.035390280187129974, -0.012874621897935867, 0.017157630994915962, 0.021124958992004395, 0.06392091512680054, 0.023172613233327866, 0.019230879843235016, -0.03127790614962578, -0.028035789728164673, 0.04211340844631195, 0.02254125289618969, 0.05777795612812042, -0.03235292434692383, -0.08190613985061646, -0.031380292028188705, 0.011671625077724457, 0.06313598155975342, -0.026039326563477516, -0.009538652375340462, -0.028854850679636, 0.0397927351295948, 0.022029338404536247, -0.07119008898735046, -0.019691601395606995, -0.036175213754177094, -0.011654561385512352, 0.005426282063126564, 0.03312079608440399, -0.01882134936749935, -0.019230879843235016, 0.007921859622001648, 0.0001745038025546819, 0.04242055490612984, 0.05938195437192917, 0.025066692382097244, 0.004888772964477539, 0.031806886196136475, -0.01921381615102291, -0.0674019306898117, 0.05098657310009003, 0.007213712669909, 0.06426219642162323, 0.0023334717843681574, -0.029179062694311142, -0.0102126719430089, 0.0007652038475498557, -0.0218587014824152, -0.060337524861097336, 0.040407028049230576, 0.0008782513905316591, -0.027370302006602287, 0.004406720865517855, -0.01859951950609684, 0.02905961684882641, -0.04798334836959839, 0.02211465872824192, -0.010784308426082134, 0.03934907540678978, -0.011791071854531765, -0.016585994511842728, 0.00006878835847601295, 0.022728953510522842, 0.024384140968322754, -0.05501362681388855, 0.04269357770681381, -0.000671353074721992, 0.044604718685150146, 0.019435644149780273, -0.02921319007873535, -0.023530952632427216, -0.021090831607580185, 0.00988845992833376, 0.042522937059402466, 0.025322649627923965, -0.04119196534156799, 0.05730017274618149, -0.03279658406972885, -0.007904795929789543, 0.023838099092245102, 0.05139610543847084, -0.03675537928938866, 0.05078180879354477, -0.027029026299715042, 0.046959519386291504, 0.011014669202268124, 0.08197439461946487, -0.024742480367422104, 0.05296597257256508, 0.007439807988703251, -0.004212620668113232, 0.0182753074914217, -0.03859826922416687, -0.030049316585063934, -0.011347413063049316, -0.03883716091513634, -0.02068130113184452, -0.03713078424334526, 0.03989511728286743, -0.049689725041389465, 0.05849463492631912, -0.029366765171289444, 0.025595668703317642, 0.07330599427223206, 0.03494662046432495, 0.026790134608745575, -0.005784621462225914, -0.025595668703317642, -0.08593319356441498, 0.019486837089061737, 0.03853001445531845, 0.01830943487584591, 0.01213234756141901, 0.0014301580376923084, -0.027284983545541763, 0.020271770656108856, -0.005801685154438019, 0.0015410726191475987, 0.0015272082528099418, -0.011500987224280834, 0.04153323918581009, -0.06136135011911392, 0.0695178359746933, -0.02970804087817669, 0.00507220858708024, -0.018411818891763687, 0.003941732924431562, -0.003355165710672736, 0.006330662406980991, 0.010059097781777382, 0.044058676809072495, 0.010152949020266533, 0.019828110933303833, 0.005520132835954428, 0.03986098989844322, -0.061702627688646317, -0.0379839725792408, 0.00507220858708024, 0.026636559516191483, 0.03774508088827133, 0.012942876666784286, -0.021483298391103745, -0.033956922590732574, 0.01550244353711605, 0.0347759835422039, -0.019452707841992378, -0.021380916237831116, -0.012584537267684937, 0.013019663281738758, 0.006381853483617306, -0.05293184518814087, -0.05310248211026192, -0.049621470272541046, -0.024605970829725266, 0.04221579059958458, 0.07364727556705475, -0.0005172457895241678, 0.06750430911779404, -0.0027494013775140047, 0.00023809305275790393, -0.0031376024708151817, -0.002062584273517132, 0.009794609621167183, -0.050304021686315536, -0.02440120466053486, 0.03131203353404999, 0.013028196059167385, 0.04030464589595795, -0.04296659678220749, -0.008079699240624905, 0.04453646391630173, -0.029093744233250618, -0.015365933068096638, -0.04938257858157158, -0.02049359865486622, -0.04139672964811325, -0.02032296173274517, 0.02648298628628254, -0.10217791050672531, -0.07091706991195679, 0.021619807928800583, 0.007128393743187189, 0.00578888738527894, 0.05224929377436638, 0.0034383516758680344, -0.04781271144747734, 0.06166850030422211, 0.047505561262369156, -0.018548328429460526, -0.028940169140696526, 0.02462303452193737, -0.007461137603968382, 0.0035919256042689085, -0.004705337341874838, 0.006770054344087839, -0.04160149395465851, -0.023496825248003006, -0.02781395986676216, -0.02010113187134266, -0.01069898996502161, 0.014760169200599194, -0.023053165525197983, 0.005067942664027214, 0.02254125289618969, 0.0681186094880104, -0.004730932880192995, -0.09077930450439453, 0.05132784694433212, -0.006872436963021755, 0.03876890614628792, 0.02192695625126362, 0.011884922161698341, -0.024571841582655907, 0.015255019068717957, 0.011270626448094845, 0.0005593720125034451, -0.03197752311825752, -0.042591191828250885, -0.012311517260968685, -0.03904192894697189, 0.00953012052923441, 0.011099988594651222, -0.017080843448638916, -0.029008425772190094, 0.0158607829362154, -0.0050764745101332664, 0.052556440234184265, -0.041874513030052185, 0.11958296597003937, 0.03672125190496445, -0.017678076401352882, -0.011756944470107555, -0.023479759693145752, 0.025254392996430397, 0.08436332643032074, -0.03155092895030975, 0.005524398759007454, -0.044672973453998566, -0.009470397606492043, 0.053887415677309036, 0.024708352982997894, -0.05416043475270271, -0.03743793070316315, -0.06941545754671097, -0.0025169074069708586, -0.05218103900551796, -0.09924294054508209, -0.01824118010699749, -0.014325043186545372, 0.013002599589526653, 0.027694514021277428, -0.006006450392305851, -0.0734425038099289, 0.0426594503223896, 0.019401516765356064, 0.03579980880022049, 0.006543959490954876, 0.024145247414708138, -0.019845174625515938, 0.009018207900226116, 0.027677450329065323, 0.06443282961845398, -0.01283196173608303, 0.05777795612812042, -0.016236186027526855, 0.028018726035952568, -0.011458327993750572, -0.06709478050470352, 0.061839137226343155, -0.033308498561382294, 0.054706476628780365, -0.0013928309781476855, -0.012149411253631115, -0.01017854455858469, 0.004432316869497299, -0.014009363017976284, 0.027711577713489532, 0.08224741369485855, 0.004884507041424513, 0.057709701359272, -0.05235167592763901, 0.029264381155371666, -0.0338716022670269, 0.06467172503471375, -0.04699365049600601, 0.027933407574892044, -0.08327124267816544, -0.07944896072149277, 0.04238642752170563, 0.0362093411386013, -0.029076680541038513, -0.03576568141579628, -0.0206130463629961, -0.005016751121729612, 0.011313285678625107, -0.026295283809304237, -0.009350950829684734, -0.02709728106856346, -0.06463759392499924, 0.08641097694635391, 0.04928019642829895, 0.006531161721795797, 0.020305898040533066, -0.045457907021045685, 0.025390904396772385, -0.03501487523317337, 0.014529808424413204, -0.003945998847484589, -0.019879303872585297, -0.070234514772892, -0.03924669325351715, 0.018718965351581573, 0.03631172329187393, 0.027540940791368484, -0.005166059359908104, -0.04511663317680359, 0.03283071145415306, 0.04723254218697548, -0.036823637783527374, 0.003485277062281966, 0.036823637783527374, 0.07091706991195679, 0.024452395737171173, 0.04600394889712334, -0.04439995437860489, 0.00080519710900262, 0.006991883739829063, 0.008493496105074883, 0.027336174622178078, 0.018804285675287247, 0.035356152802705765, 0.04293246939778328, -0.013838725164532661, 0.06467172503471375, -0.03760857135057449, -0.015758400782942772, -0.02218291349709034, -0.024896053597331047, -0.07139485329389572, -0.03934907540678978, -0.00705160666257143, 0.01742211915552616, -0.0053366972133517265, 0.025954008102416992, -0.029844550415873528, 0.02899136207997799, -0.041123706847429276, -0.009538652375340462, 0.03202871233224869, -0.038188736885786057, 0.010204140096902847, -0.027575068175792694, -0.05777795612812042, 0.010315055027604103, 0.06863052397966385, -0.03064654767513275, -0.06726542115211487, -0.010801372118294239, -0.007802413310855627, -0.06224866583943367, 0.01667131297290325, -0.030868377536535263, 0.021875765174627304, -0.013727810233831406, 0.04508250579237938, 0.035424407571554184, -0.004059046506881714, 0.01599729247391224, 0.004602954722940922, -0.013446258381009102, -0.015553634613752365, 0.02175631932914257, -0.02028883434832096, 0.03127790614962578, 0.014367702417075634, 0.06061054393649101, -0.03593631833791733, -0.013582768850028515, 0.058153361082077026, -0.05658349394798279, 0.022012274712324142, 0.01853126473724842, -0.02035708911716938, 0.04573092982172966, 0.01691020466387272, 0.012499218806624413, 0.06426219642162323, -0.02540796808898449, 0.029878677800297737, 0.023565080016851425, 0.018326498568058014, 0.047505561262369156, 0.03634585067629814, 0.001742638531140983, 0.02963978424668312, -0.03566329926252365, 0.021909892559051514, 0.00481198588386178, 0.026141710579395294, 0.017575692385435104, -0.027728641405701637, -0.04368327558040619, 0.003583393758162856, -0.03068067505955696, -0.032062843441963196, 0.002683279337361455, -0.12224491685628891, 0.0275921318680048, -0.01935032568871975, -0.02609051950275898, -0.0562763437628746, 0.02533971332013607, -0.04808573052287102, -0.021653935313224792, 0.02440120466053486, -0.020544789731502533, -0.006032045930624008, -0.02283133752644062, -0.03767682611942291, 0.02146623469889164, 0.0038521483074873686, -0.019094368442893028, 0.020800746977329254, 0.0016370563535019755, -0.01967453770339489, 0.0688011571764946, -0.002766465302556753, 0.035356152802705765, 0.01706377975642681, -0.0017767660319805145, -0.03934907540678978, 0.002220424357801676, -0.004628550261259079, -0.04706190526485443, -0.04511663317680359, 0.0008809175924398005, 0.02465716190636158, 0.009803141467273235, 0.03441764414310455, 0.00757205206900835, -0.06074705347418785, -0.13378003239631653, -0.015741337090730667, -0.007828008383512497, 0.0025638327933847904, 0.014214128255844116, 0.04702777788043022, -0.05224929377436638, -0.03283071145415306, -0.05416043475270271, 0.04846113547682762, 0.044672973453998566, -0.04596982151269913, -0.04852939024567604, -0.04020226374268532, 0.05856288969516754, -0.044092807918787, 0.04388803988695145, -0.03129497170448303, 0.0333426259458065, 0.03781333565711975, -0.014359170570969582, 0.05419456213712692, 0.06463759392499924, 0.00253610429354012, 0.011876390315592289, -0.057709701359272, -0.010673394426703453, 0.013557172380387783, -0.03426406905055046, 0.04078243300318718, -0.10470335185527802, 0.04811985790729523, -0.03264300897717476, 0.0232920590788126, -0.012900217436254025, 0.0254420954734087, 0.0087793143466115, -0.013232961297035217, -0.02709728106856346, 0.0005929663311690092, 0.03182394802570343, -0.026756005361676216, 0.061702627688646317, -0.02228529565036297, -0.012755175121128559, -0.012738111428916454, -0.03131203353404999, 0.0031034748535603285, 0.029793359339237213, -0.0345882810652256, -0.03716491162776947, 0.010332118719816208, -0.05726604536175728, 0.00018143597117159516, 0.07180438190698624, 0.017729267477989197, -0.030151698738336563, 0.026295283809304237, 0.03469066321849823, -0.02078368328511715, -0.013011131435632706, 0.06296534836292267, 0.03883716091513634, -0.08006325364112854, -0.019111432135105133, -0.009581312537193298, -0.05712953209877014, -0.03532202169299126, -0.003120538778603077, -0.08695702254772186, 0.04071417823433876, -0.01713203452527523, -0.0002444919664412737, 0.0008025309070944786, 0.06364789605140686, -0.012217666022479534, 0.03494662046432495, -0.011671625077724457, 0.03716491162776947, 0.023479759693145752, -0.05368265137076378, 0.000044159194658277556, -0.056208088994026184, 0.03375215455889702, -0.018838413059711456, -0.028018726035952568, 0.06409155577421188, 0.027796896174550056, 0.0026918111834675074, 0.00263422098942101, -0.051054827868938446, 0.02049359865486622, 0.038973674178123474, 0.023991674184799194, 0.006851107347756624, 0.02064717374742031, -0.030237017199397087, 0.013378002680838108, -0.0006212282460182905, -0.0011806002585217357, -0.02934970147907734, -0.021602744236588478, -0.012405367568135262, 0.0016338569112122059, 0.004735198803246021, 0.05515013635158539, 0.07781083136796951, -0.009794609621167183, -0.03436645120382309, -0.0544675849378109, 0.041806258261203766, 0.03462240844964981, 0.048973046243190765, 0.04364914819598198, 0.015493911691009998, 0.05508188158273697, -0.02139797993004322, 0.009751950390636921, 0.02655124105513096, 0.012047028169035912, 0.03566329926252365, -0.03552678972482681, -0.0534096285700798, -0.010826967656612396, 0.016850482672452927, -0.03569742664694786, -0.01859951950609684, -0.01801935024559498, 0.00393320107832551, 0.0004817851586267352, -0.030936632305383682, 0.021517425775527954, -0.011654561385512352, 0.0024102588649839163, 0.0213297251611948, 0.009444802068173885, 0.010622202418744564, -0.03651648759841919, 0.014691914431750774, 0.005609717685729265, -0.05941608175635338, -0.0029562998097389936, 0.03498074784874916, 0.0573343001306057, -0.00799864623695612, -0.01141566876322031, -0.07589969038963318, 0.05081593617796898, -0.0315338633954525, 0.004334200173616409, 0.009376546368002892, -0.07938069850206375, -0.0817013755440712, -0.011065861210227013, 0.007665902841836214, 0.019862240180373192, -0.046823009848594666, 0.002376131247729063, -0.05497949570417404, 0.00005002486796001904, -0.0017788989935070276, -0.02941795624792576, 0.06620746105909348, 0.01288315374404192, -0.002525439253076911, -0.048973046243190765, -0.010357714258134365, -0.021022576838731766, 0.04846113547682762, 0.009410674683749676, 0.06569555401802063, -0.0066548739559948444, -0.0394173301756382, 0.0275921318680048, -0.015306210145354271, 0.05586681514978409, 0.01105732936412096, 0.006501299794763327, -0.08033627271652222, 0.05559379234910011, 0.006206949707120657, -0.03590219095349312, 0.03375215455889702, 0.001677582855336368, 0.01096347812563181, -0.01788284070789814, 0.03204577788710594, -0.009359482675790787, -0.018718965351581573, -0.02351388894021511, -0.011978773400187492, 0.04197689890861511, -0.026175837963819504, -0.051873888820409775, 0.002071116119623184, 0.05433107540011406, -0.024930180981755257, -0.018411818891763687, 0.02934970147907734, -0.02866715006530285, 0.0025105085223913193, 0.003864946076646447, 0.06801622360944748, -0.02429882250726223, -0.029469147324562073, -0.010903755202889442, 0.052590567618608475, -0.003945998847484589, -0.04713016003370285, -0.03329143300652504, 0.013881384395062923, -0.03958796709775925, 0.0024977107532322407, -0.042591191828250885, -0.009777545928955078, -0.056856513023376465, -0.06760669499635696, 0.0032890434376895428, -0.007759753614664078, -0.00706013897433877, 0.04126022011041641, 0.026977835223078728, -0.018548328429460526, 0.002864581998437643, -0.010357714258134365, 0.012755175121128559, -0.0587676577270031, 0.028018726035952568, 0.07159961760044098, 0.0669923946261406, -0.022524189203977585, 0.030544165521860123, 0.015843719244003296, 0.056071579456329346, 0.03876890614628792, -0.01742211915552616, -0.045389652252197266, 0.00942773837596178, 0.011569242924451828, -0.07692351937294006, -0.0189919862896204, 0.0003852681547868997, -0.00894142035394907, 0.005904067773371935, 0.05951846390962601, -0.020374152809381485, -0.05064529925584793, -0.0022524187806993723, -0.008804909884929657, -0.051157210022211075, 0.04528727009892464, 0.033171989023685455, 0.01641535572707653, 0.019435644149780273, 0.028650086373090744, 0.03068067505955696, 0.011535114608705044, 0.004137966316193342, 0.019845174625515938, -0.0011411402374505997, -0.027319110929965973, 0.016790758818387985, 0.029861614108085632, -0.019555091857910156, 0.0171064380556345, -0.0039012066554278135, 0.017157630994915962, -0.03042471967637539, 0.03989511728286743, -0.012183538638055325, -0.03110726922750473, -0.00751659506931901, -0.09269045293331146, 0.023496825248003006, -0.023428568616509438, 0.0074526057578623295, -0.031448546797037125, 0.011628965847194195, 0.042284045368433, 0.023496825248003006, -0.0347759835422039, 0.03508313000202179, -0.033308498561382294, -0.020340025424957275, 0.007341691292822361, -0.02368452586233616, 0.02006700448691845, -0.051771506667137146, -0.01680782251060009, 0.011279158294200897, -0.024145247414708138, -0.00731182936578989, -0.02475954405963421, -0.00484611326828599, 0.026329411193728447, 0.026994898915290833, 0.04924606904387474, 0.02436707727611065, 0.026926644146442413, -0.03986098989844322, -0.03603870049118996, 0.0516008697450161, 0.010110289789736271, -0.004790656268596649, 0.013395067304372787, 0.06532014906406403, 0.011560710147023201, 0.06777733564376831, -0.03603870049118996, 0.034247007220983505, -0.008480698801577091, 0.03876890614628792 ]
9,432
asyncclick.types
_describe_range
Describe the range for use in help text.
def _describe_range(self) -> str: """Describe the range for use in help text.""" if self.min is None: op = "<" if self.max_open else "<=" return f"x{op}{self.max}" if self.max is None: op = ">" if self.min_open else ">=" return f"x{op}{self.min}" lop = "<" if self.min_open else "<=" rop = "<" if self.max_open else "<=" return f"{self.min}{lop}x{rop}{self.max}"
(self) -> str
[ 0.044035572558641434, -0.02519228495657444, 0.049637630581855774, -0.026092009618878365, 0.02882513590157032, -0.0007421665941365063, 0.020642735064029694, -0.07252118736505508, -0.049467869102954865, -0.06192820519208908, 0.020489951595664024, 0.012816829606890678, 0.03130362182855606, 0.0009119259193539619, -0.028061218559741974, 0.030064377933740616, 0.026567336171865463, -0.1086459755897522, 0.007749513722956181, 0.035649459809064865, 0.024818815290927887, 0.003668923629447818, -0.019963698461651802, -0.06484806537628174, -0.009896969422698021, 0.06026456505060196, -0.01606772094964981, -0.03734705597162247, -0.038773033767938614, -0.06573081761598587, -0.07482991367578506, -0.03901069611310959, 0.029724860563874245, -0.01285078190267086, 0.001819607918150723, -0.02419070526957512, 0.03901069611310959, 0.02829888090491295, -0.01957325078547001, 0.014251296408474445, -0.01425978448241949, -0.058872539550065994, -0.053915563970804214, -0.02373235486447811, -0.008708653971552849, -0.027399156242609024, 0.03379908576607704, -0.022611944004893303, -0.01211232878267765, -0.0414552316069603, 0.0899045467376709, -0.005275271367281675, -0.022815654054284096, -0.02700871042907238, -0.0618942528963089, 0.05065618455410004, 0.034172553569078445, 0.05809164419770241, 0.030692487955093384, 0.03622664138674736, -0.01828308030962944, 0.0793115645647049, -0.005810013506561518, -0.06389741599559784, 0.0018280958756804466, 0.01572820171713829, 0.007265699561685324, -0.008598310872912407, -0.0002584851172287017, 0.06090965121984482, 0.03272959962487221, -0.0012795609654858708, -0.0015745178097859025, 0.01862259954214096, 0.019318612292408943, -0.04298306256532669, -0.09214536845684052, 0.05065618455410004, 0.01583854667842388, -0.05028271675109863, 0.05157288536429405, 0.04984134063124657, 0.04468065872788429, -0.060943603515625, 0.029096750542521477, -0.08148448169231415, -0.02534506842494011, -0.0020615148823708296, 0.05717494338750839, -0.007728294003754854, -0.012316039763391018, 0.03524203971028328, -0.013394012115895748, -0.0027607111260294914, -0.011679442599415779, 0.026261769235134125, -0.04311887174844742, -0.0059118689969182014, -0.007134136278182268, -0.015040677040815353, -0.0040636141784489155, 0.06708888709545135, -0.0002222786279162392, 0.043865811079740524, -0.035174135118722916, -0.03439324349164963, -0.02947022020816803, -0.004910288844257593, -0.03687172755599022, -0.015583907254040241, -0.03461392968893051, 0.004918776918202639, 0.041930556297302246, -0.010907037183642387, -0.0018100589513778687, 0.0596194788813591, 0.00972720980644226, 0.011679442599415779, 0.05272724851965904, -0.042745400220155716, 0.011305972002446651, -0.03989344462752342, -0.01926768384873867, -0.040266916155815125, -0.02699173428118229, 0.07937946915626526, -0.008161179721355438, 0.054255083203315735, -0.049298111349344254, -0.024835791438817978, 0.03454602509737015, -0.039757635444402695, -0.035479702055454254, 0.0490264967083931, 0.06372765451669693, -0.04539364576339722, -0.011348411440849304, 0.07469411194324493, 0.03575131669640541, 0.09513313323259354, -0.0035373601131141186, 0.010126144625246525, -0.012842293828725815, 0.018028441816568375, -0.031082933768630028, 0.019148852676153183, -0.0009596707532182336, 0.07143472880125046, 0.06399927288293839, 0.005211611744016409, -0.01846981607377529, 0.02451324835419655, 0.035988979041576385, -0.023596547544002533, 0.055918727070093155, 0.027721699327230453, 0.016458168625831604, -0.07489781826734543, 0.04128547012805939, 0.00016697421960998327, 0.0051479521207511425, -0.031218742951750755, 0.01680617406964302, -0.02356259524822235, -0.015558443032205105, 0.009285835549235344, -0.017739851027727127, -0.027399156242609024, 0.02436046488583088, 0.025090429931879044, -0.017009885981678963, -0.042236123234033585, -0.007800441700965166, 0.022119641304016113, 0.03989344462752342, 0.038942791521549225, -0.03199963644146919, 0.0677679255604744, -0.04593687504529953, 0.0026843196246773005, 0.026108985766768456, 0.00802537240087986, -0.053134672343730927, -0.03575131669640541, -0.021644314751029015, -0.05340628698468208, 0.027399156242609024, -0.014081536792218685, -0.03386698663234711, -0.025073453783988953, -0.009430130943655968, -0.03327282890677452, -0.03446114435791969, 0.008895388804376125, -0.01605074480175972, -0.010321367532014847, -0.030183210968971252, -0.010261951945722103, 0.06987294554710388, -0.024903694167733192, 0.020948302000761032, 0.07870043069124222, 0.0016127136768773198, 0.04821165278553963, 0.03571736440062523, 0.016568511724472046, 0.03626059368252754, -0.01556693110615015, -0.011433291248977184, -0.03159221261739731, -0.026567336171865463, -0.04987529292702675, -0.030760392546653748, 0.006582418456673622, 0.017120229080319405, 0.036294545978307724, 0.008169667795300484, 0.011212604120373726, -0.07245328277349472, 0.028061218559741974, 0.1184920147061348, -0.04627639427781105, 0.05170869454741478, -0.05184450000524521, 0.07245328277349472, 0.02123689278960228, 0.01291868556290865, -0.055613160133361816, 0.014293735846877098, 0.04250773787498474, 0.020048577338457108, -0.03758471831679344, -0.010143120773136616, 0.04627639427781105, -0.03751681372523308, 0.08732420206069946, -0.026720119640231133, 0.020965278148651123, -0.015940401703119278, -0.014921845868229866, -0.06922785937786102, 0.07394716888666153, 0.01909792609512806, 0.004021174274384975, 0.011891641654074192, -0.0997505858540535, 0.004532574210315943, 0.030913176015019417, -0.028095170855522156, -0.00353948213160038, -0.026771048083901405, -0.04804189130663872, -0.04525784030556679, -0.012893221341073513, 0.03575131669640541, 0.046819623559713364, -0.043865811079740524, -0.005805769469588995, -0.004131517838686705, 0.013538307510316372, -0.006879497319459915, -0.035853173583745956, -0.03162616491317749, 0.022594967857003212, 0.06243748590350151, 0.01135689951479435, -0.011246556416153908, -0.005122487898916006, -0.015626346692442894, -0.0015161631163209677, 0.07774977385997772, 0.010525078512728214, -0.0810091570019722, -0.0015702738892287016, 0.01218023244291544, -0.00848796684294939, 0.08250303566455841, -0.07279280573129654, -0.020846446976065636, -0.028434688225388527, -0.0246999841183424, -0.00905666034668684, -0.022951463237404823, 0.0222384724766016, 0.04576711729168892, -0.007770733442157507, 0.010592982172966003, -0.02651640772819519, -0.01843586377799511, 0.0012159012258052826, -0.028536545112729073, 0.014404079876840115, 0.010211024433374405, -0.0264994315803051, 0.08888598531484604, 0.01760404370725155, 0.12840595841407776, -0.015193460509181023, -0.02254403941333294, -0.008339427411556244, 0.01038078311830759, -0.04481646418571472, 0.024411393329501152, 0.022017786279320717, -0.04474855959415436, -0.01605074480175972, 0.012697998434305191, -0.014446519315242767, 0.003668923629447818, -0.028893038630485535, -0.05727680027484894, 0.02439441718161106, 0.037958186119794846, -0.023579571396112442, 0.039621829986572266, 0.05306676775217056, -0.0067012496292591095, 0.03249193727970123, 0.0009840736165642738, 0.04325467720627785, -0.02288355864584446, 0.018673527985811234, 0.007337847258895636, -0.02060878276824951, -0.012103840708732605, -0.0369056798517704, -0.07754606753587723, 0.0119255930185318, 0.036294545978307724, -0.019844867289066315, -0.044035572558641434, -0.01606772094964981, 0.055647112429142, 0.003399430774152279, -0.032865408807992935, 0.018503768369555473, 0.06471225619316101, 0.08861437439918518, -0.06902414560317993, -0.004638673737645149, 0.04393371567130089, 0.028383761644363403, 0.01974301040172577, 0.027534963563084602, 0.05832930654287338, -0.004409499000757933, -0.012001984752714634, -0.024784862995147705, -0.00716384407132864, -0.04546155035495758, -0.011093772947788239, 0.020133458077907562, -0.0055002025328576565, -0.04478251188993454, 0.020982254296541214, 0.006026456598192453, 0.046004779636859894, -0.038942791521549225, -0.020371120423078537, 0.050316669046878815, 0.04084409773349762, -0.06311652064323425, -0.0023384348023682833, -0.004216397646814585, -0.035649459809064865, 0.009150028228759766, 0.010542054660618305, 0.015091605484485626, 0.03741495683789253, 0.03164314106106758, -0.029266510158777237, -0.023970019072294235, -0.03379908576607704, -0.020948302000761032, -0.04546155035495758, 0.025786442682147026, -0.05371185392141342, 0.007758001796901226, -0.06603638082742691, -0.05496807396411896, 0.03887488692998886, 0.03011530637741089, 0.01070332620292902, 0.031065959483385086, -0.053915563970804214, -0.03643035516142845, 0.00490604480728507, -0.017824729904532433, -0.006276851519942284, 0.03461392968893051, 0.003083253977820277, -0.02074459008872509, -0.04203241318464279, 0.0592460073530674, -0.04478251188993454, -0.04943392053246498, 0.031201766803860664, -0.0018822066485881805, 0.02188197895884514, -0.005377126857638359, 0.009472571313381195, 0.013843873515725136, 0.0060094804503023624, 0.010720302350819111, 0.02933441288769245, 0.011416315101087093, 0.04512203112244606, -0.0005564923048950732, 0.0280102901160717, 0.028706304728984833, -0.07082359492778778, -0.04648010805249214, -0.006480562500655651, 0.015677275136113167, 0.008827485144138336, -0.04827955365180969, -0.036158740520477295, -0.009200955741107464, -0.016475142911076546, -0.039621829986572266, -0.013809922151267529, -0.06596847623586655, 0.03201661258935928, 0.03802609071135521, -0.0012806219747290015, -0.022645896300673485, 0.04620848968625069, -0.01824912801384926, 0.021321773529052734, 0.04478251188993454, -0.03554760664701462, 0.050146907567977905, -0.031524308025836945, -0.04118361696600914, 0.0372791513800621, -0.03901069611310959, -0.012562191113829613, -0.008050836622714996, 0.03704148903489113, -0.014794526621699333, 0.06854882091283798, -0.016755247488617897, 0.09717024117708206, 0.015193460509181023, -0.001114045619033277, -0.009744185954332352, -0.06871858239173889, -0.013682602904736996, -0.0019246464362367988, -0.03890883922576904, 0.01219720859080553, 0.03111688606441021, -0.002217481378465891, -0.019793938845396042, 0.03693963214755058, -0.04563130810856819, -0.0338839627802372, -0.0123499920591712, -0.031524308025836945, -0.020880399271845818, 0.03469880670309067, 0.057582367211580276, -0.047023337334394455, 0.007138380315154791, -0.00707896426320076, 0.022815654054284096, 0.03461392968893051, -0.03242403268814087, -0.05748051032423973, 0.0003440279106143862, 0.019063973799347878, -0.014123977161943913, 0.008954805321991444, -0.006344755180180073, -0.01863957569003105, 0.003987222444266081, -0.02337586134672165, 0.08494757115840912, 0.02503950148820877, -0.029928570613265038, 0.024105826392769814, -0.1040964275598526, 0.0029474464245140553, 0.07143472880125046, -0.014268272556364536, 0.041930556297302246, -0.0072954073548316956, 0.02208568900823593, -0.0827067494392395, -0.030913176015019417, 0.018860261887311935, -0.015159509144723415, -0.03189777955412865, -0.025277165696024895, 0.016347823664546013, -0.013555282726883888, 0.06858277320861816, -0.0246999841183424, -0.026957781985402107, 0.02091434970498085, -0.014336176216602325, -0.02337586134672165, 0.023274004459381104, -0.015346243977546692, 0.07394716888666153, 0.028247954323887825, 0.013945729471743107, -0.0018599256873130798, -0.026261769235134125, -0.04790608584880829, 0.023426787927746773, -0.07224957644939423, 0.0020827348344027996, 0.020354144275188446, -0.017875658348202705, -0.03890883922576904, -0.009888481348752975, 0.05028271675109863, 0.056903328746557236, -0.01400514505803585, -0.03856931999325752, -0.0044943783432245255, -0.045189935714006424, -0.05405137315392494, 0.007363311015069485, -0.046038731932640076, 0.025158334523439407, -0.01748521253466606, -0.0444769449532032, 0.039282310754060745, 0.046038731932640076, 0.004659893922507763, 0.06539129465818405, -0.004765993449836969, -0.0471251904964447, 0.11951057612895966, -0.04495227336883545, -0.012536726891994476, -0.007244479842483997, 0.06104545667767525, 0.025294141843914986, 0.009167004376649857, 0.03789028525352478, 0.01448047161102295, 0.044850416481494904, 0.008560114540159702, 0.0029601785354316235, 0.004715065471827984, 0.0599929504096508, -0.008377623744308949, 0.011492706835269928, 0.04213426634669304, -0.0029750324320048094, -0.032356128096580505, -0.03887488692998886, 0.03534389287233353, 0.0037156075704842806, -0.0012021083384752274, 0.04824560508131981, 0.022306377068161964, -0.029402317479252815, -0.007350579369813204, 0.038467466831207275, -0.00031511575798504055, -0.04814374819397926, 0.04474855959415436, -0.01219720859080553, -0.017875658348202705, -0.03809399530291557, -0.023155173286795616, 0.009531986899673939, 0.02257799170911312, 0.043865811079740524, -0.0032933312468230724, -0.03239008039236069, -0.0056996699422597885, 0.036973584443330765, 0.01120411604642868, -0.003195719560608268, 0.009565938264131546, -0.032356128096580505, 0.03799213841557503, -0.01350435521453619, -0.10192350298166275, 0.01760404370725155, 0.07000874727964401, -0.03850141912698746, -0.007808929309248924, 0.0036349717993289232, -0.05367790162563324, 0.006264119409024715, -0.06478016078472137, -0.01705232448875904, -0.017739851027727127, 0.014921845868229866, 0.005958552937954664, -0.018554694950580597, -0.05551130324602127, -0.003893854795023799, 0.03935021534562111, 0.009531986899673939, 0.05551130324602127, -0.02011648193001747, 0.044375091791152954, 0.0280102901160717, 0.0352080874145031, 0.06987294554710388, -0.027534963563084602, -0.0493999682366848, -0.017654970288276672, 0.0064890505746006966, -0.003149035619571805, -0.01252823881804943, -0.01826610416173935, -0.052930962294340134, -0.00003444921094342135, 0.03527599200606346, -0.02337586134672165, 0.018028441816568375, 0.00038116276846267283, -0.02222149632871151, 0.013436451554298401, -0.03149035573005676, -0.008997244760394096, 0.005725133698433638, 0.012018960900604725, -0.010244975797832012, 0.019369540736079216, -0.0013739896239712834, -0.04746470972895622, 0.018843285739421844, -0.018537718802690506, 0.032356128096580505, -0.048347458243370056, -0.03968973457813263, 0.007881077006459236, 0.012171744368970394, 0.02388513833284378, -0.05062223598361015, 0.015023700892925262, -0.018860261887311935, 0.014862430281937122, -0.01697593368589878, 0.01358923502266407, -0.010185560211539268, 0.027467060834169388, -0.0321693941950798, 0.008895388804376125, -0.013300644233822823, -0.019131876528263092, 0.026414552703499794, 0.026635240763425827, 0.017069300636649132, 0.003900220850482583, -0.027959363535046577, 0.014964285306632519, -0.059721335768699646, -0.04121756553649902, 0.016509095206856728, -0.026804998517036438, -0.05894044041633606, -0.00972720980644226, 0.033170975744724274, -0.006769153755158186, 0.0047362856566905975, -0.0069983284920454025, -0.019148852676153183, 0.020846446976065636, 0.01308844517916441, 0.017366379499435425, 0.047838181257247925, -0.009150028228759766, -0.01365713868290186, 0.011603050865232944, -0.040911998599767685, 0.024920670315623283, 0.053609997034072876, -0.004541062284260988, -0.04763447120785713, -0.03890883922576904, 0.03354444354772568, -0.03410464897751808, -0.04804189130663872, -0.024784862995147705, 0.05140312761068344, 0.04393371567130089, -0.07673121988773346, -0.01243487186729908, 0.024920670315623283, 0.060060855001211166, -0.01824912801384926, -0.06447459757328033, -0.047362856566905975, -0.0010864597279578447, 0.03850141912698746, -0.0019893671851605177, -0.030352968722581863, -0.03890883922576904, 0.08372530341148376, -0.0573447048664093, 0.04889068752527237, 0.01763799600303173, -0.011849201284348965, 0.04705728963017464, -0.004197299480438232, -0.036294545978307724, 0.010423223488032818, -0.020506927743554115, 0.033697228878736496, 0.013767481781542301, 0.06179239973425865, 0.042371928691864014, -0.015159509144723415, -0.02846864052116871, 0.03554760664701462, -0.022968437522649765, -0.017349403351545334, 0.02736520580947399, 0.029232557862997055, -0.0055596181191504, 0.03239008039236069, 0.011934081092476845, 0.01605074480175972, -0.04172684624791145, -0.033510494977235794, 0.06033246964216232, -0.060841746628284454, 0.0007824844215065241, -0.03109990991652012, -0.011789785698056221, -0.026397576555609703, -0.00006422340811695904, -0.011034357361495495, -0.0084709906950593, 0.01862259954214096, 0.000028016922442475334, 0.015015213750302792, 0.027212422341108322, 0.036973584443330765, 0.0053601511754095554, 0.01669583097100258, 0.04502017796039581, -0.03159221261739731, -0.011806761845946312, 0.016678854823112488, -0.020965278148651123, 0.0017580700805410743, 0.033323757350444794, -0.012485799379646778, 0.00964232999831438, 0.027297301217913628, 0.003123571863397956, 0.010508103296160698, -0.03965578228235245, 0.047362856566905975, -0.0484493151307106, 0.011637002229690552, 0.012494287453591824, -0.01682315021753311, 0.002457266440615058, 0.012867758050560951, 0.0304718017578125, 0.015948889777064323, 0.0059373327530920506, -0.023986995220184326, 0.023817235603928566, -0.009039685130119324, 0.020948302000761032 ]
9,433
asyncclick.types
convert
null
def convert( self, value: t.Any, param: t.Optional["Parameter"], ctx: t.Optional["Context"] ) -> t.Any: import operator rv = super().convert(value, param, ctx) lt_min: bool = self.min is not None and ( operator.le if self.min_open else operator.lt )(rv, self.min) gt_max: bool = self.max is not None and ( operator.ge if self.max_open else operator.gt )(rv, self.max) if self.clamp: if lt_min: return self._clamp(self.min, 1, self.min_open) # type: ignore if gt_max: return self._clamp(self.max, -1, self.max_open) # type: ignore if lt_min or gt_max: self.fail( _("{value} is not in the range {range}.").format( value=rv, range=self._describe_range() ), param, ctx, ) return rv
(self, value: Any, param: Optional[ForwardRef('Parameter')], ctx: Optional[ForwardRef('Context')]) -> Any
[ 0.05661012604832649, -0.020723024383187294, 0.044726740568876266, -0.010425303131341934, -0.02208997868001461, -0.010197478346526623, 0.01378801092505455, -0.028797166422009468, -0.049647774547338486, -0.041737668216228485, 0.032405927777290344, 0.051215216517448425, 0.03262463957071304, -0.013614863157272339, -0.013514620251953602, 0.05661012604832649, -0.027120370417833328, -0.02657358907163143, 0.03672550246119499, 0.050048746168613434, 0.02661004103720188, -0.051251668483018875, 0.013997610658407211, 0.02657358907163143, 0.010689581744372845, 0.01845388114452362, 0.015510372817516327, -0.015027382411062717, -0.033007387071847916, -0.03743631765246391, -0.06546799093484879, 0.017050474882125854, 0.06204149127006531, -0.008311080746352673, 0.02041318267583847, -0.023529836907982826, -0.03820181265473366, 0.03421030566096306, -0.10403431951999664, 0.006333554163575172, -0.0796114057302475, -0.022654986009001732, -0.017797742038965225, 0.05526139959692955, -0.0012120326282456517, -0.025552930310368538, -0.010388851165771484, 0.01371510699391365, -0.04097217321395874, 0.0064292410388588905, 0.017724838107824326, 0.002658725716173649, 0.031221233308315277, -0.004743330646306276, -0.10126396268606186, 0.04388834163546562, 0.0195565577596426, 0.11322025209665298, 0.015118512324988842, 0.01158265769481659, -0.01410696655511856, 0.0235116109251976, -0.031549300998449326, -0.07410714030265808, 0.046585798263549805, -0.003032359993085265, -0.016303205862641335, -0.031148327514529228, -0.04221154376864433, 0.09142189472913742, -0.0013840410392731428, -0.009318070486187935, -0.0007791638490743935, 0.0470961257815361, 0.03209608420729637, 0.004264896735548973, -0.043378010392189026, 0.07370616495609283, 0.004775226581841707, -0.033371906727552414, 0.08901605010032654, 0.03353594243526459, 0.04232089966535568, -0.033116742968559265, -0.03581419959664345, -0.023639192804694176, -0.06477539986371994, 0.006005485076457262, 0.0557352751493454, 0.07319583743810654, -0.014188984408974648, -0.01220234390348196, -0.0277218297123909, 0.021215127781033516, 0.046439990401268005, 0.07250324636697769, -0.021798361092805862, 0.019538331776857376, -0.010060782544314861, -0.0008930767071433365, -0.0022463612258434296, 0.05806821212172508, -0.05511559173464775, -0.010634902864694595, 0.04742419719696045, -0.03010944277048111, 0.04458093270659447, -0.008233620785176754, -0.004057575482875109, 0.017469674348831177, -0.04454448074102402, 0.005385799333453178, -0.03736341372132301, -0.012530412524938583, -0.06765511631965637, 0.04115443304181099, -0.05405848100781441, -0.00033063202863559127, -0.0018715880578383803, 0.013122759759426117, -0.01451705303043127, 0.026919882744550705, 0.025625834241509438, -0.03131236135959625, -0.02518840879201889, 0.04294058680534363, 0.01714160479605198, 0.0008822549716569483, -0.03278867155313492, -0.009714487008750439, -0.0059599201194942, -0.05650077015161514, -0.0044129835441708565, -0.01209298800677061, -0.03801955282688141, -0.03809245675802231, -0.06572315841913223, 0.05795885622501373, 0.005094182211905718, 0.02201707474887371, 0.015738198533654213, 0.05861499533057213, 0.03597823157906532, -0.046585798263549805, 0.05190780386328697, -0.00997876562178135, 0.056172702461481094, 0.08106949180364609, -0.013368811458349228, 0.05048617348074913, -0.05347524583339691, 0.022217560559511185, 0.03258818760514259, 0.005932581145316362, 0.029380401596426964, -0.001628953730687499, 0.020540764555335045, -0.07523715496063232, 0.06852997094392776, 0.009322627447545528, -0.007942003197968006, -0.0011305849766358733, 0.015127626247704029, -0.01541012991219759, 0.02041318267583847, 0.027630699798464775, -0.060692764818668365, 0.016594823449850082, 0.014398583211004734, -0.0006139902397990227, 0.010507320985198021, -0.04162830859422684, 0.021853040903806686, 0.037144701927900314, 0.04210218787193298, -0.02194417081773281, 0.021288031712174416, 0.04217509180307388, -0.029690243303775787, 0.060838572680950165, 0.010479982011020184, 0.013769784942269325, 0.015382790938019753, 0.00871205423027277, 0.018572350963950157, -0.005777659360319376, 0.020467860624194145, -0.001930822734721005, -0.06565025448799133, -0.0060145980678498745, 0.01952010579407215, 0.021780135110020638, -0.0197752695530653, -0.005258216988295317, -0.07425294816493988, 0.009386418387293816, -0.01017013844102621, -0.007071709260344505, 0.020795928314328194, 0.024842113256454468, -0.0047797830775380135, 0.004244392737746239, 0.03667082265019417, 0.021105771884322166, -0.03838407248258591, -0.025206634774804115, 0.00009291016613133252, 0.020686572417616844, 0.024277105927467346, -0.040133774280548096, -0.04421640932559967, -0.05103295296430588, -0.04089926928281784, -0.003549524350091815, 0.0075501431711018085, -0.059015966951847076, 0.034192077815532684, -0.031731560826301575, -0.005267329979687929, 0.049720678478479385, 0.08828701078891754, -0.04166476055979729, 0.006342667154967785, -0.04108152911067009, 0.0950671061873436, 0.020103339105844498, -0.03277044743299484, -0.09236964583396912, -0.0015526320785284042, 0.04133669286966324, 0.01551948580890894, -0.060619860887527466, -0.012958724983036518, -0.0029389513656497, -0.04859066382050514, 0.08792249113321304, 0.04705967381596565, -0.0004058144986629486, -0.09871231764554977, 0.009349966421723366, -0.015902232378721237, 0.04458093270659447, -0.03441079333424568, 0.0552978515625, 0.02690165676176548, -0.062406014651060104, -0.01302251685410738, 0.026446005329489708, -0.014362131245434284, 0.03914956748485565, -0.010416190139949322, 0.003615593770518899, -0.006301658693701029, 0.005558946635574102, -0.019428974017500877, 0.035650163888931274, -0.052964914590120316, -0.060838572680950165, 0.029453305527567863, 0.029489757493138313, -0.041737668216228485, -0.03455660119652748, -0.009523114189505577, 0.06601477414369583, -0.0036042025312781334, -0.04793452471494675, -0.046512894332408905, 0.022618534043431282, 0.04082636535167694, 0.06215084716677666, -0.03501225262880325, -0.046549346297979355, 0.000018386244846624322, 0.01551948580890894, 0.012175004929304123, 0.005568060092628002, 0.053037822246551514, -0.06758221238851547, 0.010425303131341934, -0.001152797951363027, -0.008721167221665382, 0.00035170590854249895, -0.024040166288614273, -0.0317862406373024, -0.007058039773255587, -0.02708391845226288, 0.025534702464938164, -0.03780083730816841, -0.026956334710121155, -0.012448395602405071, -0.020577216520905495, -0.01895509660243988, -0.017004908993840218, 0.008561689406633377, 0.05963565409183502, -0.02936217561364174, 0.013359698466956615, -0.055990442633628845, 0.04607546702027321, -0.06747285276651382, 0.054641712456941605, -0.04469028860330582, -0.027703603729605675, 0.051215216517448425, 0.02145206741988659, 0.009514001198112965, -0.047169029712677, -0.029161687940359116, -0.03747276961803436, 0.024896791204810143, 0.0022099092602729797, 0.003390046302229166, -0.0032374029979109764, -0.06426507234573364, 0.06776447594165802, 0.0360693633556366, 0.04924680292606354, 0.015464807860553265, -0.015729086473584175, 0.03987861052155495, -0.02059544250369072, 0.03701711818575859, 0.04297703877091408, -0.00650214496999979, -0.013842688873410225, -0.03258818760514259, -0.04086281731724739, 0.020103339105844498, -0.01065312884747982, -0.004426653031259775, -0.013942931778728962, 0.03987861052155495, 0.0714825913310051, -0.02896120212972164, 0.01330502051860094, -0.0025903780478984118, 0.04086281731724739, 0.06914965063333511, 0.0029776818118989468, 0.01106321532279253, 0.04461738467216492, 0.022108204662799835, 0.05234523117542267, 0.02074125036597252, 0.03685308247804642, 0.026956334710121155, -0.03787374123930931, 0.009650696069002151, 0.01731475256383419, -0.06776447594165802, -0.04253961145877838, -0.0035358546301722527, 0.00772329093888402, -0.008680159226059914, -0.026500685140490532, -0.027357308194041252, 0.03958699107170105, -0.0791010782122612, 0.014435036107897758, -0.03235124796628952, 0.052782654762268066, -0.045127712190151215, 0.03623339906334877, -0.029617339372634888, -0.018481219187378883, 0.027976995334029198, -0.025844546034932137, -0.06616058200597763, 0.03668905049562454, 0.03360884636640549, 0.01195629220455885, 0.006046494003385305, -0.011965405195951462, -0.06160406768321991, -0.02910700999200344, 0.001320249866694212, -0.022509178146719933, 0.02608148567378521, -0.031512849032878876, 0.03242415189743042, 0.08449599146842957, 0.03211430832743645, 0.007058039773255587, 0.016430789604783058, 0.010826276615262032, -0.045273520052433014, 0.06196858733892441, -0.02761247381567955, -0.02108754590153694, -0.015847554430365562, -0.002553926082327962, 0.028068125247955322, -0.013569298200309277, -0.015428355894982815, -0.050121650099754333, 0.008871532045304775, 0.05704755336046219, 0.03060154616832733, 0.023384029045701027, -0.0199210774153471, -0.026318423449993134, 0.02190771885216236, 0.022673211991786957, 0.04155540466308594, 0.015309886075556278, -0.015027382411062717, 0.09236964583396912, 0.049720678478479385, -0.0015378233511000872, 0.05223587527871132, -0.04301349073648453, -0.038857948035001755, -0.0008680158643983305, 0.028487324714660645, -0.010270382277667522, -0.028742488473653793, -0.02522486075758934, -0.00768683897331357, -0.06419216841459274, -0.054386548697948456, -0.02298305556178093, -0.04366962984204292, -0.006798318587243557, 0.009504888206720352, 0.03765502944588661, -0.04068055376410484, 0.05376686155796051, -0.02183481492102146, -0.03544967621564865, -0.002009422518312931, 0.002531143371015787, -0.04917389526963234, -0.03349949046969414, -0.06532218307256699, 0.027557795867323875, -0.010051669552922249, -0.04119088500738144, 0.013879140838980675, 0.03958699107170105, -0.022071752697229385, 0.04246670752763748, 0.006761866621673107, 0.08821410685777664, 0.010079008527100086, -0.009723600000143051, -0.04425286129117012, -0.0791739821434021, 0.03473886102437973, -0.07633072137832642, -0.07388842850923538, 0.025024373084306717, 0.021816588938236237, 0.012585091404616833, -0.01727830059826374, -0.0012051978847011924, -0.02589922398328781, -0.11270992457866669, 0.0034925679210573435, 0.011928953230381012, 0.010935633443295956, 0.023219995200634003, 0.015173191204667091, -0.035795971751213074, -0.07501844316720963, -0.029672017320990562, 0.049939390271902084, 0.011190798133611679, -0.02843264676630497, -0.015309886075556278, -0.017232734709978104, 0.0064292410388588905, -0.03834762051701546, 0.03324432298541069, 0.006743640638887882, 0.00178387516643852, 0.035613711923360825, 0.01699579693377018, 0.012047422118484974, 0.04082636535167694, 0.01037062518298626, 0.017907099798321724, -0.014571730978786945, 0.01264888234436512, 0.04778871685266495, -0.04698676988482475, 0.013870027847588062, -0.01824428141117096, 0.030619772151112556, -0.05227232724428177, 0.028797166422009468, -0.032825127243995667, 0.05099650099873543, -0.03167688474059105, 0.0158202163875103, -0.07239389419555664, -0.023456932976841927, 0.020577216520905495, -0.07279486209154129, 0.025206634774804115, 0.018144037574529648, -0.0007973898900672793, 0.009541340172290802, -0.06160406768321991, 0.02055899053812027, 0.04469028860330582, 0.02272788994014263, 0.014070514589548111, 0.03353594243526459, -0.05354814976453781, -0.006133067421615124, -0.02671939693391323, 0.0015378233511000872, 0.003996062558144331, 0.027812959626317024, 0.012885821051895618, -0.03914956748485565, 0.013687767088413239, 0.03309851512312889, -0.028560228645801544, -0.06933191418647766, -0.002396726282313466, 0.0019171531312167645, -0.0027452996000647545, -0.028778940439224243, 0.011628223583102226, -0.027193274348974228, -0.010926520451903343, -0.05249103903770447, -0.0017929881578311324, -0.012712673284113407, 0.040571197867393494, -0.06131244823336601, 0.06441088020801544, 0.01427100133150816, -0.018153151497244835, 0.011427736841142178, -0.05023100972175598, 0.021761909127235413, -0.052892010658979416, 0.016950231045484543, -0.007891882210969925, 0.0197752695530653, 0.03481176495552063, 0.06776447594165802, 0.02943507954478264, -0.030127668753266335, -0.02145206741988659, 0.051215216517448425, -0.015419242903590202, 0.012703560292720795, -0.004203383810818195, -0.009431983344256878, -0.016239415854215622, 0.05806821212172508, 0.005331120919436216, -0.015218756161630154, -0.015437468886375427, 0.013359698466956615, 0.0051807560957968235, 0.019155584275722504, -0.005025834776461124, 0.013587524183094501, 0.008338420651853085, 0.015756424516439438, -0.09134899079799652, 0.014380357228219509, 0.02201707474887371, 0.02269143797457218, -0.002085744170472026, 0.0019194314954802394, 0.033153194934129715, -0.006985135842114687, -0.038748592138290405, -0.013387037441134453, 0.012794691137969494, 0.08245467394590378, -0.01220234390348196, -0.018216941505670547, -0.061020832508802414, 0.01910090632736683, -0.03645211085677147, -0.006092058960348368, 0.003524463390931487, -0.054313644766807556, 0.029307497665286064, 0.0019877790473401546, -0.045091260224580765, 0.02928926981985569, 0.007942003197968006, -0.012858482077717781, 0.04946551471948624, 0.010534659959375858, -0.03936827927827835, 0.007504578214138746, 0.013569298200309277, -0.02526131272315979, -0.019046228379011154, -0.022071752697229385, 0.005800441838800907, 0.0010827415389940143, -0.03555903211236, 0.03067445009946823, -0.02682875283062458, 0.05325653403997421, 0.0358506515622139, 0.0010912850266322494, 0.030200572684407234, -0.048299048095941544, -0.029271043837070465, 0.005759433377534151, 0.04148250073194504, 0.026701170951128006, -0.034082721918821335, -0.00537212984636426, 0.005887015722692013, -0.014088740572333336, -0.05347524583339691, -0.004757000599056482, 0.0038069672882556915, 0.004365140106528997, 0.035540807992219925, 0.008206281810998917, -0.030984293669462204, 0.021743683144450188, 0.011910727247595787, -0.031840916723012924, 0.05365750566124916, -0.016239415854215622, -0.016303205862641335, -0.0063882325775921345, 0.03958699107170105, -0.01026126928627491, 0.02425887994468212, -0.020723024383187294, -0.07454456388950348, 0.004572461824864149, 0.0014945365255698562, -0.015182304196059704, 0.024842113256454468, -0.0010126852430403233, 0.007859986275434494, -0.00822906382381916, 0.03466595709323883, 0.019009776413440704, -0.008862419053912163, -0.023238221183419228, -0.04414350539445877, 0.005668302997946739, -0.014845121651887894, -0.0025151956360787153, 0.060765668749809265, 0.05026746168732643, -0.026354875415563583, 0.0009802200365811586, 0.00046447961358353496, 0.039987966418266296, -0.005495155695825815, 0.006638840772211552, 0.013068081811070442, 0.033371906727552414, -0.10017039626836777, 0.0159660242497921, 0.014471488073468208, -0.008525237441062927, 0.00009454766404815018, -0.0032351247500628233, -0.054641712456941605, 0.007887325249612331, -0.014763104729354382, -0.000591777206864208, -0.004128201398998499, -0.04078991338610649, -0.048299048095941544, 0.03634275496006012, -0.02037672884762287, -0.027102144435048103, 0.013769784942269325, -0.029507983475923538, -0.05260039493441582, -0.011819596402347088, -0.008347533643245697, -0.013642202131450176, -0.08230886608362198, 0.06419216841459274, 0.0078736562281847, -0.03787374123930931, -0.03430143743753433, -0.020759476348757744, 0.010416190139949322, 0.033262550830841064, 0.0396234430372715, -0.02347515895962715, -0.0784449428319931, -0.02892475016415119, -0.00654771039262414, -0.03437434136867523, -0.06207794323563576, -0.0034652287140488625, 0.0015093452529981732, 0.06193213537335396, 0.05850563570857048, -0.040534745901823044, -0.04592965915799141, 0.05227232724428177, 0.029726695269346237, -0.06036469340324402, 0.025461798533797264, -0.018235167488455772, 0.07603910565376282, -0.03552258014678955, 0.030455738306045532, 0.05238168314099312, -0.005089625716209412, -0.0548604279756546, -0.03227834403514862, 0.029617339372634888, -0.010434417054057121, 0.06473895162343979, 0.01345082838088274, -0.020978190004825592, 0.014653748832643032, -0.045018356293439865, 0.020540764555335045, -0.05697464942932129, 0.04283123090863228, 0.05744852498173714, 0.03484821692109108, -0.030692676082253456, 0.01427100133150816, -0.01430745329707861, -0.010981198400259018, 0.012694447301328182, -0.0062606497667729855, -0.005317451432347298, 0.03355416655540466, -0.005271886475384235, -0.010461756028234959, 0.028195707127451897, 0.000005797985977551434, -0.03900375962257385, 0.026245519518852234, 0.011965405195951462, 0.03280689939856529, -0.04560159146785736, -0.028159255161881447, 0.006629727780818939, 0.027484891936182976, 0.012885821051895618, 0.007481795735657215, 0.03262463957071304, 0.017752178013324738, -0.016549257561564445, 0.040060870349407196, 0.026956334710121155, 0.07341454923152924, -0.021543197333812714, -0.013259455561637878, 0.03958699107170105, -0.010188364423811436, -0.00781897734850645, -0.00936819240450859, 0.10760662704706192, -0.01140039786696434, 0.0017451448366045952, -0.012311700731515884, 0.04261251538991928, 0.013660428114235401, 0.07122742384672165 ]
9,439
asyncclick.types
to_info_dict
null
def __init__( self, min: t.Optional[float] = None, max: t.Optional[float] = None, min_open: bool = False, max_open: bool = False, clamp: bool = False, ) -> None: self.min = min self.max = max self.min_open = min_open self.max_open = max_open self.clamp = clamp
(self) -> Dict[str, Any]
[ 0.05263880267739296, -0.018055526539683342, 0.030225645750761032, 0.002293833065778017, -0.04624992609024048, -0.015425322577357292, -0.02814231440424919, -0.025954818353056908, -0.06274295598268509, -0.03190967068076134, -0.002387148793786764, 0.05402769148349762, 0.016163168475031853, 0.026614539325237274, -0.024027738720178604, 0.04343742877244949, 0.030520783737301826, -0.022499963641166687, 0.024131905287504196, 0.05430546775460243, 0.04315965250134468, 0.021545104682445526, -0.05229158326983452, 0.059409625828266144, -0.0004131395253352821, 0.06597211211919785, -0.01013887207955122, 0.044479094445705414, -0.026180513203144073, -0.07097210735082626, -0.023541627451777458, 0.02831592597067356, 0.043367985635995865, 0.00024888740153983235, 0.0024761243257671595, -0.048020754009485245, 0.03470480442047119, 0.05913184955716133, -0.1401386559009552, 0.01993052288889885, 0.011276023462414742, -0.062361009418964386, -0.016180528327822685, 0.013368033803999424, 0.009782969951629639, 0.013385394588112831, 0.03229161351919174, 0.008355021476745605, 0.018246497958898544, -0.008203111588954926, 0.053992968052625656, -0.00035969994496554136, 0.01828121952712536, 0.0008230238454416394, -0.10437483340501785, 0.10729148983955383, 0.030138839036226273, 0.10208316892385483, 0.011770813725888729, 0.009696165099740028, -0.05861101672053337, 0.03642355278134346, 0.015807265415787697, -0.09055540710687637, -0.012578104622662067, 0.009192693047225475, -0.06430545449256897, -0.006414920091629028, -0.016597194597125053, 0.07763876020908356, 0.02331593446433544, 0.04131937772035599, -0.0016395372804254293, 0.018923580646514893, 0.008602416142821312, -0.02640620619058609, -0.04409715160727501, 0.04833325371146202, -0.006345475558191538, -0.07138877362012863, 0.02105899341404438, 0.03684021905064583, -0.0024696141481399536, 0.008559013716876507, -0.028072871267795563, -0.04079854488372803, -0.005125859752297401, 0.015763863921165466, 0.05649296194314957, 0.03607632964849472, -0.10131928324699402, 0.061736010015010834, -0.016571152955293655, 0.01026908028870821, 0.03864577040076256, 0.03753466159105301, 0.0066406140103936195, 0.0017523843562230468, -0.023958293721079826, 0.020329827442765236, -0.013385394588112831, -0.02130204811692238, -0.07909709215164185, 0.030399255454540253, -0.004190531559288502, -0.05413185805082321, -0.006796863861382008, -0.023281212896108627, -0.022413158789277077, 0.007000856567174196, -0.025590235367417336, -0.007964396849274635, -0.022638851776719093, 0.06333322823047638, -0.036631885915994644, 0.04833325371146202, -0.025572875514626503, 0.01005206722766161, 0.0569443516433239, -0.017743026837706566, -0.013472200371325016, 0.02659717947244644, -0.02322912961244583, 0.030017312616109848, 0.036111053079366684, 0.03210064396262169, 0.017005180940032005, 0.03822910413146019, -0.024097183719277382, -0.0002821176021825522, 0.049652695655822754, -0.047083254903554916, -0.005156241822987795, 0.03392355516552925, -0.03690966218709946, -0.027569400146603584, -0.019010385498404503, 0.07743042707443237, -0.04166659712791443, 0.032743003219366074, -0.023020796477794647, 0.013307269662618637, -0.022499963641166687, -0.006892350036650896, -0.02020830102264881, 0.020572884008288383, 0.0013823761837556958, -0.0006591785931959748, -0.008250854909420013, 0.046736035495996475, -0.04003465548157692, -0.0289062038064003, -0.01152775902301073, -0.007990438491106033, 0.021024271845817566, -0.051562417298555374, 0.021458297967910767, -0.0679512768983841, 0.04312492907047272, 0.052951302379369736, -0.02425343357026577, 0.018090248107910156, 0.023368017747998238, -0.018229136243462563, -0.027065929025411606, 0.004082024563103914, -0.028611063957214355, -0.07458321005105972, 0.013368033803999424, 0.042326319962739944, 0.04260409623384476, -0.0639929547905922, 0.015216989442706108, 0.013368033803999424, -0.01994788460433483, 0.015104142017662525, 0.011753452941775322, -0.017369763925671577, -0.028333287686109543, -0.017725665122270584, 0.02218746393918991, 0.009687484242022038, -0.013611088506877422, -0.0010796423302963376, 0.011163176037371159, -0.0009407536708749831, -0.023350656032562256, -0.010104150511324406, -0.020677050575613976, -0.024826347827911377, -0.005134540144354105, -0.008684881962835789, -0.01315970066934824, -0.02987842448055744, -0.02821175940334797, -0.002534718019887805, 0.0018250838620588183, -0.03229161351919174, 0.04006937891244888, 0.006662315689027309, -0.03857632726430893, 0.02493051439523697, 0.056145742535591125, -0.0207985769957304, 0.007052939850836992, -0.0032183106523007154, 0.009418387897312641, 0.01760413870215416, 0.012499979697167873, -0.013923588208854198, -0.04350687190890312, -0.025503430515527725, -0.03833327069878578, 0.0003013775567524135, 0.007187488488852978, -0.02406246028840542, 0.029322868213057518, -0.004995651543140411, -0.0018630612175911665, 0.044756870716810226, 0.0906248539686203, -0.057256851345300674, 0.020138856023550034, -0.0138975465670228, 0.05878462642431259, 0.038541603833436966, -0.016197890043258667, -0.05857629328966141, -0.007682279217988253, 0.002402339829131961, -0.007052939850836992, -0.047430478036403656, -0.05322907865047455, -0.03923604637384415, -0.06499989330768585, 0.03833327069878578, 0.010685746558010578, -0.0044487775303423405, -0.08131930977106094, -0.04809020087122917, 0.00914929062128067, 0.009583317674696445, -0.021128438413143158, 0.04597214609384537, 0.03260411322116852, -0.03868049383163452, -0.02873259223997593, 0.023541627451777458, -0.013003450818359852, 0.012664910405874252, -0.04565964639186859, -0.01662323623895645, -0.018506914377212524, 0.015512127429246902, 0.03149300441145897, 0.055694352835416794, -0.048020754009485245, -0.03649299591779709, -0.021197881549596786, -0.007348078303039074, 0.00009473997488385066, -0.07895820587873459, -0.009001721628010273, 0.08111097663640976, 0.02286454662680626, 0.0008572034421376884, -0.012968729250133038, -0.040867988020181656, -0.020433994010090828, 0.016137126833200455, 0.09555540233850479, 0.015937473624944687, 0.01138886995613575, -0.008736965246498585, 0.03815966099500656, -0.019618023186922073, 0.04291659593582153, -0.08798597007989883, 0.006523427087813616, -0.02874995395541191, 0.02460065484046936, -0.006610232405364513, -0.008237834088504314, 0.037499938160181046, 0.020503439009189606, -0.013741296716034412, -0.01493053138256073, -0.022291630506515503, -0.011605883948504925, -0.04670131206512451, -0.04218742996454239, 0.0381249375641346, 0.04840270057320595, 0.01923608034849167, 0.10798593610525131, -0.02795134298503399, 0.05333324521780014, 0.011770813725888729, 0.003368050092831254, -0.054930467158555984, 0.07284710556268692, -0.10590260475873947, 0.025086764246225357, 0.015720460563898087, 0.008511271327733994, -0.02227426879107952, -0.014947892166674137, 0.02260413020849228, 0.03449647128582001, 0.03538188710808754, 0.03211800381541252, 0.029704812914133072, -0.01078991312533617, -0.035329803824424744, 0.029114535078406334, 0.011249981820583344, 0.037152718752622604, -0.017847193405032158, -0.0007861315389163792, 0.04020826891064644, -0.010894079692661762, -0.03562494367361069, -0.03545133024454117, -0.011944425292313099, -0.06850682944059372, -0.04402770474553108, -0.011484356597065926, -0.009904497303068638, -0.026979122310876846, 0.0260589849203825, -0.0674651712179184, 0.027395788580179214, 0.04020826891064644, -0.006453982554376125, -0.00802082009613514, 0.018611080944538116, 0.025173570960760117, 0.034392304718494415, 0.007612834684550762, -0.024357600137591362, 0.04670131206512451, 0.007074641063809395, -0.014166643843054771, 0.04055548831820488, -0.01217011921107769, -0.008689221926033497, 0.024305516853928566, -0.06357628852128983, 0.042256876826286316, -0.03036453388631344, 0.002452252898365259, 0.008576374500989914, 0.0031358455307781696, -0.012934006750583649, 0.04340270534157753, 0.003782545914873481, 0.023350656032562256, -0.053645744919776917, 0.019357606768608093, -0.01657983474433422, 0.03479161113500595, -0.006358496379107237, -0.028541620820760727, 0.005442699417471886, -0.009427067823708057, 0.004505200777202845, 0.018333302810788155, -0.03583327680826187, 0.0018619761103764176, 0.01634545996785164, -0.006605891976505518, -0.06652767211198807, -0.023628434166312218, -0.018003443256020546, -0.02701384574174881, 0.031041616573929787, -0.04486103728413582, 0.01169268973171711, -0.019374968484044075, -0.021701352670788765, 0.010130192153155804, -0.0060503375716507435, 0.009071165695786476, 0.026649262756109238, -0.04434020444750786, -0.026805512607097626, 0.022291630506515503, -0.004105896223336458, 0.0256249587982893, 0.021614547818899155, 0.03062495030462742, -0.02935759164392948, 0.010598940774798393, -0.013046854175627232, -0.042673543095588684, 0.007673598825931549, 0.07826375961303711, 0.028420092537999153, 0.00927949883043766, -0.01662323623895645, 0.021892325952649117, -0.022933989763259888, 0.03531244397163391, 0.019739551469683647, 0.037916604429483414, -0.005186623428016901, 0.06368045508861542, 0.011970466934144497, 0.0438193716108799, 0.04236104339361191, -0.009809011593461037, -0.012916645966470242, -0.012473938055336475, 0.02460065484046936, -0.010859357193112373, -0.05635407567024231, -0.034739527851343155, -0.003754334058612585, -0.01264754869043827, -0.06368045508861542, 0.004153639078140259, -0.014496504329144955, -0.0034027721267193556, 0.00967012345790863, 0.031545087695121765, -0.055277686566114426, 0.07319432497024536, -0.0032400120981037617, 0.014982614666223526, 0.015156225301325321, -0.012690951116383076, 0.01786455512046814, -0.04010410234332085, -0.05416657775640488, 0.026163151487708092, -0.014947892166674137, -0.03972215577960014, -0.024878431111574173, -0.008966999128460884, -0.03777771443128586, 0.07479154318571091, -0.026614539325237274, 0.08923596888780594, -0.010034705512225628, -0.024444404989480972, -0.030347172170877457, -0.03449647128582001, 0.019722189754247665, -0.001765405060723424, -0.05100686103105545, 0.014565948396921158, 0.051666583865880966, -0.00029323954368010163, 0.013090256601572037, 0.04305548593401909, -0.0709373876452446, -0.1230553537607193, -0.008098945021629333, -0.017812471836805344, -0.056909628212451935, 0.01243053562939167, 0.003556851763278246, -0.04663186892867088, -0.06364572793245316, -0.03829854726791382, 0.08041653782129288, 0.044479094445705414, -0.03711799532175064, -0.04937491938471794, -0.03989576920866966, 0.024114543572068214, -0.02883675880730152, -0.0014474802883341908, -0.03822910413146019, 0.0168662928044796, -0.005377595312893391, -0.00588974729180336, 0.01731768064200878, 0.02260413020849228, -0.024878431111574173, 0.023767322301864624, -0.011475675739347935, 0.007217870093882084, 0.039479102939367294, -0.029496479779481888, 0.031545087695121765, -0.042499929666519165, -0.04874991998076439, -0.02270829677581787, 0.040867988020181656, -0.04531242698431015, 0.030069395899772644, -0.013142339885234833, 0.015138864517211914, -0.050694361329078674, 0.017239555716514587, 0.043958261609077454, -0.019913161173462868, 0.050104085355997086, -0.006263010669499636, -0.03380202874541283, -0.004986971151083708, -0.030520783737301826, -0.005221345461905003, 0.039479102939367294, -0.03138883784413338, -0.06798600405454636, -0.019565939903259277, -0.05944434925913811, -0.013732616789638996, 0.0411110445857048, -0.036979105323553085, 0.0073828003369271755, 0.04968741908669472, 0.02468745969235897, -0.03272563964128494, -0.025572875514626503, 0.038888826966285706, 0.02201385237276554, -0.057256851345300674, -0.005920129362493753, 0.07458321005105972, 0.014244768768548965, -0.03857632726430893, -0.01608504354953766, -0.03583327680826187, 0.023368017747998238, -0.050694361329078674, 0.015546849928796291, -0.010034705512225628, 0.0664929449558258, -0.05763879418373108, -0.01679684780538082, 0.05798601731657982, -0.034722164273262024, 0.07090266048908234, -0.02710065059363842, 0.016831569373607635, -0.014496504329144955, 0.011857619509100914, 0.009956580586731434, 0.0802082046866417, 0.07079849392175674, 0.025677042081952095, 0.023940933868288994, 0.012508660554885864, -0.014991294592618942, 0.06583322584629059, 0.021388854831457138, 0.023923572152853012, 0.013524283654987812, 0.004986971151083708, 0.002519527217373252, -0.04013882204890251, -0.0043337601236999035, -0.009331582114100456, 0.004157979506999254, -0.03427077829837799, 0.02631940133869648, 0.02303815633058548, -0.0067664822563529015, 0.03920132666826248, 0.034392304718494415, 0.0017599797574803233, -0.07597209513187408, -0.039131879806518555, 0.04576381295919418, 0.0190624687820673, 0.036805495619773865, 0.05756935104727745, 0.027065929025411606, -0.00043185692629776895, -0.020399272441864014, 0.03788188099861145, -0.00005947527097305283, 0.0026323741767555475, 0.021423576399683952, 0.01105032954365015, -0.09229151904582977, -0.010737829841673374, 0.01845483109354973, 0.013576366938650608, -0.05343741178512573, -0.10333316773176193, 0.0044379266910254955, 0.02855898067355156, -0.04357631877064705, 0.020642327144742012, -0.026770789176225662, -0.0332464724779129, 0.04909714311361313, 0.02296871319413185, -0.01916663534939289, 0.024270793423056602, -0.03079856187105179, -0.01445310190320015, -0.03708327189087868, -0.05048602819442749, 0.029531201347708702, 0.027048567309975624, -0.03902771323919296, 0.04503465071320534, -0.0809720903635025, 0.03684021905064583, 0.007855890318751335, -0.015546849928796291, 0.01276907604187727, -0.027499955147504807, -0.07583320885896683, -0.02994786761701107, 0.028281204402446747, 0.004155809059739113, -0.020486077293753624, -0.003643657313659787, -0.014661434106528759, -0.03045133873820305, -0.038888826966285706, -0.0017686602659523487, 0.03505202755331993, 0.01597219705581665, -0.0324305035173893, -0.00021280889632180333, -0.014531225897371769, 0.009305540472269058, -0.012395813129842281, -0.04874991998076439, 0.016831569373607635, -0.042152710258960724, -0.016137126833200455, 0.0023784684017300606, 0.06999988853931427, 0.009479151107370853, 0.02303815633058548, -0.05659712851047516, -0.06138879060745239, 0.0020735643338412046, 0.02097218856215477, 0.009704845026135445, 0.05635407567024231, 0.010243038646876812, -0.0328645296394825, 0.02803814969956875, 0.06187490001320839, 0.006384538020938635, 0.0023828085977584124, -0.01453990675508976, -0.071805439889431, 0.020086772739887238, 0.0006418175180442631, -0.05246519297361374, -0.01986107788980007, 0.05350685864686966, -0.002617183141410351, -0.006293392740190029, -0.021979130804538727, -0.00556856719776988, -0.010590260848402977, -0.02657981775701046, 0.0797220915555954, 0.009314221329987049, -0.08451375365257263, 0.018628442659974098, 0.06152767688035965, 0.014973933808505535, 0.01975691318511963, -0.00802950095385313, -0.009678803384304047, -0.027673566713929176, 0.001312931883148849, 0.01649302802979946, -0.00914929062128067, -0.005746518261730671, 0.004084194544702768, 0.028246480971574783, -0.007764744106680155, 0.00020589158521033823, 0.028003426268696785, 0.02244788035750389, -0.0001715763210086152, -0.0024197008460760117, 0.05197908356785774, 0.008949638344347477, -0.0630207285284996, -0.026979122310876846, 0.047673534601926804, 0.01230032742023468, -0.08055542409420013, 0.009956580586731434, 0.0319443941116333, 0.07465265691280365, 0.04857631027698517, -0.04291659593582153, -0.011119773611426353, 0.00243923207744956, 0.004613707773387432, -0.034999944269657135, -0.08104153722524643, -0.009565956890583038, 0.022638851776719093, 0.005928809754550457, 0.0638887882232666, 0.008993040770292282, -0.09374985098838806, 0.070833221077919, -0.02659717947244644, -0.02847217582166195, -0.0033268174156546593, 0.011753452941775322, 0.06406239420175552, -0.02831592597067356, 0.03989576920866966, 0.06993044167757034, -0.014374976977705956, -0.029965229332447052, 0.010729148983955383, 0.023020796477794647, 0.024722181260585785, 0.019010385498404503, -0.02027774415910244, -0.0059114485047757626, 0.015581571497023106, 0.006167524494230747, -0.007013877388089895, -0.02873259223997593, 0.03229161351919174, 0.032152727246284485, -0.012265604920685291, -0.03229161351919174, -0.007443564478307962, -0.049583252519369125, 0.002877599559724331, 0.05402769148349762, -0.029374951496720314, -0.020677050575613976, 0.01873260922729969, -0.026770789176225662, 0.018663164228200912, 0.031371477991342545, 0.010034705512225628, 0.01601559855043888, 0.01940969005227089, -0.033350639045238495, 0.04659714549779892, -0.0006987836095504463, -0.01975691318511963, 0.0033441786654293537, -0.00024386895529460162, -0.0029101516120135784, -0.01608504354953766, 0.017439207062125206, 0.003995219245553017, 0.015034697949886322, 0.05961795896291733, 0.03539924696087837, 0.054930467158555984, -0.03822910413146019, -0.04274298623204231, 0.0319443941116333, 0.010763871483504772, -0.038958270102739334, -0.029965229332447052, 0.04027771204710007, 0.018958302214741707, 0.013307269662618637, 0.00026312892441637814, 0.08993040770292282, 0.0052300263196229935, 0.03642355278134346 ]
9,440
asyncclick.core
Group
A group allows a command to have subcommands attached. This is the most common way to implement nesting in Click. :param name: The name of the group command. :param commands: A dict mapping names to :class:`Command` objects. Can also be a list of :class:`Command`, which will use :attr:`Command.name` to create the dict. :param attrs: Other command arguments described in :class:`MultiCommand`, :class:`Command`, and :class:`BaseCommand`. .. versionchanged:: 8.0 The ``commands`` argument can be a list of command objects.
class Group(MultiCommand): """A group allows a command to have subcommands attached. This is the most common way to implement nesting in Click. :param name: The name of the group command. :param commands: A dict mapping names to :class:`Command` objects. Can also be a list of :class:`Command`, which will use :attr:`Command.name` to create the dict. :param attrs: Other command arguments described in :class:`MultiCommand`, :class:`Command`, and :class:`BaseCommand`. .. versionchanged:: 8.0 The ``commands`` argument can be a list of command objects. """ #: If set, this is used by the group's :meth:`command` decorator #: as the default :class:`Command` class. This is useful to make all #: subcommands use a custom command class. #: #: .. versionadded:: 8.0 command_class: t.Optional[t.Type[Command]] = None #: If set, this is used by the group's :meth:`group` decorator #: as the default :class:`Group` class. This is useful to make all #: subgroups use a custom group class. #: #: If set to the special value :class:`type` (literally #: ``group_class = type``), this group's class will be used as the #: default class. This makes a custom group class continue to make #: custom groups. #: #: .. versionadded:: 8.0 group_class: t.Optional[t.Union[t.Type["Group"], t.Type[type]]] = None # Literal[type] isn't valid, so use Type[type] def __init__( self, name: t.Optional[str] = None, commands: t.Optional[ t.Union[t.MutableMapping[str, Command], t.Sequence[Command]] ] = None, **attrs: t.Any, ) -> None: super().__init__(name, **attrs) if commands is None: commands = {} elif isinstance(commands, abc.Sequence): commands = {c.name: c for c in commands if c.name is not None} #: The registered subcommands by their exported names. self.commands: t.MutableMapping[str, Command] = commands def add_command(self, cmd: Command, name: t.Optional[str] = None) -> None: """Registers another :class:`Command` with this group. If the name is not provided, the name of the command is used. """ name = name or cmd.name if name is None: raise TypeError("Command has no name.") _check_multicommand(self, name, cmd, register=True) self.commands[name] = cmd @t.overload def command(self, __func: t.Callable[..., t.Any]) -> Command: ... @t.overload def command( self, *args: t.Any, **kwargs: t.Any ) -> t.Callable[[t.Callable[..., t.Any]], Command]: ... def command( self, *args: t.Any, **kwargs: t.Any ) -> t.Union[t.Callable[[t.Callable[..., t.Any]], Command], Command]: """A shortcut decorator for declaring and attaching a command to the group. This takes the same arguments as :func:`command` and immediately registers the created command with this group by calling :meth:`add_command`. To customize the command class used, set the :attr:`command_class` attribute. .. versionchanged:: 8.1 This decorator can be applied without parentheses. .. versionchanged:: 8.0 Added the :attr:`command_class` attribute. """ from .decorators import command func: t.Optional[t.Callable[..., t.Any]] = None if args and callable(args[0]): assert ( len(args) == 1 and not kwargs ), "Use 'command(**kwargs)(callable)' to provide arguments." (func,) = args args = () if self.command_class and kwargs.get("cls") is None: kwargs["cls"] = self.command_class def decorator(f: t.Callable[..., t.Any]) -> Command: cmd: Command = command(*args, **kwargs)(f) self.add_command(cmd) return cmd if func is not None: return decorator(func) return decorator @t.overload def group(self, __func: t.Callable[..., t.Any]) -> "Group": ... @t.overload def group( self, *args: t.Any, **kwargs: t.Any ) -> t.Callable[[t.Callable[..., t.Any]], "Group"]: ... def group( self, *args: t.Any, **kwargs: t.Any ) -> t.Union[t.Callable[[t.Callable[..., t.Any]], "Group"], "Group"]: """A shortcut decorator for declaring and attaching a group to the group. This takes the same arguments as :func:`group` and immediately registers the created group with this group by calling :meth:`add_command`. To customize the group class used, set the :attr:`group_class` attribute. .. versionchanged:: 8.1 This decorator can be applied without parentheses. .. versionchanged:: 8.0 Added the :attr:`group_class` attribute. """ from .decorators import group func: t.Optional[t.Callable[..., t.Any]] = None if args and callable(args[0]): assert ( len(args) == 1 and not kwargs ), "Use 'group(**kwargs)(callable)' to provide arguments." (func,) = args args = () if self.group_class is not None and kwargs.get("cls") is None: if self.group_class is type: kwargs["cls"] = type(self) else: kwargs["cls"] = self.group_class def decorator(f: t.Callable[..., t.Any]) -> "Group": cmd: Group = group(*args, **kwargs)(f) self.add_command(cmd) return cmd if func is not None: return decorator(func) return decorator def get_command(self, ctx: Context, cmd_name: str) -> t.Optional[Command]: return self.commands.get(cmd_name) def list_commands(self, ctx: Context) -> t.List[str]: return sorted(self.commands)
(name: Optional[str] = None, commands: Union[MutableMapping[str, asyncclick.core.Command], Sequence[asyncclick.core.Command], NoneType] = None, **attrs: Any) -> None
[ 0.0067457593977451324, -0.031319595873355865, -0.0058832657523453236, -0.0130867725238204, 0.013790259137749672, -0.010195733048021793, -0.02397635579109192, 0.02837073616683483, 0.03581034392118454, -0.01373243797570467, 0.02916095405817032, -0.016180185601115227, 0.02900676429271698, -0.00794072262942791, -0.027368508279323578, -0.01369389146566391, 0.06279338151216507, -0.03369024768471718, 0.01653674617409706, -0.022183910012245178, 0.045408595353364944, 0.06811289489269257, 0.0586688295006752, -0.043866708874702454, -0.0029994535725563765, 0.06302466243505478, 0.023475242778658867, 0.009974086657166481, 0.028139453381299973, -0.05041973292827606, -0.03962651640176773, -0.07069555670022964, -0.02600008249282837, 0.012470018118619919, -0.013192777521908283, -0.02308977022767067, -0.03062574751675129, 0.07609216123819351, -0.01693185605108738, -0.0016563248354941607, 0.011544885113835335, -0.00903931725770235, 0.024111270904541016, -0.031724341213703156, 0.0414767824113369, 0.013250598683953285, 0.04398234933614731, 0.06240791082382202, -0.06140568107366562, -0.05874592438340187, 0.04251755774021149, -0.042093537747859955, 0.01380953285843134, -0.006418108008801937, -0.02657829038798809, 0.008533385582268238, 0.02966206707060337, 0.028255093842744827, 0.012894037179648876, -0.01629582606256008, 0.007005952764302492, 0.06337159126996994, -0.003529477631673217, 0.0046593924053013325, -0.025788074359297752, -0.024978581815958023, -0.04864656180143356, -0.009203142486512661, -0.024766573682427406, 0.03993489593267441, -0.07532121986150742, 0.004717213101685047, 0.04105276241898537, -0.03421063721179962, -0.017114954069256783, -0.014050452969968319, -0.02998971752822399, -0.0067457593977451324, 0.1145622655749321, 0.0245352890342474, -0.0455242395401001, 0.010234280489385128, 0.003184962086379528, 0.04764433205127716, 0.05014990270137787, 0.02648192271590233, 0.026134997606277466, 0.025017129257321358, -0.020699843764305115, -0.07011734694242477, -0.07246872782707214, -0.016411468386650085, -0.007853991352021694, 0.03546341881155968, -0.025460422039031982, -0.017057133838534355, -0.007160141598433256, 0.01503340620547533, -0.027676885947585106, 0.011458153836429119, -0.04895493760704994, 0.005078592803329229, 0.06078892573714256, -0.022415194660425186, -0.014725028537213802, -0.029796982184052467, -0.07246872782707214, 0.05138340964913368, -0.0662626251578331, 0.014609387144446373, -0.04066729173064232, 0.0032692840322852135, 0.04587116092443466, 0.011053408496081829, 0.02043001353740692, -0.0020177047699689865, -0.06233081594109535, -0.07019444555044174, 0.002444133162498474, -0.039819251745939255, -0.0041727339848876, 0.027156498283147812, 0.016093453392386436, -0.006071183364838362, 0.04228627309203148, 0.027676885947585106, -0.02220318466424942, 0.012460380792617798, 0.040705837309360504, -0.028987491503357887, 0.0070252264849841595, 0.019186867401003838, 0.015736892819404602, 0.005998907145112753, 0.05670292302966118, 0.026462649926543236, -0.016960766166448593, -0.012074909172952175, -0.07559105008840561, 0.07088829576969147, 0.034075722098350525, -0.017702799290418625, -0.006129004061222076, 0.0038739931769669056, -0.01927359774708748, -0.05755096301436424, 0.01895558275282383, -0.06233081594109535, -0.034075722098350525, -0.03421063721179962, -0.031801436096429825, -0.039510875940322876, 0.025460422039031982, 0.016392195597290993, 0.03118468075990677, 0.07455027848482132, -0.04633373022079468, 0.008600843138992786, 0.004300421569496393, -0.03758351504802704, -0.009309147484600544, -0.014252825640141964, -0.007502248045057058, 0.02397635579109192, 0.008528566919267178, 0.02106604166328907, 0.03394080698490143, -0.0402047261595726, -0.0035318867303431034, 0.07138940691947937, 0.00034933394636027515, 0.03714022412896156, 0.06514476239681244, 0.03145451098680496, -0.06761178374290466, 0.06603134423494339, -0.015910355374217033, 0.023475242778658867, 0.004040227737277746, -0.05847609415650368, -0.005054500885307789, -0.003917358815670013, 0.02657829038798809, 0.0008624934707768261, -0.0021068451460450888, 0.014917764812707901, 0.08179714530706406, -0.002804308431223035, -0.02690594270825386, -0.02796599082648754, -0.03573324903845787, -0.014917764812707901, 0.06618553400039673, 0.017529336735606194, -0.0032909668516367674, 0.004881038796156645, -0.062099531292915344, -0.0037944894284009933, 0.047682881355285645, 0.018676117062568665, -0.03419136255979538, -0.0003000959404744208, 0.07894465327262878, 0.02908385917544365, 0.021856259554624557, 0.036812569946050644, 0.009607888758182526, 0.03303494676947594, -0.019177230075001717, -0.06491347402334213, -0.0013383104233071208, -0.019736163318157196, 0.00680839829146862, 0.08996915072202682, 0.03295785188674927, -0.04236336797475815, 0.06977042555809021, 0.038605015724897385, 0.01519723143428564, 0.03313131257891655, 0.061212945729494095, 0.0586688295006752, 0.023224685341119766, 0.03848937526345253, -0.030991945415735245, -0.00951633881777525, 0.03696675971150398, 0.010928129777312279, 0.06225372105836868, 0.008379196748137474, 0.01969761773943901, -0.07516703009605408, -0.027811801061034203, 0.03469247743487358, -0.08110330253839493, -0.08696247637271881, -0.00445942860096693, 0.006085638422518969, 0.0014286554651334882, -0.0008883923874236643, 0.005160505883395672, 0.015283962711691856, 0.012315829284489155, 0.05111357942223549, -0.012768758460879326, 0.002597117330878973, 0.004748532548546791, -0.0170089490711689, 0.006702393759042025, -0.01008972804993391, -0.024516016244888306, 0.007039681542664766, 0.016151275485754013, 0.016787303611636162, -0.08788760751485825, -0.027522698044776917, -0.05192307382822037, -0.03633073344826698, -0.000046602955990238115, -0.002486294135451317, -0.007410698104649782, -0.014782849699258804, -0.024169091135263443, 0.03047155775129795, 0.04170806705951691, 0.001844242331571877, 0.038373734802007675, -0.029122406616806984, -0.04051310196518898, 0.02156715653836727, 0.05203871428966522, 0.04656501114368439, -0.00599408894777298, 0.0014539520489051938, -0.07836645096540451, 0.019061587750911713, 0.013722801581025124, -0.04463765397667885, -0.02835146151483059, -0.08765631914138794, 0.04814544692635536, 0.00022104407253209502, -0.04918622225522995, -0.0161223653703928, 0.004057092126458883, 0.03216763585805893, 0.004591934848576784, 0.02195262722671032, -0.001185326254926622, 0.05095939338207245, 0.024940036237239838, -0.026925215497612953, 0.021335871890187263, 0.004387152846902609, 0.0032813299912959337, 0.009742803871631622, -0.09868081659078598, 0.027156498283147812, -0.0038547194562852383, -0.10315229743719101, -0.003168097697198391, -0.04799125716090202, 0.026944490149617195, 0.006731303874403238, -0.013828806579113007, 0.012527838349342346, 0.08125748485326767, -0.057011302560567856, -0.004189598374068737, -0.018252097070217133, 0.030606472864747047, 0.04741305112838745, -0.017558246850967407, 0.007391424849629402, -0.009150140918791294, 0.034403372555971146, 0.03218690678477287, -0.023224685341119766, 0.032051991671323776, 0.060981664806604385, -0.04440636932849884, -0.028255093842744827, 0.03062574751675129, 0.006832490209490061, 0.07825080305337906, 0.054968301206827164, 0.030355915427207947, 0.0008895969949662685, 0.01895558275282383, 0.05616326257586479, -0.026559017598628998, -0.014474472030997276, -0.03197489678859711, 0.029854802414774895, -0.0945948138833046, -0.008123821578919888, -0.0190326776355505, -0.03527068346738815, -0.003616208676248789, -0.02445819601416588, 0.025479696691036224, 0.04579406976699829, -0.037641335278749466, 0.0073528774082660675, 0.026462649926543236, -0.033092767000198364, 0.09197361022233963, 0.04483038932085037, 0.01621873304247856, 0.034229908138513565, 0.09474900364875793, 0.017442606389522552, 0.005121958442032337, -0.04668065533041954, 0.06317885220050812, -0.061290040612220764, -0.0030765479896217585, 0.010966677218675613, 0.006832490209490061, -0.08357031643390656, 0.03696675971150398, -0.03095339797437191, 0.016825851052999496, 0.031242500990629196, -0.0009787373710423708, -0.015129773877561092, 0.008041908964514732, -0.03103049285709858, 0.029623519629240036, -0.0166909359395504, 0.06379561126232147, 0.0012371240882202983, 0.0541202612221241, 0.034885212779045105, -0.03546341881155968, 0.043481238186359406, 0.042170632630586624, -0.037410054355859756, -0.045408595353364944, -0.05909284949302673, 0.04220917820930481, -0.006818035151809454, 0.05566215142607689, 0.04390525445342064, -0.0011275054421275854, -0.0023007856216281652, 0.04961024224758148, 0.022627202793955803, -0.019003767520189285, -0.04961024224758148, 0.04101421684026718, -0.020391466096043587, 0.002640482969582081, 0.013318056240677834, -0.07559105008840561, -0.039819251745939255, 0.0015768212033435702, -0.021702071651816368, -0.05300239473581314, -0.0392024964094162, 0.042980123311281204, -0.0379304401576519, 0.09251327067613602, -0.00932360254228115, 0.05226999521255493, -0.02576879970729351, 0.012171276845037937, 0.051576148718595505, -0.07474301010370255, 0.00025311653735116124, 0.0013925174716860056, -0.016083817929029465, -0.059439774602651596, 0.0041727339848876, 0.001051013357937336, -0.03762206435203552, 0.01474430225789547, 0.06784306466579437, -0.014859943650662899, -0.017519699409604073, -0.015129773877561092, 0.00047973188338801265, 0.0017984675941988826, 0.03328550234436989, 0.058707378804683685, 0.02948860451579094, -0.022916307672858238, -0.021258778870105743, 0.01750042662024498, 0.0007191461045295, -0.04190080240368843, -0.005762805696576834, -0.057897888123989105, 0.004483520518988371, 0.013057862408459187, -0.04837673157453537, -0.007410698104649782, -0.034326277673244476, 0.06001798436045647, 0.05997943505644798, -0.050689563155174255, -0.0037944894284009933, 0.02245374210178852, 0.0028862212784588337, -0.004760578740388155, -0.01773170940577984, 0.024034176021814346, 0.049802977591753006, 0.05280965939164162, -0.03993489593267441, 0.04351978376507759, 0.08842726796865463, 0.03492375835776329, 0.011458153836429119, 0.03203272074460983, -0.05088229849934578, -0.00045413413317874074, -0.029700614511966705, -0.008533385582268238, -0.013848080299794674, 0.007145686540752649, 0.024419648572802544, -0.015341783873736858, 0.021894806995987892, -0.061212945729494095, 0.016633115708827972, 0.05974815413355827, -0.011294328607618809, -0.013664980418980122, 0.0007998542860150337, 0.013954084366559982, -0.032784391194581985, -0.026925215497612953, 0.04089857265353203, -0.018252097070217133, 0.007902175188064575, 0.0680357962846756, -0.06429672241210938, -0.07821226119995117, -0.025017129257321358, 0.002768170554190874, -0.030490832403302193, 0.008938130922615528, -0.019832532852888107, -0.039183225482702255, 0.020468560978770256, 0.044290728867053986, -0.04028181731700897, -0.004644936881959438, -0.030008992180228233, -0.017461879178881645, 0.03696675971150398, 0.0166909359395504, -0.027908168733119965, -0.0024152228143066168, 0.04683484137058258, -0.027908168733119965, -0.007569705601781607, -0.0250364039093256, -0.06772742420434952, 0.031897805631160736, 0.045986805111169815, -0.018435196951031685, -0.04409798979759216, 0.056510187685489655, -0.050034258514642715, 0.02422691136598587, -0.025306234136223793, -0.042324818670749664, -0.025421874597668648, -0.024766573682427406, -0.0019791575614362955, -0.0018032860243692994, 0.00563270878046751, -0.003083775518462062, -0.02842855639755726, -0.019890353083610535, 0.016392195597290993, 0.035540513694286346, -0.01953379064798355, 0.05277111008763313, 0.016430741176009178, -0.006206098478287458, 0.005155687220394611, -0.006153095979243517, 0.004529295489192009, 0.007670891936868429, 0.007921448908746243, 0.037795525044202805, 0.011014861054718494, 0.07092683762311935, 0.04668065533041954, -0.03619581460952759, 0.02908385917544365, 0.009964450262486935, 0.010349921882152557, -0.03638855367898941, 0.0723145380616188, -0.023629430681467056, 0.022492287680506706, 0.012489290907979012, 0.018753210082650185, -0.02048783376812935, -0.012180914171040058, 0.003987225703895092, 0.0293344147503376, 0.042980123311281204, -0.05997943505644798, 0.005863992031663656, -0.006606025621294975, -0.04456055909395218, 0.014002269133925438, -0.05095939338207245, 0.03291930630803108, -0.01008972804993391, 0.003452383214607835, -0.020854033529758453, -0.02139369398355484, -0.011014861054718494, -0.004326922819018364, -0.018088271841406822, 0.053349319845438004, -0.026848122477531433, -0.0397036112844944, 0.061791155487298965, 0.004972588270902634, 0.016507836058735847, 0.03902903571724892, 0.003987225703895092, -0.007969632744789124, -0.07443463057279587, 0.002310422481968999, -0.001553933834657073, -0.029758434742689133, -0.015862170606851578, 0.03850864991545677, 0.006673483178019524, 0.011650890111923218, -0.04814544692635536, -0.05631745234131813, -0.019967447966337204, 0.007285419851541519, -0.014329919591546059, 0.031069040298461914, -0.03927959129214287, 0.02228027954697609, 0.018444832414388657, 0.026751752942800522, -0.008012997917830944, -0.049224767833948135, 0.0071986885741353035, 0.025749526917934418, 0.04328849911689758, -0.012180914171040058, 0.02455456368625164, 0.009188687428832054, -0.011082318611443043, 0.015910355374217033, 0.003939041402190924, -0.007521521300077438, 0.01953379064798355, 0.027734706178307533, 0.01033064816147089, 0.0392024964094162, 0.019909625872969627, 0.016247643157839775, 0.004363060463219881, -0.03145451098680496, -0.04251755774021149, -0.02569170482456684, -0.046950485557317734, -0.029276594519615173, -0.030008992180228233, 0.03644637390971184, -0.04309576377272606, -0.032360371202230453, -0.05211580917239189, 0.0402047261595726, 0.056934207677841187, -0.038046080619096756, 0.011284691281616688, 0.01733660139143467, -0.029353689402341843, -0.001070889295078814, -0.02432328090071678, 0.012508564628660679, -0.043712519109249115, -0.010552294552326202, 0.016652388498187065, -0.012951857410371304, 0.005849536973983049, -0.010243916884064674, 0.017461879178881645, -0.02447746880352497, 0.028467103838920593, -0.08357031643390656, 0.010369195602834225, -0.005579706747084856, 0.0029657247941941023, -0.05045827850699425, -0.0056519825011491776, -0.061290040612220764, 0.014888853766024113, 0.021605702117085457, -0.02131659910082817, -0.022974127903580666, -0.0025007491931319237, -0.00047280543367378414, 0.04190080240368843, -0.04417508468031883, 0.002334514632821083, 0.09945176541805267, -0.04328849911689758, -0.018435196951031685, 0.021779164671897888, -0.02601935714483261, -0.018917035311460495, -0.0432499535381794, -0.029430784285068512, -0.006866218987852335, -0.0023911306634545326, 0.006263919174671173, 0.02480512112379074, 0.03752569481730461, -0.024670204147696495, -0.03031736984848976, 0.03517431393265724, -0.058861568570137024, 0.0402047261595726, 0.03567542880773544, 0.02731068804860115, -0.010667935945093632, -0.02877548150718212, -0.027734706178307533, -0.03103049285709858, 0.016016360372304916, 0.04413653910160065, 0.0030717295594513416, 0.032283276319503784, -0.03014390729367733, -0.045909710228443146, 0.019736163318157196, 0.00014206749619916081, -0.02528695948421955, -0.041206952184438705, 0.0510750338435173, 0.042401913553476334, -0.014532292261719704, 0.00340419914573431, -0.113791324198246, 0.058861568570137024, 0.029719887301325798, -0.00029241660377010703, -0.014609387144446373, -0.05138340964913368, 0.0048135812394320965, -0.036504194140434265, -0.0804094523191452, -0.027407055720686913, 0.005473701748996973, 0.021123863756656647, -0.045100219547748566, -0.04506167024374008, -0.03644637390971184, 0.006933676544576883, 0.01855083741247654, -0.04413653910160065, -0.03758351504802704, 0.0682670846581459, 0.00891885720193386, 0.04190080240368843, 0.03330477699637413, 0.03320840746164322, -0.018936309963464737, 0.04367397353053093, -0.06845981627702713, 0.04610244557261467, 0.03854719549417496, -0.008282828144729137, 0.0022044177167117596, -0.014725028537213802, 0.027195045724511147, 0.05115212872624397, -0.0187821201980114, 0.06784306466579437, -0.021374419331550598, -0.00729023851454258, -0.010292100720107555, 0.009993360377848148, -0.04926331713795662, -0.038046080619096756, 0.045485690236091614, -0.02106604166328907, -0.018435196951031685, 0.047759976238012314, -0.05581633746623993, 0.01604527048766613, -0.05670292302966118, -0.037063129246234894, 0.010648663155734539, -0.04351978376507759, -0.030336642637848854, -0.007126412820070982, -0.046025350689888, -0.029719887301325798, -0.04463765397667885, 0.014561203308403492, 0.06198389083147049, 0.031319595873355865, -0.027272140607237816, -0.0031584608368575573, 0.001185326254926622, -0.011641252785921097, 0.023128317669034004, 0.003206644905731082, -0.034403372555971146, 0.033497512340545654, 0.05439009144902229, 0.021451514214277267, -0.03927959129214287, -0.012691664509475231, -0.02526768669486046, 0.014040815643966198, -0.052462734282016754, 0.06294757127761841, -0.01881103217601776, -0.01139069627970457, 0.02091185376048088 ]
9,442
asyncclick.core
__init__
null
def __init__( self, name: t.Optional[str] = None, commands: t.Optional[ t.Union[t.MutableMapping[str, Command], t.Sequence[Command]] ] = None, **attrs: t.Any, ) -> None: super().__init__(name, **attrs) if commands is None: commands = {} elif isinstance(commands, abc.Sequence): commands = {c.name: c for c in commands if c.name is not None} #: The registered subcommands by their exported names. self.commands: t.MutableMapping[str, Command] = commands
(self, name: Optional[str] = None, commands: Union[MutableMapping[str, asyncclick.core.Command], Sequence[asyncclick.core.Command], NoneType] = None, **attrs: Any) -> NoneType
[ 0.003089696867391467, -0.010741240344941616, -0.000579034211114049, -0.05568724498152733, -0.011904420331120491, 0.020246602594852448, -0.0008871519239619374, 0.01628451980650425, 0.02362709492444992, -0.010277786292135715, 0.010704890824854374, 0.07309859246015549, -0.009282722137868404, 0.03903922811150551, -0.03224189579486847, -0.010913900099694729, 0.07386193424463272, 0.05270659551024437, -0.03660381957888603, -0.02391788922250271, 0.055832639336586, 0.08251307904720306, 0.03438650816679001, 0.012458748184144497, -0.00020091549959033728, 0.06121234968304634, 0.002027613576501608, -0.004888990893959999, 0.008005949668586254, -0.05270659551024437, -0.019501440227031708, -0.008523928932845592, -0.0062520927749574184, 0.016057336702942848, 0.016784323379397392, -0.03554968908429146, -0.010759415104985237, 0.07786036282777786, -0.047145139425992966, -0.0034282004926353693, 0.042819563299417496, -0.019101597368717194, 0.013449269346892834, -0.03405936434864998, 0.050634678453207016, 0.027698224410414696, 0.024026937782764435, 0.04689069464802742, -0.03729445859789848, -0.008632976561784744, 0.03182387724518776, -0.013730976730585098, 0.025317339226603508, 0.003085153177380562, -0.040674950927495956, 0.06153949350118637, 0.010804851539433002, 0.06230282783508301, -0.0016107317060232162, 0.005824987310916185, -0.04678164795041084, 0.03456825762987137, 0.011968031525611877, -0.015448484569787979, 0.03158760815858841, -0.02242756448686123, -0.022354865446686745, -0.05917678400874138, 0.005579628981649876, 0.06292077153921127, 0.014285304583609104, -0.0005426848074421287, -0.01939239166676998, -0.03264173865318298, 0.04376464709639549, 0.0108139393851161, -0.046490851789712906, -0.0035168020986020565, 0.07229890674352646, -0.0026330577675253153, -0.028116241097450256, -0.000783783383667469, -0.059431228786706924, 0.04710879176855087, -0.00848757941275835, 0.052779294550418854, 0.005920404568314552, -0.04260146617889404, -0.018810801208019257, -0.030460776761174202, -0.0860753208398819, -0.0031169590074568987, -0.012386050075292587, 0.05881328880786896, 0.0009019188582897186, -0.020628269761800766, -0.010832114145159721, -0.022318515926599503, -0.036313027143478394, 0.017611272633075714, -0.034731827676296234, -0.02809806726872921, 0.02228216640651226, -0.02297280542552471, -0.0339503176510334, -0.022718358784914017, -0.04227432236075401, 0.016493529081344604, -0.027807272970676422, -0.020446524024009705, -0.04507322609424591, 0.08127720654010773, 0.0758247971534729, 0.020810017362236977, -0.009387225843966007, 0.021809624508023262, -0.0567413754761219, -0.06302981823682785, 0.03264173865318298, -0.028552433475852013, -0.00467543862760067, 0.03438650816679001, 0.038675736635923386, 0.0013880918268114328, 0.06441109627485275, 0.02958839200437069, -0.04307400807738304, -0.015930114313960075, 0.01864722929894924, -0.017883893102407455, 0.041510988026857376, -0.00516161136329174, 0.011977119371294975, 0.00038678006967529655, 0.029806487262248993, -0.020083030685782433, -0.002408146159723401, -0.0009286129497922957, -0.07051778584718704, 0.05386977270245552, 0.016166385263204575, -0.02568083442747593, 0.02428138256072998, -0.04776307940483093, -0.040674950927495956, -0.028025368228554726, 0.020755494013428688, -0.05946757644414902, -0.012340612709522247, -0.0019287887262180448, -0.02944299392402172, -0.01572110503911972, -0.045145925134420395, 0.02711663395166397, -0.019555963575839996, 0.019937632605433464, -0.01725686527788639, -0.016820672899484634, -0.01106838509440422, -0.020337475463747978, -0.0022695641964673996, -0.006938186939805746, -0.03311428055167198, -0.030115457251667976, -0.017947504296898842, 0.008414880372583866, 0.013858199119567871, -0.08214958757162094, 0.03307793289422989, 0.033986665308475494, -0.004568662028759718, 0.00823313370347023, 0.05685042217373848, 0.0073153115808963776, 0.0005543279694393277, 0.008682956919074059, -0.02130073308944702, 0.008610257878899574, 0.008682956919074059, -0.07113572955131531, 0.004816292319446802, 0.0039938874542713165, -0.02070096880197525, 0.026535043492913246, 0.03693096712231636, 0.02200954593718052, 0.0427832156419754, 0.06902746111154556, 0.018138337880373, -0.0045845648273825645, -0.02926124632358551, 0.0015562076587229967, 0.035476990044116974, 0.017238691449165344, 0.000983704929240048, 0.006147588137537241, -0.012467836029827595, -0.012149779126048088, -0.025280989706516266, 0.011041122488677502, -0.03856668621301651, -0.009110062383115292, 0.004516409710049629, 0.025608135387301445, 0.012358787469565868, 0.03684009239077568, 0.039148278534412384, 0.018610879778862, 0.040166061371564865, -0.06913651525974274, 0.010859375819563866, -0.034313809126615524, 0.024862973019480705, 0.002685310086235404, 0.0037508010864257812, -0.04507322609424591, 0.015248563140630722, 0.003405482042580843, 0.035985883325338364, 0.027734573930501938, 0.10475890338420868, 0.09174582362174988, 0.017883893102407455, 0.012231565080583096, -0.047145139425992966, 0.011286481283605099, 0.026825839653611183, -0.038312241435050964, -0.010468619875609875, 0.05466946214437485, -0.005416057072579861, -0.06953635811805725, -0.030079107731580734, -0.013621928170323372, -0.050780076533555984, -0.01991945691406727, 0.002962474012747407, -0.019937632605433464, -0.016157297417521477, -0.01832008548080921, 0.02857060916721821, 0.04525497183203697, -0.028788704425096512, 0.04503687471151352, 0.011168345808982849, -0.0013131211744621396, -0.007238069549202919, -0.0010785540798678994, -0.010904812254011631, -0.012249739840626717, 0.03853033855557442, -0.016593489795923233, -0.006220286712050438, 0.026625918224453926, -0.04136558994650841, -0.029097674414515495, -0.04238337278366089, -0.07269874960184097, 0.010832114145159721, -0.027516476809978485, -0.01749313622713089, -0.019156120717525482, -0.0309333186596632, 0.05888598784804344, 0.03585865721106529, -0.01968318596482277, 0.02869783155620098, -0.02633512206375599, -0.09959729015827179, -0.011131996288895607, 0.030860619619488716, 0.048780862241983414, -0.0000725567588233389, 0.010277786292135715, -0.04289226233959198, 0.02368161827325821, 0.03809414431452751, -0.06706459820270538, -0.035058971494436264, -0.02404511161148548, 0.05801360309123993, -0.031042367219924927, 0.015184951946139336, 0.021555179730057716, 0.019374217838048935, -0.0267531406134367, -0.0025399127043783665, 0.021518830209970474, -0.03293253481388092, 0.009532623924314976, 0.05132531747221947, 0.053942471742630005, -0.005011670291423798, 0.024663051590323448, 0.06913651525974274, 0.012940377928316593, -0.06470188498497009, 0.05735931545495987, 0.030115457251667976, -0.061793938279151917, 0.006742808967828751, -0.07807845622301102, 0.008410336449742317, -0.011359179392457008, -0.050307534635066986, -0.01953778974711895, 0.05390612408518791, 0.00300109526142478, 0.0014653342077508569, 0.02708028443157673, 0.04260146617889404, 0.05506930500268936, -0.03994796425104141, 0.07691527903079987, -0.01777484454214573, 0.028716007247567177, 0.030497126281261444, -0.05481485649943352, 0.024644875898957253, 0.0748797133564949, -0.05521470308303833, -0.02549908682703972, 0.0031237744260579348, -0.03918462619185448, 0.03284166008234024, 0.02735290490090847, 0.023827016353607178, -0.045981958508491516, 0.049144357442855835, 0.019737711176276207, -0.04918070510029793, 0.014576099812984467, -0.0032918902579694986, -0.013939985074102879, -0.10286873579025269, -0.020246602594852448, -0.01944691501557827, 0.0075424956157803535, -0.022718358784914017, -0.011041122488677502, 0.03922097757458687, 0.04936245083808899, -0.026553219184279442, -0.00021795426437165588, 0.03531341999769211, -0.037149060517549515, 0.03693096712231636, 0.018074726685881615, 0.013967247679829597, -0.020210253074765205, 0.045473068952560425, 0.023427171632647514, -0.006465645041316748, -0.01534852385520935, 0.08920136839151382, -0.06870032101869583, -0.008901053108274937, 0.03411388769745827, -0.02224581688642502, -0.05888598784804344, 0.03522254526615143, -0.023845190182328224, -0.026535043492913246, -0.011204695329070091, -0.03736715763807297, -0.03158760815858841, 0.029788313433527946, -0.015448484569787979, 0.03889383003115654, -0.04201987758278847, 0.040674950927495956, 0.009550798684358597, 0.015557533130049706, 0.007851464673876762, -0.019992155954241753, 0.042819563299417496, 0.01893802545964718, -0.026953062042593956, -0.06368410587310791, -0.07328034192323685, -0.01636630669236183, -0.023518046364188194, 0.047472283244132996, 0.030297204852104187, -0.02242756448686123, -0.02437225542962551, 0.000857618055306375, 0.015503008849918842, 0.04394639655947685, 0.0019844486378133297, -0.000167405916727148, -0.0032555409707129, -0.020391998812556267, 0.030206330120563507, -0.04191083088517189, 0.027062110602855682, 0.026807663962244987, -0.015657493844628334, -0.066083163022995, -0.002853425918146968, 0.042492419481277466, -0.07426177710294724, 0.09567155689001083, 0.024990195408463478, 0.03424111008644104, -0.02126438543200493, 0.03794874623417854, 0.053797077387571335, -0.03754890337586403, 0.007833290845155716, 0.008746568113565445, -0.015830153599381447, -0.051943257451057434, -0.0115136643871665, -0.057940904051065445, -0.06470188498497009, 0.056595977395772934, -0.006388402543962002, -0.01870175451040268, -0.03305975720286369, -0.017838455736637115, 0.015575706958770752, -0.014821457676589489, 0.027970844879746437, 0.08440324664115906, 0.057759158313274384, 0.016130035743117332, -0.004159731790423393, 0.03958446905016899, -0.035840485244989395, -0.0669555515050888, 0.04060225188732147, -0.023227250203490257, -0.04401909187436104, 0.053433582186698914, -0.00781965907663107, 0.028861403465270996, -0.07996862381696701, 0.0031896575819700956, 0.043473854660987854, -0.04918070510029793, -0.006165762897580862, 0.04318305850028992, 0.018592705950140953, -0.0012676845071837306, 0.013994509354233742, -0.018383696675300598, 0.05103452131152153, 0.05168881267309189, -0.04772673174738884, 0.024644875898957253, 0.072553351521492, 0.03191475197672844, -0.03331420198082924, 0.0437282994389534, -0.05554184690117836, -0.011604538187384605, 0.030951492488384247, -0.023063678294420242, -0.04609100893139839, -0.014012684114277363, 0.023227250203490257, -0.025244642049074173, -0.004087032750248909, -0.032859835773706436, 0.07480701804161072, 0.04321940615773201, 0.01276771817356348, -0.006997254677116871, -0.006388402543962002, 0.019501440227031708, 0.03364134579896927, 0.017947504296898842, 0.0035349768586456776, -0.015884676948189735, -0.0311695896089077, 0.059431228786706924, -0.08360356092453003, -0.07793305814266205, -0.04292861372232437, -0.0055841729044914246, 0.004643632564693689, 0.005615978501737118, 0.014776021242141724, -0.012595058418810368, -0.007065409794449806, 0.017047857865691185, -0.07611559331417084, -0.0042892261408269405, 0.0018992548575624824, -0.032260071486234665, 0.03609493002295494, -0.016248170286417007, 0.018383696675300598, 0.013531055301427841, 0.03802144527435303, 0.009768894873559475, 0.025644484907388687, 0.021646052598953247, -0.04260146617889404, 0.03969351947307587, 0.029515692964196205, -0.01893802545964718, -0.02693488635122776, -0.009223653934895992, -0.02940664440393448, -0.02973378822207451, -0.03278713673353195, -0.03376856818795204, -0.017611272633075714, 0.0008366035763174295, -0.031478557735681534, 0.02079184353351593, -0.017411351203918457, 0.012804067693650723, -0.014785108156502247, -0.029788313433527946, -0.001304033794440329, -0.002467213897034526, 0.0033077930565923452, 0.009414488449692726, 0.022027721628546715, 0.015930114313960075, -0.020246602594852448, -0.027516476809978485, -0.02497202157974243, 0.011504577472805977, -0.016175471246242523, 0.05197960510849953, 0.019192470237612724, 0.03047895058989525, -0.02391788922250271, -0.09966998547315598, 0.030315378680825233, 0.001595964771695435, 0.06230282783508301, -0.016202734783291817, 0.0651017278432846, -0.01130465604364872, 0.05470580980181694, 0.03084244579076767, 0.024626702070236206, 0.03805779665708542, -0.04754498228430748, -0.01560296956449747, -0.009341789409518242, -0.02433590777218342, -0.002608067588880658, 0.03127863630652428, 0.02642599679529667, -0.06571967154741287, -0.04271051660180092, -0.0963258445262909, 0.031787529587745667, -0.043001312762498856, -0.005974928382784128, 0.0038575774524360895, -0.0688820630311966, -0.007297137286514044, 0.0479084774851799, 0.03245999291539192, 0.055614545941352844, -0.0066337608732283115, -0.005697764456272125, 0.06299346685409546, 0.011668149381875992, 0.004227886907756329, 0.02084636688232422, 0.017947504296898842, 0.045000527054071426, -0.035476990044116974, -0.002282059285789728, -0.031514909118413925, -0.0007428903481923044, -0.030315378680825233, -0.0004038188490085304, 0.05550549551844597, 0.030896969139575958, -0.03962082043290138, -0.040638603270053864, -0.018865326419472694, 0.04627275466918945, -0.04987134411931038, 0.029006801545619965, 0.01251327246427536, 0.018901675939559937, -0.0055659981444478035, 0.03176935389637947, 0.01702968217432499, -0.06822777539491653, -0.0038643928710371256, 0.005370620172470808, 0.010713978670537472, 0.04452798515558243, -0.015739278867840767, -0.014812370762228966, 0.027316555380821228, -0.02786179631948471, -0.02493567205965519, -0.010005165822803974, -0.030824270099401474, 0.029970059171319008, 0.024663051590323448, 0.02669861540198326, 0.02070096880197525, 0.015575706958770752, 0.002492204075679183, 0.03418658673763275, -0.065138079226017, 0.011231957003474236, 0.009977903217077255, -0.03776700049638748, 0.00565232802182436, 0.045109573751688004, -0.023027328774333, -0.041983529925346375, -0.04089304804801941, 0.017384089529514313, 0.06353870779275894, -0.0339503176510334, 0.012322437949478626, 0.01137735415250063, -0.034350160509347916, 0.025408213958144188, -0.0758247971534729, 0.012467836029827595, -0.02624424919486046, 0.0067473528906702995, 0.014485226012766361, 0.014676060527563095, 0.06339330971240997, -0.035095322877168655, -0.022154944017529488, -0.020228426903486252, -0.008996470831334591, -0.032859835773706436, -0.00870113167911768, -0.021882323548197746, 0.053651679307222366, 0.04252877086400986, -0.01902889832854271, -0.04972594603896141, 0.058304399251937866, 0.013412919826805592, -0.03102419152855873, 0.010750328190624714, -0.020355651155114174, 0.01832008548080921, 0.010432270355522633, 0.0019265168812125921, 0.03496810048818588, 0.06004916876554489, -0.013640102930366993, 0.015139514580368996, 0.05754106119275093, -0.02242756448686123, -0.05790455639362335, -0.03838494047522545, 0.020719144493341446, 0.01188624557107687, -0.057940904051065445, -0.016166385263204575, 0.010314134880900383, 0.0108139393851161, -0.000073834671638906, -0.035840485244989395, 0.018828976899385452, -0.07589749246835709, 0.001856090035289526, 0.06295711547136307, 0.012113429605960846, -0.012331525795161724, 0.0037712478078901768, -0.034404683858156204, -0.02842521108686924, 0.02717115730047226, 0.01786571741104126, 0.023009154945611954, 0.08956485986709595, -0.038966529071331024, -0.048998959362506866, -0.009596235118806362, 0.025753531605005264, -0.05517835170030594, -0.0316239558160305, 0.049144357442855835, 0.0221004206687212, 0.018956199288368225, 0.02159152925014496, -0.09000105410814285, 0.07135382294654846, 0.014112644828855991, -0.01986493356525898, 0.020573746412992477, -0.03540429100394249, 0.010868463665246964, -0.03409571573138237, -0.14110827445983887, 0.014085383154451847, 0.020319301635026932, 0.06586506962776184, 0.012249739840626717, -0.03929367661476135, -0.035476990044116974, -0.018865326419472694, -0.006283898372203112, -0.04725418984889984, -0.0038621211424469948, 0.038348592817783356, 0.009160042740404606, 0.03660381957888603, 0.055796291679143906, 0.04783577844500542, -0.04267416521906853, 0.0002473461499903351, -0.05735931545495987, 0.05325183644890785, 0.05986742302775383, -0.026153376325964928, -0.01688428409397602, -0.0067473528906702995, -0.004064314533025026, 0.06953635811805725, 0.01176811009645462, 0.07139017432928085, -0.03389579430222511, -0.03845763951539993, -0.003141949186101556, 0.03573143482208252, -0.025426387786865234, -0.028552433475852013, 0.010495882481336594, -0.055287398397922516, -0.007547039072960615, 0.025880755856633186, -0.0730258971452713, 0.03389579430222511, -0.05841344594955444, -0.01067762915045023, 0.050961825996637344, -0.02028295211493969, -0.001522130100056529, 0.03576778620481491, 0.025753531605005264, -0.020064854994416237, -0.034640952944755554, -0.01358557865023613, 0.038966529071331024, 0.029751963913440704, 0.011086559854447842, -0.01370371412485838, 0.0031805704347789288, -0.011104734614491463, 0.03940272331237793, -0.022500263527035713, -0.025408213958144188, 0.0003811004862654954, 0.05855884402990341, -0.009128237143158913, -0.02818894013762474, -0.08069561421871185, -0.027280205860733986, -0.023936063051223755, -0.02958839200437069, 0.06444744020700455, -0.014503400772809982, 0.009868855588138103, -0.015557533130049706 ]
9,446
asyncclick.core
add_command
Registers another :class:`Command` with this group. If the name is not provided, the name of the command is used.
def add_command(self, cmd: Command, name: t.Optional[str] = None) -> None: """Registers another :class:`Command` with this group. If the name is not provided, the name of the command is used. """ name = name or cmd.name if name is None: raise TypeError("Command has no name.") _check_multicommand(self, name, cmd, register=True) self.commands[name] = cmd
(self, cmd: asyncclick.core.Command, name: Optional[str] = None) -> NoneType
[ 0.002718610456213355, -0.015019605867564678, 0.011774030514061451, 0.006407365668565035, 0.0163425300270319, 0.012823550961911678, -0.0002807081036735326, -0.005441630724817514, 0.06921542435884476, -0.00683952122926712, 0.04914224520325661, -0.03693605959415436, -0.007029140368103981, 0.004105476662516594, -0.02181943878531456, -0.016060305759310722, 0.0802927166223526, 0.02187235653400421, -0.06611096113920212, -0.018573863431811333, 0.02852225862443447, 0.0812099426984787, 0.05136475712060928, -0.008435850031673908, 0.018379835411906242, 0.08678386360406876, 0.04169858992099762, 0.00868279580026865, -0.0024033132940530777, -0.03280853480100632, -0.01406710036098957, -0.05404588580131531, -0.0012424468295648694, -0.026229187846183777, -0.041275251656770706, -0.012144449166953564, -0.019738037139177322, 0.01593683287501335, -0.024906262755393982, 0.003269829088822007, 0.04949502646923065, 0.0030890293419361115, 0.03954663127660751, -0.01039818860590458, 0.03852356970310211, -0.007073237560689449, -0.009075263515114784, 0.0210433229804039, -0.06872153282165527, -0.0161396823823452, -0.005706215277314186, -0.05252893269062042, 0.019085394218564034, -0.0055165961384773254, -0.033990345895290375, 0.005472498945891857, 0.03693605959415436, 0.04938919097185135, -0.04226303473114967, 0.04374471306800842, -0.0093222102150321, 0.0259469635784626, -0.008973839692771435, -0.016377808526158333, -0.019649842754006386, -0.01807997189462185, -0.021784160286188126, -0.05259948968887329, -0.009031166322529316, 0.05609200894832611, -0.024870986118912697, -0.022701388224959373, 0.011183124035596848, -0.04667278379201889, -0.0012689053546637297, 0.04427388310432434, -0.015257732011377811, -0.009216375648975372, 0.07570657134056091, 0.04473249614238739, -0.008083070628345013, 0.03194422274827957, 0.015054883435368538, 0.031609080731868744, -0.03400798514485359, 0.05351671576499939, 0.002465049736201763, -0.03757106512784958, -0.00590906385332346, -0.0745776817202568, 0.011871044524013996, -0.05531589314341545, 0.015504677779972553, 0.039405517280101776, 0.03395506739616394, -0.062195103615522385, -0.003388892160728574, 0.02658196911215782, -0.023389309644699097, 0.06988570839166641, -0.07136738300323486, 0.0033514094538986683, 0.04900113493204117, -0.04325082153081894, -0.004158393479883671, -0.04035802558064461, -0.0007590280729345977, 0.026387939229607582, -0.07076765596866608, 0.020637625828385353, 0.02245444245636463, 0.0653701201081276, 0.04416804760694504, -0.013864251784980297, 0.05415172129869461, 0.036265779286623, -0.05436338856816292, -0.05069447681307793, -0.00545485969632864, 0.020284846425056458, -0.024447649717330933, 0.03661855682730675, 0.039405517280101776, -0.01594565249979496, 0.02749919518828392, -0.01513425912708044, 0.0007165842689573765, -0.029845181852579117, 0.02898087166249752, -0.005935522262006998, 0.013890709728002548, 0.0056224302388727665, 0.006733687128871679, -0.02208402380347252, 0.044238604605197906, 0.011271319352090359, -0.008506406098604202, -0.014966689050197601, -0.05020058527588844, 0.041733864694833755, 0.016280794516205788, 0.01217090804129839, -0.015116619877517223, -0.010803885757923126, -0.02259555459022522, -0.014693284407258034, -0.028892677277326584, 0.0029964246787130833, -0.00041451642755419016, -0.020443597808480263, -0.013432095758616924, -0.02330111525952816, 0.0025135569740086794, 0.018097611144185066, 0.024165425449609756, 0.03919385001063347, -0.005335796624422073, -0.0038298671133816242, -0.05274059996008873, -0.0102658960968256, 0.013379178941249847, -0.015407663770020008, -0.020496513694524765, 0.024447649717330933, -0.004669924266636372, 0.011571181938052177, 0.004564090631902218, 0.0005721649504266679, 0.00848435703665018, 0.02968643233180046, 0.019208867102861404, -0.0001371156395180151, 0.07662380486726761, 0.015328288078308105, -0.035789523273706436, -0.003633633255958557, -0.035789523273706436, -0.00024818620295263827, -0.0076597342267632484, -0.09461557865142822, -0.0007650915067642927, 0.04713140055537224, 0.0528111569583416, 0.002795781008899212, -0.04854251816868782, -0.025470711290836334, 0.04868363216519356, 0.019332339987158775, 0.006120732054114342, 0.01165055762976408, 0.023459866642951965, 0.029986293986439705, 0.017709553241729736, -0.005159406457096338, 0.009366307407617569, -0.010283535346388817, -0.03866467997431755, 0.0027671176940202713, 0.05214087292551994, 0.039158571511507034, 0.000934315612539649, 0.0015533341793343425, 0.03504868596792221, 0.05584506317973137, 0.047801680862903595, 0.021343186497688293, 0.021184435114264488, 0.01509898155927658, 0.047025565057992935, -0.03704189509153366, 0.045543890446424484, -0.007478934712707996, -0.0110067343339324, 0.07535379379987717, -0.006036946550011635, 0.014534533023834229, 0.016889339312911034, -0.0077655683271586895, 0.0372888408601284, 0.021995829418301582, 0.06819236278533936, 0.07429545372724533, 0.02795781008899212, 0.05898480489850044, -0.03898218274116516, -0.011756391264498234, 0.028945593163371086, -0.007483344525098801, 0.023671533912420273, 0.0644528940320015, 0.009260473772883415, 0.019596925005316734, -0.023971397429704666, -0.032367561012506485, -0.06607568264007568, -0.013432095758616924, -0.010627496056258678, 0.003975389059633017, 0.017833026126027107, -0.00028911419212818146, 0.019738037139177322, 0.05743257328867912, -0.03619522228837013, 0.05065919831395149, 0.016615934669971466, 0.003040522104129195, -0.031344495713710785, 0.028363507241010666, -0.016289614140987396, -0.01388189010322094, -0.007761158514767885, 0.008043382316827774, 0.021660687401890755, -0.023795006796717644, -0.07888159155845642, 0.002659078687429428, -0.0644528940320015, -0.039405517280101776, 0.004495739471167326, 0.023900840431451797, -0.04296859726309776, 0.029033789411187172, -0.005044753197580576, -0.014966689050197601, 0.005701805930584669, -0.018185805529356003, 0.004339192993938923, 0.021078601479530334, -0.009009117260575294, 0.032879091799259186, 0.07260210812091827, 0.04356832057237625, 0.00891210325062275, -0.04085191711783409, -0.014314046129584312, 0.016289614140987396, 0.016554199159145355, 0.028645731508731842, -0.018432751297950745, -0.04727251082658768, 0.05856147035956383, -0.010883261449635029, 0.018432751297950745, 0.04113414138555527, -0.0528111569583416, 0.006980632897466421, 0.024994459003210068, 0.020214291289448738, -0.027022942900657654, 0.011244860477745533, -0.005265240557491779, 0.053551994264125824, -0.0018024849705398083, 0.018820809200406075, -0.008471128530800343, 0.006865979637950659, -0.0115182651206851, 0.03413145989179611, -0.00971026811748743, 0.006962994113564491, 0.0018785531865432858, -0.037994399666786194, -0.06240677088499069, 0.012250283733010292, -0.029457123950123787, -0.019738037139177322, 0.029033789411187172, -0.0274286400526762, -0.0322793647646904, -0.008440259844064713, 0.01710100658237934, 0.076412133872509, -0.05404588580131531, 0.08346772938966751, 0.030233239755034447, 0.04519110918045044, 0.05595089867711067, -0.0007160330424085259, -0.006125141866505146, 0.002484893659129739, -0.023160003125667572, -0.02956295944750309, -0.02497681975364685, -0.02601752057671547, 0.0017473631305620074, 0.07507157325744629, 0.0023481915704905987, 0.001535695162601769, 0.01987914927303791, 0.054257553070783615, -0.03284381330013275, -0.02148429863154888, -0.018432751297950745, 0.03661855682730675, -0.06240677088499069, -0.060325369238853455, -0.035789523273706436, -0.05633895471692085, -0.03393742814660072, 0.0006779989344067872, 0.008356474339962006, 0.049671415239572525, -0.07104987651109695, -0.02550598978996277, 0.05468089133501053, -0.07034432142972946, 0.04448555037379265, -0.004669924266636372, -0.029598236083984375, 0.04441499337553978, -0.014058280736207962, -0.0044538467191159725, -0.008696025237441063, -0.06960348039865494, 0.10301174223423004, 0.023336391896009445, -0.008942971006035805, 0.011694654822349548, -0.004700792487710714, -0.10272951424121857, -0.011562362313270569, -0.01704809069633484, 0.019402896985411644, -0.0036711161956191063, -0.10040117055177689, -0.004528812598437071, 0.0012876468244940042, 0.007924319244921207, 0.020514152944087982, -0.035648413002491, 0.047801680862903595, 0.010045408271253109, 0.03517216071486473, 0.05094142258167267, -0.05778535455465317, 0.045543890446424484, 0.02587640844285488, -0.03529563173651695, -0.056762292981147766, -0.12551909685134888, 0.004736070521175861, -0.007254037540405989, 0.01627197489142418, 0.03552493825554848, 0.023212919011712074, -0.0037306477315723896, 0.03575424477458, 0.02781669795513153, 0.016924617812037468, -0.051153089851140976, 0.040710803121328354, 0.011985698714852333, -0.005146177485585213, 0.04131053015589714, -0.0919344499707222, -0.014613908715546131, -0.006178058683872223, -0.041028305888175964, -0.10893844813108444, -0.003704189322888851, 0.02769322507083416, -0.011932780966162682, 0.0860077515244484, 0.013370359316468239, -0.0008587986812926829, -0.032826174050569534, -0.07944604009389877, 0.06226566061377525, -0.06297121942043304, 0.02136082574725151, -0.02871628664433956, -0.020637625828385353, -0.030497824773192406, -0.029580596834421158, -0.053234491497278214, -0.03894690424203873, 0.04794279485940933, -0.020496513694524765, -0.03040963038802147, -0.004555271007120609, -0.035718970000743866, 0.0029611466452479362, -0.05961981043219566, 0.07009737193584442, 0.02349514327943325, 0.03266742080450058, 0.028416423127055168, -0.004400929901748896, -0.01336153969168663, -0.020108455792069435, -0.04755473509430885, 0.04614361748099327, 0.015151898376643658, -0.013537930324673653, 0.028257673606276512, -0.03453715518116951, 0.023442227393388748, -0.05750313028693199, -0.02711113728582859, 0.015469400212168694, -0.07030904293060303, -0.0052167330868542194, -0.02342458814382553, -0.008475538343191147, -0.040181633085012436, -0.010768607258796692, 0.02284250035881996, 0.01023061852902174, 0.03510160371661186, -0.07789380848407745, 0.07034432142972946, 0.0880538746714592, 0.003256599884480238, 0.007836123928427696, 0.07217877358198166, -0.06145426630973816, 0.02859281376004219, -0.04007580131292343, 0.0017407485283911228, -0.012056254781782627, -0.06184232234954834, 0.04582611471414566, -0.06106620654463768, 0.02169596590101719, -0.021413741633296013, 0.05894952639937401, 0.027481557801365852, 0.010107145644724369, 0.024553483352065086, -0.011491806246340275, -0.017656635493040085, 0.011544723063707352, 0.03284381330013275, -0.011703474447131157, -0.035154521465301514, -0.05034169554710388, 0.05252893269062042, -0.02458876185119152, -0.05538645014166832, -0.00575913256034255, 0.00012912297097500414, 0.004354627337306738, 0.011826947331428528, 0.01768309436738491, 0.012620702385902405, 0.058632027357816696, 0.009331028908491135, -0.032561589032411575, 0.002989809960126877, 0.03965246304869652, -0.0166512131690979, 0.029386568814516068, -0.018379835411906242, 0.014631547965109348, -0.05499839037656784, 0.03460771217942238, -0.01794767938554287, -0.02162541076540947, 0.022948333993554115, -0.003005244070664048, 0.05626840144395828, -0.009401584975421429, -0.02284250035881996, -0.024500567466020584, 0.025594184175133705, -0.019914427772164345, -0.004594958852976561, 0.010821525007486343, -0.011015553958714008, 0.018344556912779808, -0.033531732857227325, -0.018309278413653374, -0.0037549014668911695, 0.02356570027768612, 0.06350038945674896, -0.034113820642232895, 0.0032962874975055456, -0.02439473196864128, -0.02517084777355194, 0.016051487997174263, 0.02019665203988552, 0.008603421039879322, -0.018891366198658943, -0.045473333448171616, -0.025453072041273117, -0.013617306016385555, -0.0694623664021492, -0.05824396759271622, 0.02601752057671547, 0.029704071581363678, 0.062442049384117126, 0.041028305888175964, -0.037147726863622665, -0.0036865503061562777, 0.05136475712060928, 0.01769191399216652, 0.0006096478318795562, 0.0987783819437027, -0.05094142258167267, 0.00387396477162838, 0.0027450688648968935, -0.027799058705568314, 0.06226566061377525, -0.03386687487363815, 0.012523687444627285, 0.03573660925030708, 0.018291639164090157, -0.00500065553933382, 0.04603778198361397, -0.03427257016301155, -0.06918014585971832, -0.019261784851551056, -0.10661009699106216, 0.002334962133318186, 0.021766522899270058, 0.02968643233180046, -0.005146177485585213, -0.031591445207595825, -0.02187235653400421, -0.004070198629051447, 0.004899231251329184, 0.06695763021707535, -0.009577975608408451, 0.008210953325033188, 0.028610453009605408, -0.05439866706728935, -0.02174888364970684, 0.001262290752492845, 0.03735939413309097, -0.02213694155216217, -0.03982885554432869, -0.005741493310779333, -0.033602289855480194, -0.062124546617269516, -0.006142780650407076, 0.020637625828385353, 0.05796174332499504, 0.04109886288642883, -0.059408143162727356, 0.007545080967247486, -0.07175543904304504, 0.03242047503590584, -0.05157642811536789, 0.02975698746740818, -0.02109624072909355, 0.023265836760401726, -0.02226041443645954, -0.008793040178716183, 0.01786830462515354, -0.009701448492705822, -0.010821525007486343, -0.003975389059633017, 0.0498478040099144, -0.0029390978161245584, 0.04296859726309776, 0.0042443834245204926, 0.012126809917390347, 0.0013879685429856181, -0.033161312341690063, -0.031591445207595825, 0.03929968550801277, 0.019720397889614105, -0.00427966145798564, 0.033267147839069366, 0.0283987857401371, 0.036900781095027924, -0.052705321460962296, -0.0008510816260240972, -0.058385077863931656, -0.03194422274827957, -0.029474763199687004, -0.015054883435368538, -0.03097407892346382, 0.10484619438648224, 0.01774483174085617, -0.0028509029652923346, -0.03175019472837448, -0.009816101752221584, 0.05295226722955704, 0.031397413462400436, 0.033020202070474625, 0.03891162574291229, -0.02187235653400421, -0.012347297742962837, -0.01994970627129078, -0.014446338638663292, -0.0381002314388752, 0.023971397429704666, 0.014005363918840885, 0.013767236843705177, -0.031926583498716354, 0.00724521791562438, 0.006870389450341463, -0.0675220787525177, 0.011244860477745533, -0.02781669795513153, -0.05926702916622162, 0.006204517092555761, 0.022895418107509613, -0.011580001562833786, -0.0018653238657861948, -0.003653477178886533, 0.025999881327152252, -0.034431323409080505, -0.014913772232830524, 0.041486918926239014, -0.019596925005316734, -0.029033789411187172, 0.020355401560664177, -0.03058602102100849, 0.019385257735848427, 0.009260473772883415, 0.031344495713710785, 0.02181943878531456, 0.10089506208896637, -0.050906144082546234, -0.05902008339762688, -0.028681008145213127, -0.017594899982213974, -0.011333055794239044, -0.004385495558381081, -0.009128181263804436, 0.050130028277635574, 0.004974197130650282, -0.05630367621779442, 0.0025488350074738264, 0.02247208170592785, -0.06508789956569672, -0.024430010467767715, 0.02026720717549324, -0.010248256847262383, -0.03007449023425579, -0.04487360641360283, -0.03852356970310211, 0.01968512125313282, 0.013317442499101162, 0.03406090289354324, -0.03593063727021217, 0.04346248880028725, -0.0015643584774807096, -0.06985042989253998, -0.05252893269062042, 0.051082536578178406, -0.003417555708438158, -0.06600512564182281, 0.04332137480378151, 0.06716930121183395, -0.023160003125667572, 0.02264847233891487, -0.02769322507083416, 0.054892558604478836, 0.04540277644991875, 0.015434122644364834, -0.009851379320025444, -0.01832691766321659, 0.0173655916005373, -0.0016801144229248166, -0.0958150327205658, -0.04406221583485603, 0.02342458814382553, 0.022577915340662003, -0.009719086810946465, -0.02587640844285488, -0.06177176535129547, -0.012364936992526054, -0.0095250578597188, -0.029986293986439705, -0.02174888364970684, 0.046566952019929886, 0.005873785819858313, 0.004079017788171768, 0.011976879090070724, 0.006495560519397259, 0.0274286400526762, 0.00500065553933382, -0.05094142258167267, 0.017250938341021538, 0.04039330407977104, -0.032561589032411575, 0.016704130917787552, -0.0002586593618616462, 0.03563077375292778, 0.049812525510787964, -0.04303915053606033, 0.03436076641082764, -0.043674156069755554, -0.0016580657102167606, -0.05020058527588844, 0.01594565249979496, -0.030497824773192406, -0.05326976999640465, 0.061030928045511246, -0.003922471776604652, 0.06021953374147415, 0.022948333993554115, -0.031026994809508324, 0.026634884998202324, -0.02324819751083851, 0.001776026445440948, 0.036124665290117264, -0.05595089867711067, -0.007540671154856682, 0.02852225862443447, -0.04603778198361397, 0.007955187931656837, -0.0529169887304306, 0.018362196162343025, 0.07422489672899246, -0.04871891066431999, 0.04684917628765106, -0.0024716644547879696, -0.0008676181314513087, -0.010565758682787418, 0.06745152175426483, -0.0264055784791708, -0.03623050078749657, 0.016933437436819077, 0.0830443948507309, 0.055104225873947144, -0.01561933197081089, -0.01139479223638773, -0.003574101720005274, -0.01994970627129078, -0.05626840144395828, 0.005798820406198502, -0.04028746858239174, -0.01582217961549759, -0.004339192993938923 ]
9,448
asyncclick.core
command
A shortcut decorator for declaring and attaching a command to the group. This takes the same arguments as :func:`command` and immediately registers the created command with this group by calling :meth:`add_command`. To customize the command class used, set the :attr:`command_class` attribute. .. versionchanged:: 8.1 This decorator can be applied without parentheses. .. versionchanged:: 8.0 Added the :attr:`command_class` attribute.
def command( self, *args: t.Any, **kwargs: t.Any ) -> t.Union[t.Callable[[t.Callable[..., t.Any]], Command], Command]: """A shortcut decorator for declaring and attaching a command to the group. This takes the same arguments as :func:`command` and immediately registers the created command with this group by calling :meth:`add_command`. To customize the command class used, set the :attr:`command_class` attribute. .. versionchanged:: 8.1 This decorator can be applied without parentheses. .. versionchanged:: 8.0 Added the :attr:`command_class` attribute. """ from .decorators import command func: t.Optional[t.Callable[..., t.Any]] = None if args and callable(args[0]): assert ( len(args) == 1 and not kwargs ), "Use 'command(**kwargs)(callable)' to provide arguments." (func,) = args args = () if self.command_class and kwargs.get("cls") is None: kwargs["cls"] = self.command_class def decorator(f: t.Callable[..., t.Any]) -> Command: cmd: Command = command(*args, **kwargs)(f) self.add_command(cmd) return cmd if func is not None: return decorator(func) return decorator
(self, *args: Any, **kwargs: Any) -> Union[Callable[[Callable[..., Any]], asyncclick.core.Command], asyncclick.core.Command]
[ 0.02641100063920021, -0.056584663689136505, 0.037301015108823776, -0.032036904245615005, 0.034044865518808365, -0.005562590900808573, -0.032814763486385345, 0.026139654219150543, 0.02163531258702278, -0.01782742515206337, 0.040665704756975174, 0.00012832399806939065, 0.016099857166409492, -0.022178003564476967, -0.007995659485459328, 0.014616498723626137, 0.03997829556465149, -0.006073625758290291, -0.013449711725115776, -0.014462736435234547, 0.06306078284978867, 0.06997106224298477, 0.0290159210562706, -0.04960202798247337, 0.008049928583204746, 0.10325615853071213, 0.021363966166973114, 0.01946454495191574, 0.026049206033349037, -0.02020622417330742, -0.006295224651694298, -0.04945731163024902, -0.013115051202476025, 0.021997107192873955, -0.01931982859969139, 0.021653402596712112, 0.01156837958842516, 0.06284371018409729, -0.03243488073348999, -0.010582489892840385, -0.025217078626155853, -0.01212916150689125, 0.04337916523218155, -0.02641100063920021, 0.022901592776179314, -0.004221689887344837, 0.03997829556465149, 0.012210565619170666, -0.06939218938350677, -0.05593343451619148, 0.06997106224298477, -0.028437050059437752, 0.034985531121492386, -0.03607091307640076, -0.020314762368798256, 0.005653039552271366, 0.04945731163024902, 0.045477572828531265, -0.013033648021519184, 0.0004980327794328332, -0.006489689461886883, 0.044211290776729584, -0.0053274245001375675, 0.007787627167999744, -0.000415215763496235, -0.0362698994576931, -0.04960202798247337, -0.029703330248594284, -0.014498915523290634, 0.052279308438301086, -0.05314761772751808, 0.012816570699214935, 0.044211290776729584, -0.044211290776729584, -0.018777135759592056, -0.04334298521280289, -0.0304088294506073, -0.02981186844408512, 0.09898698329925537, 0.02009768597781658, -0.03192836791276932, -0.007959479466080666, 0.004499819595366716, 0.05615051090717316, 0.040701884776353836, -0.01321454532444477, -0.022937772795557976, 0.016443561762571335, -0.059370480477809906, -0.05032561719417572, -0.04891461879014969, -0.047322724014520645, -0.019573083147406578, 0.027206948027014732, -0.008271527476608753, -0.022322721779346466, 0.0027518996503204107, 0.06201158091425896, 0.004434244241565466, 0.047612160444259644, -0.05264110490679741, 0.057525329291820526, 0.06819827109575272, 0.006322359200567007, 0.0026614509988576174, -0.04200434312224388, -0.0401591919362545, 0.05651230365037918, -0.0937771424651146, -0.008511216379702091, -0.002731548622250557, 0.027405936270952225, 0.03755427151918411, 0.007670043967664242, 0.029829958453774452, -0.012065847404301167, -0.08082489669322968, -0.06009406968951225, -0.011423662304878235, -0.033719249069690704, -0.046707674860954285, 0.03335745632648468, 0.027821999043226242, -0.027442114427685738, 0.039001449942588806, 0.005182706750929356, 0.0007642909185960889, -0.02268451638519764, 0.04214906319975853, -0.03704775869846344, 0.017917873337864876, 0.03073444589972496, 0.0036857817322015762, 0.010917149484157562, 0.031801737844944, 0.02082127518951893, 0.011297034099698067, -0.00406792713329196, -0.07894356548786163, 0.07065846771001816, 0.02841896004974842, 0.007091172505170107, -0.006032923702150583, 0.025994936004281044, -0.0046716718934476376, -0.05868307128548622, 0.019573083147406578, -0.013404487632215023, 0.008972504176199436, -0.03478654474020004, -0.008949891664087772, -0.022340811789035797, 0.051953695714473724, 0.023968886584043503, 0.032941389828920364, 0.046562954783439636, -0.01727568916976452, 0.021852388978004456, -0.002194509841501713, -0.00804088357836008, 0.007190666161477566, 0.020586108788847923, -0.0008858313085511327, 0.023100581020116806, 0.021997107192873955, 0.008977026678621769, 0.024909554049372673, -0.022340811789035797, 0.015828510746359825, 0.056259047240018845, 0.011324169114232063, 0.027279308065772057, 0.08017366379499435, 0.04627351835370064, -0.08321274071931839, 0.051953695714473724, -0.01529486384242773, 0.023209119215607643, 0.016380246728658676, -0.0546671524643898, 0.030354561284184456, 0.01141461730003357, 0.03409913554787636, -0.02686324343085289, 0.0020995389204472303, 0.03058972768485546, 0.08878437429666519, 0.0003349425969645381, -0.039435602724552155, -0.039290886372327805, -0.0228654146194458, 0.007715268060564995, 0.041136037558317184, 0.013115051202476025, -0.011179450899362564, -0.038494937121868134, -0.061034735292196274, 0.017691751942038536, 0.04960202798247337, 0.033122289925813675, 0.004811867140233517, 0.01181259099394083, 0.07315485179424286, 0.03288712352514267, 0.013540159910917282, 0.003887029830366373, -0.004436505492776632, 0.040846601128578186, -0.03428003191947937, -0.05202605202794075, 0.03547395393252373, -0.03813314437866211, -0.026320552453398705, 0.07409551739692688, -0.005209841299802065, -0.005381693597882986, 0.0605282224714756, 0.031747471541166306, 0.025217078626155853, 0.028509408235549927, 0.080318383872509, 0.050072360783815384, 0.0013793415855616331, 0.05506512522697449, 0.004348318092525005, -0.019645443186163902, 0.014598408713936806, -0.010519175790250301, 0.04142547398805618, -0.01946454495191574, 0.003059424925595522, -0.028039075434207916, -0.02827424183487892, 0.047793056815862656, -0.04620116204023361, -0.0677279382944107, 0.019211288541555405, 0.03625181317329407, 0.0006144854123704135, 0.01677822135388851, -0.013223590329289436, 0.03507598116993904, 0.036685965955257416, 0.07351664453744888, 0.0023335746955126524, 0.005182706750929356, -0.018333937972784042, 0.01803545653820038, -0.0037513570860028267, -0.01846056617796421, -0.06490594148635864, 0.016606368124485016, 0.03809696435928345, -0.005490231793373823, -0.06367583572864532, 0.010546310804784298, -0.05853835493326187, -0.0515918992459774, -0.012165340594947338, 0.003835021983832121, -0.03391823545098305, -0.013929089531302452, 0.013494935818016529, 0.0009502759203314781, 0.0395803228020668, -0.008389110676944256, 0.005499276798218489, -0.03431621193885803, -0.03192836791276932, 0.03632416948676109, 0.03198263794183731, 0.04149783402681351, -0.005616859998553991, -0.016543054953217506, -0.05115774646401405, -0.007064037956297398, 0.004337011836469173, -0.06819827109575272, 0.0042352573946118355, -0.07872648537158966, 0.014001447707414627, -0.019554995000362396, -0.02145441621541977, 0.0035207129549235106, -0.008465992286801338, 0.04710564762353897, -0.0011560465209186077, 0.02825615182518959, 0.018388206139206886, 0.04204052314162254, 0.04229377955198288, 0.009533286094665527, 0.00880969688296318, 0.020495660603046417, 0.017239509150385857, 0.026917513459920883, -0.08053546398878098, 0.02858176827430725, 0.02163531258702278, -0.07243126630783081, -0.015077786520123482, -0.07188857346773148, -0.009270984679460526, 0.022340811789035797, -0.020929813385009766, 0.021201159805059433, 0.04884226247668266, -0.028780754655599594, -0.03346599265933037, -0.00888205599039793, 0.03762663155794144, 0.029594792053103447, -0.01716715097427368, 0.0006913667311891913, 0.030951522290706635, 0.031240956857800484, 0.015095876529812813, 0.013431621715426445, 0.016190305352211, 0.042547035962343216, -0.03225398063659668, -0.006874096114188433, 0.012816570699214935, 0.016425471752882004, 0.0006874095997773111, 0.022159915417432785, 0.000626922061201185, 0.01218343060463667, 0.003034551627933979, 0.08371925354003906, -0.013938134536147118, 0.0048480466939508915, -0.015222504734992981, 0.04030391201376915, -0.10043416172266006, -0.001556847128085792, 0.00995839387178421, -0.009225760586559772, -0.013106007128953934, 0.0023765377700328827, 0.0398697555065155, 0.0806078240275383, -0.012599494308233261, 0.021183069795370102, -0.007064037956297398, -0.027405936270952225, 0.03695731237530708, 0.01774602197110653, 0.0005520192789845169, 0.007362518459558487, 0.08285094797611237, 0.002962192753329873, -0.024005066603422165, -0.0703328549861908, 0.09138929843902588, -0.04431983083486557, 0.002263477072119713, 0.01688675954937935, 0.021870478987693787, -0.10253256559371948, -0.0020362248178571463, -0.029685240238904953, 0.03198263794183731, 0.019844429567456245, -0.003018723102286458, 0.007353473920375109, -0.010944284498691559, -0.0401591919362545, 0.021816210821270943, 0.00652586854994297, 0.048118673264980316, 0.00166086305398494, 0.04337916523218155, 0.03520260751247406, -0.030951522290706635, 0.037445735186338425, 0.015086831524968147, -0.03171129152178764, -0.055209845304489136, -0.04612880200147629, 0.00709569500759244, -0.011278944090008736, 0.06248191371560097, 0.0152767738327384, 0.010265919379889965, 0.028816934674978256, 0.00995839387178421, 0.03639652952551842, -0.02964906208217144, -0.053798846900463104, 0.013368307612836361, -0.022648338228464127, -0.01915702037513256, -0.012662808410823345, -0.07438495755195618, -0.022322721779346466, 0.023824170231819153, 0.015828510746359825, -0.03285094350576401, -0.05083213001489639, 0.04678003117442131, -0.01682344637811184, 0.09109985828399658, 0.01158646959811449, 0.059696096926927567, -0.02827424183487892, -0.005395261105149984, 0.022901592776179314, -0.051772795617580414, -0.011514110490679741, 0.00933429878205061, -0.052279308438301086, -0.032796673476696014, 0.026483358815312386, 0.004811867140233517, -0.01319645531475544, 0.032814763486385345, 0.032018814235925674, -0.0276230126619339, -0.04674385115504265, -0.02424023300409317, -0.0005686957738362253, -0.021816210821270943, 0.033140379935503006, 0.05068741366267204, 0.05112156644463539, 0.003443831577897072, -0.024403041228652, 0.006448987405747175, -0.009397612884640694, -0.02903401106595993, -0.021979017183184624, -0.04034008830785751, 0.02684515342116356, 0.009985528886318207, -0.0527496412396431, 0.01698625274002552, -0.018885673955082893, 0.06534009426832199, 0.06812591105699539, -0.05839363485574722, -0.04319826513528824, 0.048408105969429016, -0.007891642861068249, -0.035293057560920715, -0.03339363634586334, 0.03831404075026512, 0.032814763486385345, 0.05151953920722008, -0.02858176827430725, 0.08444283902645111, 0.08900145441293716, 0.014951159246265888, 0.01975398138165474, 0.0515918992459774, -0.05958755686879158, -0.0011532200733199716, -0.03965267911553383, -0.013549204915761948, -0.012907019816339016, -0.003394084982573986, 0.040376268327236176, -0.04518813639879227, -0.025072360411286354, -0.07612156867980957, 0.013657743111252785, 0.04489869996905327, -0.011713097803294659, -0.02130969800055027, -0.002113106194883585, 0.021653402596712112, -0.05882779136300087, -0.031874097883701324, 0.013404487632215023, 0.005178184248507023, 0.035745300352573395, 0.07597684860229492, -0.05144718289375305, -0.05267728120088577, -0.01443560142070055, -0.008710202760994434, -0.0018881151918321848, -0.024602027609944344, -0.00424656318500638, -0.03780752792954445, 0.04529667645692825, 0.02176194079220295, -0.035582490265369415, 0.008086107671260834, -0.0014437863137573004, 0.023860348388552666, 0.0756150558590889, 0.007543415762484074, -0.04504342004656792, 0.002426284598186612, 0.05198987200856209, -0.017284734174609184, -0.009659914299845695, -0.0177007969468832, -0.044356007128953934, 0.044356007128953934, 0.03654124587774277, -0.008018271066248417, -0.017022432759404182, 0.03178364783525467, -0.060890018939971924, 0.027062229812145233, -0.008705681189894676, -0.053798846900463104, -0.02776772901415825, -0.03382778912782669, 0.014308973215520382, -0.05846599489450455, 0.03252532705664635, -0.020332852378487587, -0.019971057772636414, -0.028636036440730095, -0.0006393587682396173, -0.0017829686403274536, -0.012536180205643177, 0.034967441111803055, 0.06407380849123001, -0.015765195712447166, -0.03229016065597534, -0.04403039440512657, 0.002950886497274041, 0.011387482285499573, -0.014643633738160133, 0.046997107565402985, 0.0014562229625880718, 0.0435238815844059, 0.03165702149271965, -0.05846599489450455, 0.009668958373367786, 0.005833936855196953, 0.02100217156112194, -0.061830684542655945, 0.08892909437417984, -0.02655571885406971, -0.0005364734679460526, 0.008434334769845009, 0.013006513006985188, -0.008538350462913513, 0.0014358720509335399, -0.015340087935328484, 0.017954053357243538, 0.017836470156908035, -0.03183791786432266, 0.007823806256055832, 0.008384588174521923, -0.07539797574281693, 0.007421310059726238, -0.048227209597826004, 0.05868307128548622, 0.0030255066230893135, 0.052098412066698074, -0.020260494202375412, -0.011052822694182396, -0.03263386711478233, -0.0011509588221088052, -0.015946093946695328, 0.030680175870656967, -0.026772795245051384, 0.00833936408162117, 0.007697178516536951, -0.017836470156908035, 0.06175832450389862, 0.03368306905031204, 0.007859986275434494, -0.03118668869137764, -0.08277858793735504, 0.0302641112357378, -0.02114688977599144, -0.04218524321913719, -0.01737518236041069, 0.03997829556465149, 0.018225399777293205, -0.01505065243691206, -0.05043415725231171, -0.05123010650277138, -0.046382058411836624, -0.011532200500369072, -0.021436326205730438, 0.008515738882124424, -0.07373372465372086, 0.006471599452197552, -0.022322721779346466, 0.007959479466080666, -0.04489869996905327, -0.07575977593660355, 0.025578873232007027, 0.011577424593269825, 0.02098408341407776, -0.023824170231819153, 0.037120118737220764, -0.04370477795600891, -0.02563314139842987, 0.028310421854257584, 0.01141461730003357, -0.020133865997195244, 0.013476845808327198, 0.022286543622612953, -0.008836830966174603, 0.020803185179829597, 0.0401591919362545, 0.00935238879173994, -0.023390015587210655, -0.01688675954937935, -0.059334300458431244, -0.06761939823627472, -0.06776411831378937, -0.0067022438161075115, -0.020170044153928757, 0.07525326311588287, 0.004802822135388851, 0.002186595695093274, -0.04862518608570099, 0.0026410999707877636, 0.03442474827170372, 0.01819826476275921, 0.026139654219150543, 0.020170044153928757, 0.004210383631289005, -0.005024421494454145, -0.005906295496970415, 0.02252171002328396, -0.03323082625865936, -0.000886961875949055, 0.03058972768485546, 0.006471599452197552, -0.006480644457042217, -0.01706765592098236, 0.044717803597450256, 0.0037897976581007242, 0.011505065485835075, -0.07319103181362152, -0.03704775869846344, 0.051628079265356064, 0.020785095170140266, -0.09551375359296799, 0.029214907437562943, -0.03198263794183731, 0.007846418768167496, -0.010338278487324715, 0.019356006756424904, -0.010691028088331223, -0.001769401365891099, 0.010582489892840385, 0.039146166294813156, -0.06884949654340744, 0.016470694914460182, 0.07872648537158966, -0.02704414166510105, 0.01973589137196541, 0.04884226247668266, -0.07112880051136017, -0.017736976966261864, -0.0675470381975174, 0.00463096983730793, -0.02313675917685032, -0.004232996143400669, -0.016190305352211, 0.02100217156112194, 0.02333574742078781, -0.022612158209085464, -0.03831404075026512, -0.013160276226699352, -0.06497829407453537, -0.0011679179733619094, 0.013323083519935608, 0.02223227359354496, -0.01126085501164198, -0.07351664453744888, -0.035582490265369415, -0.020441390573978424, 0.0017773156287148595, 0.042366139590740204, -0.027894357219338417, 0.018496744334697723, -0.006394718308001757, -0.046562954783439636, -0.02362518198788166, 0.011396527290344238, -0.023589003831148148, -0.08552822470664978, 0.021544864401221275, 0.03648697957396507, -0.027659190818667412, -0.0035252354573458433, -0.10188134014606476, 0.06486976146697998, 0.0260853860527277, 0.0179902333766222, -0.03133140504360199, -0.026067296043038368, 0.008560962975025177, -0.03169320151209831, -0.053183794021606445, -0.022431259974837303, -0.005928908009082079, 0.010184516198933125, -0.016316933557391167, -0.05976845696568489, -0.014372287318110466, 0.007321816869080067, -0.01761939376592636, -0.02577785961329937, -0.025416065007448196, 0.04526049643754959, 0.04692475125193596, 0.02917872928082943, 0.03386396914720535, 0.030770624056458473, 0.009705138392746449, 0.05173661559820175, -0.056584663689136505, 0.03538350388407707, 0.02376990020275116, -0.015231549739837646, 0.0012029667850583792, -0.016190305352211, -0.006453509908169508, 0.05886396765708923, -0.021418236196041107, 0.07518090307712555, -0.04008683189749718, -0.02266642637550831, -0.02206946536898613, -0.03216353431344032, -0.020115775987505913, -0.010356368497014046, 0.04026773199439049, 0.004061143379658461, -0.0049249278381466866, 0.062301017343997955, -0.03892908990383148, -0.005151049699634314, -0.053364694118499756, -0.028455140069127083, 0.029757600277662277, -0.06374819576740265, -0.015457671135663986, 0.016769176349043846, -0.04587554559111595, 0.02268451638519764, -0.03932706639170647, -0.0037332673091441393, 0.061830684542655945, 0.03473227471113205, -0.010908105410635471, -0.02500000223517418, 0.006458032410591841, 0.012165340594947338, 0.051772795617580414, 0.015783285722136497, -0.06711288541555405, 0.022015197202563286, 0.04030391201376915, 0.017483720555901527, -0.032959479838609695, -0.02641100063920021, -0.021255427971482277, -0.007235890720039606, -0.08314038068056107, 0.026899423450231552, -0.0348769910633564, 0.00786903128027916, 0.03120477870106697 ]
9,455
asyncclick.core
get_command
null
def get_command(self, ctx: Context, cmd_name: str) -> t.Optional[Command]: return self.commands.get(cmd_name)
(self, ctx: asyncclick.core.Context, cmd_name: str) -> Optional[asyncclick.core.Command]
[ 0.06352902948856354, -0.041248541325330734, 0.025784695520997047, -0.030561577528715134, 0.03197371959686279, -0.010730547830462456, 0.08933115750551224, 0.011384318582713604, 0.05387066304683685, -0.02829517424106598, 0.016161199659109116, -0.04041171446442604, -0.038842666894197464, -0.023465991020202637, -0.005251953843981028, -0.00957119558006525, 0.0631454810500145, 0.03807557746767998, 0.0074137537740170956, -0.023082446306943893, 0.07636035978794098, 0.08019580692052841, 0.03361250460147858, -0.08228787779808044, -0.011236130259931087, 0.06666712462902069, 0.0543239451944828, 0.004611258860677481, 0.006821002345532179, -0.0418412908911705, 0.0007997788488864899, -0.022263053804636, 0.00197983393445611, 0.05721796676516533, -0.06481913477182388, 0.06882892549037933, 0.006825360935181379, 0.013241025619208813, 0.014731621369719505, -0.06907299906015396, 0.0013870823895558715, 0.0005840347148478031, 0.07266438007354736, -0.023012710735201836, 0.008346466347575188, -0.03748282417654991, -0.043654415756464005, -0.0015080298762768507, -0.06736447662115097, 0.00795856211334467, 0.08054448664188385, -0.029236603528261185, -0.001194220152683556, 0.018113791942596436, 0.004092601593583822, -0.04156234860420227, 0.005639857612550259, -0.004434741102159023, -0.026482051238417625, 0.0365065261721611, -0.011863749474287033, 0.032618772238492966, -0.02428538352251053, 0.012534953653812408, 0.025592923164367676, -0.006563852541148663, 0.026917897164821625, -0.02597646787762642, 0.0006619422929361463, 0.0347108393907547, -0.018915750086307526, 0.0023513934575021267, -0.02688303031027317, -0.05052335932850838, 0.01411271933466196, -0.059588972479104996, 0.004711503628641367, -0.05153452605009079, 0.0711650624871254, 0.032270096242427826, -0.02695276588201523, 0.037587426602840424, -0.020397629588842392, 0.048361558467149734, -0.010547492653131485, 0.009553761221468449, 0.05285950005054474, -0.015341807156801224, -0.024250514805316925, -0.05645087733864784, -0.00582727137953043, -0.04504912346601486, -0.01406913436949253, 0.06771315634250641, 0.06070474162697792, -0.05456801876425743, 0.01921212673187256, 0.05258055776357651, -0.010974622331559658, 0.04341034218668938, -0.06178564205765724, 0.056206803768873215, 0.027388611808419228, 0.013275893405079842, 0.009135348722338676, 0.016222218051552773, -0.007853958755731583, 0.024599192664027214, -0.002268582582473755, -0.03587890788912773, -0.021670302376151085, 0.053103573620319366, 0.029881656169891357, -0.007099944166839123, 0.06977035105228424, 0.012133974581956863, -0.09728100150823593, -0.002795957261696458, -0.03183424845337868, -0.005910082720220089, -0.06642305105924606, 0.020781174302101135, 0.04567674547433853, -0.07231570035219193, 0.0649934709072113, 0.053173307329416275, -0.009327121078968048, -0.04466557875275612, -0.012212427332997322, 0.016431424766778946, 0.05031415447592735, 0.04041171446442604, 0.0023012710735201836, 0.0008084957953542471, -0.01896805316209793, 0.024965304881334305, 0.03594864159822464, 0.007862675935029984, -0.054602887481451035, 0.04672277718782425, 0.01255238801240921, 0.013458948582410812, -0.0024320250377058983, -0.04647870361804962, -0.0244771558791399, 0.0021193050779402256, 0.004421665798872709, -0.03373454138636589, 0.04117880389094353, 0.00015118435840122402, 0.0035979151725769043, 0.012116541154682636, -0.043305736035108566, -0.017660511657595634, 0.03497234731912613, 0.02900996245443821, -0.017311833798885345, 0.027371179312467575, -0.05944950133562088, -0.049547065049409866, 0.014609584584832191, 0.006359004881232977, -0.06377310305833817, -0.0560673326253891, 0.02083347737789154, 0.0008335569873452187, 0.004959936253726482, 0.0069604734890162945, 0.03765716403722763, 0.02508734166622162, -0.042852457612752914, 0.07081639021635056, 0.019787443801760674, -0.005221444647759199, -0.0061497981660068035, 0.022541996091604233, -0.057810720056295395, 0.02597646787762642, 0.015455126762390137, -0.06394743919372559, 0.012587255798280239, 0.030021127313375473, 0.02099038101732731, -0.013737890869379044, 0.0029681166633963585, 0.024529457092285156, 0.06952627748250961, 0.014531131833791733, -0.04951219633221626, 0.019299296662211418, -0.03129379823803902, 0.026830729097127914, 0.03988869860768318, 0.01121869683265686, -0.001938428613357246, -0.0021530832163989544, -0.029864221811294556, 0.038598593324422836, 0.010913603939116001, 0.009100480936467648, 0.06816643476486206, -0.03636705502867699, 0.03127636760473251, 0.04564187675714493, -0.022576862946152687, 0.012953367084264755, 0.06555135548114777, 0.0050427475944161415, 0.0009719383670017123, 0.009361988864839077, -0.021949244663119316, -0.04947732761502266, -0.021042682230472565, 0.024599192664027214, 0.02154826559126377, 0.021513396874070168, 0.04375901818275452, -0.009161499328911304, 0.008250580169260502, 0.03063131310045719, 0.027440914884209633, 0.031189195811748505, 0.06349416077136993, 0.09114427864551544, -0.006542060524225235, -0.006903813220560551, -0.011297148652374744, 0.025313980877399445, 0.0016322461888194084, 0.011610958725214005, 0.010957187972962856, -0.0074616968631744385, 0.013136422261595726, -0.012430350296199322, -0.015620749443769455, -0.0320608913898468, -0.014226038940250874, 0.023622896522283554, -0.0032710302621126175, 0.0015973785193637013, 0.006420023273676634, 0.04379388689994812, 0.009361988864839077, 0.10613740980625153, 0.04693198204040527, 0.01727696694433689, 0.0186891108751297, -0.014504981227219105, -0.016047878190875053, -0.011462770402431488, 0.014348076656460762, -0.0036022737622261047, 0.032915148884058, -0.01806149072945118, -0.03880779817700386, -0.040551185607910156, -0.08675094693899155, -0.0631454810500145, -0.03127636760473251, 0.04902404546737671, -0.059310030192136765, 0.03995843231678009, 0.012125257402658463, 0.007984713651239872, 0.012691858224570751, -0.015228486619889736, 0.012848763726651669, 0.0048378994688391685, -0.013685589656233788, 0.02412847802042961, 0.025523187592625618, 0.05366145819425583, -0.007949845865368843, -0.039017003029584885, -0.006677172612398863, -0.014391660690307617, 0.02651691809296608, 0.003619707655161619, 0.007683978881686926, -0.013694305904209614, -0.017555909231305122, -0.025610357522964478, 0.011349450796842575, 0.046339232474565506, -0.08842460066080093, 0.012561104260385036, 0.0076055265963077545, -0.05749690905213356, 0.005164784379303455, 0.05045362561941147, 0.008067524060606956, 0.03532102331519127, -0.024163346737623215, -0.024686362594366074, 0.02341368980705738, 0.011244847439229488, -0.034327294677495956, 0.004408590495586395, 0.04975626990199089, 0.012901064939796925, 0.010442889295518398, -0.04951219633221626, -0.09386396408081055, 0.015489994548261166, -0.020136121660470963, 0.04083012789487839, 0.03282798081636429, -0.018445035442709923, -0.0027284009847790003, -0.02243739366531372, -0.007038925774395466, 0.018200961872935295, 0.015812521800398827, 0.08668120950460434, 0.005862139165401459, -0.002689174609258771, 0.03162504360079765, 0.029428375884890556, 0.039156474173069, 0.06649278849363327, -0.03842425346374512, 0.023866970092058182, 0.004951219540089369, -0.01699802465736866, -0.006359004881232977, 0.045083992183208466, -0.046408966183662415, 0.0006821002461947501, 0.02554062195122242, 0.04951219633221626, -0.022576862946152687, -0.009091763757169247, -0.02064170315861702, -0.010573643259704113, -0.034937478601932526, -0.027824459597468376, 0.000015544066627626307, 0.005914440844208002, -0.04212023317813873, 0.0005627871723845601, 0.05421933904290199, 0.013450232334434986, 0.01790458709001541, 0.005705234594643116, 0.05411473661661148, -0.02003151923418045, 0.07622088491916656, -0.008638483472168446, -0.007239415310323238, -0.03089282102882862, -0.015559730120003223, -0.04191102832555771, -0.007405037060379982, -0.017381569370627403, 0.0373782217502594, -0.035111818462610245, 0.02705736830830574, 0.04839642718434334, 0.024599192664027214, -0.04654843732714653, -0.0008673351258039474, -0.027929062023758888, 0.004317062441259623, -0.0050427475944161415, -0.0845891460776329, -0.0031903984490782022, 0.006045194808393717, -0.01192476786673069, 0.011044357903301716, 0.012656990438699722, -0.012622122652828693, 0.049616798758506775, 0.0016355151310563087, 0.0008379154605790973, -0.06126262620091438, 0.006659739185124636, -0.021670302376151085, -0.043026793748140335, 0.032705944031476974, -0.04023737460374832, -0.025470886379480362, 0.0006401499849744141, -0.006032119505107403, 0.04323600232601166, -0.008969726972281933, -0.03765716403722763, -0.03505951538681984, -0.014531131833791733, 0.01036443654447794, -0.06593490391969681, 0.005578838754445314, -0.009911156259477139, -0.0498260036110878, 0.008961009792983532, -0.05125558376312256, 0.011732995510101318, -0.008089316077530384, -0.021740037947893143, -0.06265733391046524, 0.0002734938752837479, 0.05662521347403526, 0.04173668846487999, 0.11164651066064835, 0.011401752009987831, -0.0463043637573719, -0.027528082951903343, -0.048745106905698776, 0.09811782836914062, -0.06464479863643646, -0.009597346186637878, -0.048012882471084595, 0.016091464087367058, 0.001249790657311678, -0.026482051238417625, -0.03873806446790695, -0.04065578803420067, 0.07719718664884567, 0.024494590237736702, -0.01807892508804798, 0.007139170542359352, -0.05055822804570198, -0.008002147078514099, -0.008564389310777187, -0.0014720725594088435, 0.010076778009533882, 0.031014857813715935, 0.02456432580947876, 0.04103933274745941, -0.018828582018613815, -0.00009002959995996207, -0.0649934709072113, -0.030718481168150902, 0.008485937491059303, -0.05937976762652397, 0.030055994167923927, 0.017956888303160667, 0.031102027744054794, -0.030125729739665985, -0.00165730738081038, 0.0271445382386446, -0.05617193505167961, 0.03640192374587059, -0.01814866065979004, -0.004615617450326681, -0.016152482479810715, 0.009972174651920795, -0.01005934365093708, 0.027092237025499344, 0.03755255788564682, -0.07273411005735397, 0.02038019523024559, 0.08995877951383591, 0.02555805630981922, -0.020885778591036797, 0.06349416077136993, -0.05986791476607323, -0.021025249734520912, 0.005635499022901058, 0.009719383902847767, -0.032967451959848404, -0.05533510819077492, 0.078312948346138, -0.012970800511538982, -0.04867536947131157, -0.01192476786673069, 0.031206630170345306, 0.006128005683422089, 0.03636705502867699, -0.003497670404613018, -0.024442287161946297, 0.017599493265151978, -0.002235894091427326, 0.004225534852594137, -0.016222218051552773, -0.0027480139397084713, -0.042678117752075195, 0.06202971562743187, -0.032270096242427826, 0.006359004881232977, -0.024703796952962875, -0.019264427945017815, -0.007069434970617294, -0.03936568275094032, 0.01799175515770912, -0.018270697444677353, 0.023378821089863777, -0.04306166246533394, -0.015272071585059166, -0.017381569370627403, -0.039644625037908554, 0.0016453216085210443, 0.07977739721536636, 0.006267476826906204, -0.03214805945754051, -0.023884404450654984, 0.019735142588615417, -0.012256011366844177, -0.01298823393881321, 0.04815235361456871, 0.023553160950541496, 0.07133940607309341, 0.016841119155287743, -0.017834851518273354, -0.041701819747686386, -0.0218097735196352, -0.08974957466125488, -0.05669495090842247, 0.005195293575525284, 0.0186891108751297, -0.014844941906630993, -0.00030100668664090335, 0.018392734229564667, -0.00047398338210769, 0.014260906726121902, 0.01992691494524479, 0.013336911797523499, 0.020694006234407425, -0.03587890788912773, 0.026220543310046196, 0.025122208520770073, -0.010137796401977539, -0.005774970166385174, -0.03790123760700226, -0.03995843231678009, -0.03364737331867218, -0.010111645795404911, -0.06649278849363327, -0.01494954526424408, 0.011759146116673946, 0.027005067095160484, 0.06460992991924286, 0.01308412104845047, -0.0418064258992672, 0.03314179182052612, 0.019438767805695534, 0.011593524366617203, -0.08696015179157257, 0.08389179408550262, -0.05854294076561928, 0.015681767836213112, 0.010033193044364452, -0.07845242321491241, 0.05017468333244324, 0.03249673545360565, -0.022228186950087547, 0.0005243781488388777, -0.02055453509092331, 0.052894365042448044, -0.0065856450237333775, 0.03408321738243103, -0.061646170914173126, 0.004768163897097111, -0.0676085576415062, -0.04201563075184822, 0.020223291590809822, 0.008751804009079933, -0.013415364548563957, -0.022367658093571663, 0.005914440844208002, 0.010172664187848568, 0.00828544795513153, 0.01387736201286316, -0.005635499022901058, 0.008185203187167645, 0.022367658093571663, -0.03232239931821823, -0.0061497981660068035, 0.027266575023531914, 0.065830297768116, -0.023814668878912926, -0.025470886379480362, 0.003162068547680974, 0.03615785017609596, -0.026656389236450195, 0.029620148241519928, 0.03856372460722923, 0.05502129718661308, -0.007714488077908754, -0.02473866380751133, -0.0013217054074630141, -0.0033974256366491318, -0.01966540701687336, -0.01637040637433529, 0.05195293575525284, -0.061367228627204895, -0.050349023193120956, -0.02020585723221302, -0.026150807738304138, 0.03748282417654991, -0.0462694950401783, 0.021670302376151085, 0.015594597905874252, 0.024703796952962875, 0.031468138098716736, 0.06436585634946823, -0.002754551824182272, 0.019020354375243187, 0.03748282417654991, -0.03587890788912773, -0.012761593796312809, 0.0249130018055439, 0.010564926080405712, 0.052197013050317764, 0.04529319703578949, 0.04696685075759888, 0.036192718893289566, -0.04696685075759888, -0.07168807834386826, -0.023518292233347893, -0.04156234860420227, -0.023465991020202637, -0.050941772758960724, -0.00587085634469986, 0.06488887220621109, -0.009658364579081535, 0.008259296417236328, 0.009989608079195023, -0.018636809661984444, 0.02554062195122242, 0.042399175465106964, 0.0631803497672081, 0.040097903460264206, -0.019996650516986847, -0.012212427332997322, -0.03429242596030235, 0.004110035020858049, -0.005134275183081627, -0.0055439709685742855, -0.0034606235567480326, 0.03127636760473251, -0.018357867375016212, -0.029428375884890556, 0.0037548202089965343, -0.018462469801306725, -0.019473634660243988, -0.02419821359217167, -0.04103933274745941, -0.031032292172312737, 0.010190097615122795, 0.03532102331519127, 0.008516446687281132, 0.03197371959686279, 0.027911627665162086, -0.0021236634347587824, -0.005849063862115145, -0.007775506936013699, -0.02740604616701603, 0.03605324774980545, 0.038598593324422836, -0.012491368688642979, -0.0011201262241229415, -0.019525935873389244, 0.01566433347761631, 0.009762967936694622, 0.04212023317813873, -0.10620714724063873, -0.06426125019788742, -0.0298293549567461, -0.022018980234861374, -0.0418412908911705, -0.04100446775555611, -0.0218097735196352, -0.00438243942335248, 0.026900464668869972, -0.06377310305833817, -0.04212023317813873, -0.036262452602386475, -0.0489194430410862, -0.007296075113117695, -0.02866128459572792, 0.011724278330802917, 0.011558656580746174, -0.045781347900629044, -0.06447045505046844, -0.0382499136030674, 0.008634124882519245, 0.043026793748140335, -0.010852585546672344, 0.061715904623270035, -0.0074006784707307816, -0.014016833156347275, 0.0012519699521362782, 0.025436019524931908, 0.08842460066080093, -0.04825695604085922, 0.005849063862115145, 0.0738498792052269, -0.03129379823803902, 0.03282798081636429, -0.04867536947131157, -0.006590003613382578, 0.020868344232439995, 0.01010292861610651, -0.011785297654569149, -0.03526872396469116, -0.021373925730586052, -0.03518155217170715, -0.045432668179273605, -0.034588802605867386, 0.038215044885873795, 0.043480075895786285, -0.07663930207490921, -0.014156303368508816, -0.061436962336301804, 0.018619375303387642, -0.010198814794421196, -0.0240238755941391, -0.013458948582410812, -0.06147183105349541, 0.037064410746097565, -0.006175949238240719, -0.019264427945017815, 0.051848333328962326, -0.012970800511538982, 0.014016833156347275, -0.04850102961063385, -0.04735039547085762, 0.06555135548114777, -0.02099038101732731, 0.02751064859330654, -0.03765716403722763, -0.0275803841650486, 0.024947870522737503, -0.029428375884890556, 0.07956819236278534, 0.009492742829024792, -0.010477757081389427, -0.04041171446442604, -0.05446341633796692, 0.029846787452697754, -0.03329869359731674, -0.029236603528261185, 0.016753951087594032, 0.04975626990199089, 0.051046375185251236, -0.029254036024212837, 0.03436215966939926, -0.0596238411962986, 0.032705944031476974, 0.03016059845685959, -0.05331277847290039, 0.03682033717632294, 0.006433098576962948, -0.010817717760801315, 0.03300232067704201, -0.028853056952357292, -0.013947097584605217, 0.03636705502867699, -0.0037112354766577482, -0.016457574442029, -0.0017804341623559594, 0.018915750086307526, 0.02918430045247078, 0.02018842287361622, -0.06366849690675735, -0.027615252882242203, -0.0222456194460392, 0.08312469720840454, 0.024233082309365273, 0.06307575106620789, -0.00346934050321579, 0.029742185026407242, -0.08124183863401413, 0.00987628847360611, -0.017922019585967064, -0.07371041178703308, -0.008054448291659355, -0.011140244081616402 ]
9,462
asyncclick.core
group
A shortcut decorator for declaring and attaching a group to the group. This takes the same arguments as :func:`group` and immediately registers the created group with this group by calling :meth:`add_command`. To customize the group class used, set the :attr:`group_class` attribute. .. versionchanged:: 8.1 This decorator can be applied without parentheses. .. versionchanged:: 8.0 Added the :attr:`group_class` attribute.
def group( self, *args: t.Any, **kwargs: t.Any ) -> t.Union[t.Callable[[t.Callable[..., t.Any]], "Group"], "Group"]: """A shortcut decorator for declaring and attaching a group to the group. This takes the same arguments as :func:`group` and immediately registers the created group with this group by calling :meth:`add_command`. To customize the group class used, set the :attr:`group_class` attribute. .. versionchanged:: 8.1 This decorator can be applied without parentheses. .. versionchanged:: 8.0 Added the :attr:`group_class` attribute. """ from .decorators import group func: t.Optional[t.Callable[..., t.Any]] = None if args and callable(args[0]): assert ( len(args) == 1 and not kwargs ), "Use 'group(**kwargs)(callable)' to provide arguments." (func,) = args args = () if self.group_class is not None and kwargs.get("cls") is None: if self.group_class is type: kwargs["cls"] = type(self) else: kwargs["cls"] = self.group_class def decorator(f: t.Callable[..., t.Any]) -> "Group": cmd: Group = group(*args, **kwargs)(f) self.add_command(cmd) return cmd if func is not None: return decorator(func) return decorator
(self, *args: Any, **kwargs: Any) -> Union[Callable[[Callable[..., Any]], asyncclick.core.Group], asyncclick.core.Group]
[ -0.0012990010436624289, -0.009985517710447311, -0.0046790544874966145, 0.008182822726666927, 0.014660154469311237, -0.034286558628082275, -0.043618157505989075, 0.04132060334086418, 0.03578880429267883, 0.030893249437212944, 0.0536920428276062, 0.00022865069331601262, 0.0577569417655468, -0.016895849257707596, 0.008947201073169708, -0.03669015318155289, -0.007391934283077717, -0.06500307470560074, -0.01855715736746788, -0.03373868018388748, 0.030999289825558662, 0.042734481394290924, 0.04354746267199516, -0.019688259810209274, -0.0018579249735921621, 0.11473625153303146, 0.045420851558446884, 0.00583224929869175, -0.008536292240023613, -0.005434595979750156, 0.0017585116438567638, -0.0425930954515934, -0.012557010166347027, -0.0002141529112122953, 0.005447851028293371, -0.034975823014974594, -0.024265693500638008, 0.07740985602140427, -0.029196593910455704, 0.01315790880471468, 0.03589484468102455, -0.0006472913082689047, -0.006282923277467489, -0.032360147684812546, 0.0070870667695999146, 0.03319080173969269, 0.07437001913785934, 0.042805176228284836, -0.02258671261370182, -0.07366307824850082, 0.012026805430650711, -0.041002482175827026, 0.0009670709259808064, -0.048990894109010696, -0.03175925090909004, 0.021632343530654907, 0.04287587106227875, -0.00012067675561411306, 0.030416063964366913, 0.0010852622799575329, 0.00840815994888544, 0.02930263616144657, 0.027446920052170753, 0.001347603159956634, -0.040825746953487396, -0.02134956791996956, -0.08886227756738663, -0.011894254013895988, -0.016127053648233414, 0.040472276508808136, -0.07917720824480057, 0.00496183056384325, 0.033296842128038406, -0.02410663105547428, -0.03571810945868492, 0.017841381952166557, -0.0688205435872078, 0.023894550278782845, 0.11537250131368637, 0.02502565272152424, -0.017487911507487297, -0.0010079408530145884, 0.004312329925596714, 0.02060728147625923, 0.04732958972454071, -0.04407766833901405, -0.005606912542134523, 0.0431939922273159, -0.0288784708827734, -0.0851861909031868, -0.04185080900788307, 0.030239330604672432, -0.00007117719360394403, -0.009738089516758919, -0.014209480956196785, -0.0315118208527565, -0.03098161704838276, 0.05765090137720108, 0.01610054261982441, 0.019635239616036415, -0.053303226828575134, 0.023187609389424324, 0.024248018860816956, -0.025131693109869957, -0.000949949724599719, -0.05174795910716057, -0.03105231001973152, 0.031529493629932404, -0.09366945922374725, 0.019281771034002304, -0.00819607824087143, -0.03536463901400566, 0.03191830962896347, 0.025467488914728165, 0.005637841299176216, 0.011284518986940384, -0.04464321956038475, -0.06903262436389923, 0.04061366617679596, -0.024583814665675163, -0.05174795910716057, 0.041002482175827026, 0.01656888984143734, 0.02195046655833721, 0.023947570472955704, 0.012247723527252674, -0.014527603052556515, 0.00927857868373394, 0.057156044989824295, -0.043264687061309814, 0.03273129090666771, 0.04001276567578316, -0.0041046664118766785, -0.010073885321617126, 0.03658410906791687, 0.003464002627879381, 0.03524092584848404, 0.022551365196704865, -0.054999880492687225, 0.05864061787724495, 0.035559047013521194, -0.018018117174506187, -0.03239549323916435, 0.04248705506324768, 0.01248631626367569, -0.016966544091701508, 0.03494047746062279, -0.037255704402923584, -0.031423453241586685, -0.04937971383333206, -0.01295466348528862, -0.045597586780786514, 0.07571320235729218, 0.031193697825074196, 0.005518545396625996, 0.09791109710931778, -0.04941505938768387, 0.03356194496154785, 0.03785660117864609, 0.006084096617996693, -0.021720711141824722, 0.021049119532108307, 0.0035921353846788406, 0.018221361562609673, 0.006808709353208542, 0.015437787398695946, 0.03110533021390438, 0.017169788479804993, 0.0036031813360750675, 0.04732958972454071, -0.013555562123656273, 0.012671887874603271, 0.05934755876660347, 0.04018950089812279, -0.07953067868947983, 0.06892658770084381, 0.009561354294419289, 0.038492847234010696, -0.009366946294903755, -0.01298117358237505, 0.04089644178748131, 0.009914823807775974, 0.002239009365439415, -0.018071137368679047, 0.009605538100004196, 0.016197746619582176, 0.05227816477417946, 0.01646284945309162, -0.04556224122643471, -0.06585139781236649, -0.011567294597625732, -0.009384620003402233, 0.013696949928998947, 0.005098800174891949, 0.0035523702390491962, -0.029497044160962105, -0.05881735309958458, 0.002157269511371851, 0.05121775344014168, 0.03163553401827812, 0.005120891612023115, 0.018186014145612717, 0.05273767560720444, 0.045138075947761536, 0.00044818848255090415, -0.00021829512843396515, -0.040649011731147766, 0.0706232413649559, -0.07051719725131989, -0.024265693500638008, 0.019034340977668762, -0.03525859862565994, -0.04008346050977707, 0.10052677243947983, 0.031776923686265945, -0.04556224122643471, 0.052949756383895874, 0.0408610925078392, 0.008302118629217148, 0.04008346050977707, 0.03283733129501343, 0.043441422283649445, 0.03379169851541519, 0.013343479484319687, -0.002146223559975624, -0.021155159920454025, 0.013555562123656273, -0.02474287711083889, 0.021862098947167397, -0.010506886057555676, 0.013705786317586899, -0.08596382290124893, -0.013104887679219246, 0.044961340725421906, -0.0455268919467926, -0.04337072744965553, 0.031299740076065063, 0.016789808869361877, 0.006481749936938286, 0.02385920286178589, -0.008536292240023613, 0.01739070750772953, 0.07136552780866623, 0.06966887414455414, -0.010542232543230057, 0.018751565366983414, -0.012300744652748108, 0.01207982562482357, 0.04672868922352791, 0.019935689866542816, -0.07854095846414566, 0.022215569391846657, 0.0011399396462365985, -0.011850070208311081, -0.06132698804140091, 0.0141476234421134, -0.043971627950668335, -0.030893249437212944, 0.024778224527835846, 0.007732148747891188, 0.015473134815692902, -0.0016800855519250035, 0.0012603403301909566, 0.0006124966312199831, 0.054999880492687225, 0.029196593910455704, 0.030999289825558662, -0.03640737757086754, 0.016940033063292503, 0.022215569391846657, 0.03308476135134697, 0.03785660117864609, 0.0178060345351696, -0.039694644510746, -0.05142983794212341, -0.021685363724827766, 0.00029796388116665184, -0.046940770000219345, -0.018451116979122162, -0.08073247224092484, 0.07189573347568512, 0.0204305462539196, -0.06758339703083038, -0.06143302842974663, 0.029779819771647453, 0.08306536823511124, -0.0035435333847999573, 0.01531407330185175, -0.026421857997775078, 0.007224036380648613, -0.005001595709472895, -0.014280174858868122, -0.02649255096912384, 0.017125604674220085, -0.011726356111466885, -0.00878372136503458, -0.06228135526180267, 0.008867669850587845, -0.00622990308329463, -0.05860527232289314, -0.007453791797161102, -0.03828076645731926, 0.04623383283615112, 0.05630771815776825, -0.018415769562125206, 0.004018508363515139, 0.03927047923207283, -0.026757653802633286, -0.02216254733502865, -0.010966396890580654, 0.016621911898255348, 0.017885565757751465, 0.01109011098742485, -0.07019907236099243, -0.005960382055491209, 0.05722673982381821, 0.04658730328083038, 0.017470238730311394, 0.014342031441628933, 0.06206927448511124, 0.00927857868373394, -0.017408380284905434, -0.017019564285874367, 0.02076634205877781, 0.056625839322805405, 0.039588604122400284, 0.028931492939591408, 0.005315300077199936, 0.041638728231191635, 0.0723905861377716, -0.027164144441485405, -0.032289452850818634, -0.007895628921687603, 0.035682763904333115, -0.09642652422189713, -0.023488059639930725, 0.013325806707143784, -0.040224846452474594, 0.00018391468620393425, -0.04884950816631317, 0.017143279314041138, 0.01868087239563465, -0.02048356644809246, 0.017461402341723442, -0.012795601971447468, -0.004533248487859964, 0.07889442890882492, -0.017593951895833015, 0.03315545618534088, 0.029550064355134964, 0.07104740291833878, 0.007263801526278257, -0.008430251851677895, -0.059029433876276016, 0.04626917839050293, -0.009172538295388222, -0.006888240110129118, 0.02357642725110054, 0.01861017756164074, -0.079389289021492, 0.038598887622356415, -0.040578316897153854, 0.02182675153017044, 0.019211076200008392, -0.014651318080723286, -0.003768870374187827, -0.023611774668097496, -0.016940033063292503, 0.0180976465344429, 0.020412873476743698, 0.05326787754893303, 0.03753848001360893, 0.04471391439437866, 0.06327106803655624, -0.042098239064216614, 0.03934117406606674, 0.0682903379201889, -0.025573531165719032, -0.020819364115595818, -0.0554240420460701, 0.05584820732474327, 0.001297896378673613, 0.08009622991085052, 0.042805176228284836, 0.00907533336430788, 0.025873979553580284, 0.02719948999583721, 0.044961340725421906, -0.04241636022925377, -0.05888804793357849, 0.0425930954515934, -0.035682763904333115, 0.024601489305496216, -0.007184270769357681, -0.06503842025995255, -0.042981911450624466, -0.008416996337473392, 0.004829279147088528, -0.04969783499836922, -0.035399988293647766, 0.013555562123656273, -0.02216254733502865, 0.05436363443732262, -0.031529493629932404, 0.07521834224462509, -0.017258156090974808, 0.007034046575427055, -0.0236294474452734, -0.013670439831912518, -0.021490955725312233, 0.005717372056096792, -0.03239549323916435, -0.04672868922352791, -0.004325584974139929, 0.04015415534377098, -0.0031525075901299715, 0.01686934009194374, 0.03389774262905121, 0.0006362454150803387, -0.01919340342283249, -0.005346228834241629, 0.01085151918232441, -0.03158251568675041, 0.060301925987005234, 0.029726799577474594, -0.008576057851314545, 0.011920764110982418, -0.03587717190384865, 0.008796975947916508, -0.03244851529598236, -0.026739981025457382, 0.0014657945139333606, -0.0676540955901146, 0.05337391793727875, -0.011514274403452873, -0.041921503841876984, -0.022569037973880768, 0.02562655135989189, 0.06005449593067169, 0.050793591886758804, -0.041108522564172745, -0.041179217398166656, -0.003958860412240028, 0.01639215648174286, -0.003793171374127269, -0.02813618630170822, 0.033473577350378036, 0.028666390106081963, 0.02689904160797596, 0.0002674495044630021, 0.08087386190891266, 0.06722993403673172, 0.025078672915697098, 0.044961340725421906, 0.0402601957321167, -0.014987113885581493, 0.007705638650804758, -0.079389289021492, -0.0035722528118640184, -0.0024058029521256685, 0.04655195400118828, 0.01937013864517212, -0.008549547754228115, 0.01438621524721384, -0.08914504945278168, 0.02900218591094017, 0.05630771815776825, -0.02124352753162384, 0.017417218536138535, -0.009676232002675533, 0.009897151030600071, -0.04503203555941582, -0.040578316897153854, 0.01000319141894579, -0.03534696623682976, 0.04153268411755562, 0.05181865394115448, -0.016118217259645462, -0.03518790379166603, 0.020730996504426003, -0.04517342522740364, -0.01791207492351532, 0.029249614104628563, -0.011107784695923328, -0.0306281466037035, -0.003013328881934285, 0.03202435001730919, -0.04400697350502014, -0.009181374683976173, -0.02071332186460495, 0.002258892171084881, 0.03927047923207283, -0.027464592829346657, -0.042098239064216614, 0.021738383919000626, 0.05973637476563454, -0.003565625287592411, -0.007524485699832439, -0.0349934957921505, -0.05567147210240364, 0.000857716251630336, 0.04969783499836922, -0.035399988293647766, -0.03315545618534088, 0.0752890408039093, -0.0671238899230957, 0.020518913865089417, -0.028843125328421593, -0.057156044989824295, -0.008730701170861721, -0.018892953172326088, -0.0017651391681283712, -0.05054616183042526, 0.02101377211511135, -0.005010432563722134, -0.017593951895833015, -0.04976852983236313, 0.01158496830612421, 0.008403741754591465, -0.012185866944491863, 0.055353350937366486, 0.04001276567578316, -0.005655514542013407, 0.030150962993502617, -0.02327597700059414, -0.012866295874118805, 0.045951057225465775, -0.0001237143878825009, 0.01937013864517212, -0.021384915336966515, 0.05648445338010788, 0.0525255911052227, -0.0606907419860363, 0.025573531165719032, -0.02935565635561943, 0.013405336998403072, -0.059206169098615646, 0.040931787341833115, -0.05941824987530708, -0.009384620003402233, -0.006808709353208542, -0.027393899857997894, -0.044431138783693314, -0.03156484290957451, -0.007166597526520491, 0.023028548806905746, 0.05171261355280876, -0.04874346777796745, 0.02119050733745098, 0.0028984511736780405, -0.003362380200996995, -0.02025381103157997, -0.012097499333322048, -0.003866074373945594, 0.026386510580778122, 0.03225410729646683, -0.017832545563578606, -0.0003247502609156072, -0.033579617738723755, -0.02818920649588108, -0.010745477862656116, 0.04722354933619499, -0.0009366946178488433, -0.015605686232447624, -0.03372100740671158, -0.0062519945204257965, 0.0425930954515934, 0.020907731726765633, -0.022657405585050583, 0.024371733888983727, -0.09253835678100586, 0.0037335234228521585, 0.004175360314548016, -0.033296842128038406, -0.027040429413318634, 0.061468373984098434, 0.004405115731060505, 0.035453006625175476, -0.061998579651117325, -0.08221704512834549, -0.05160657316446304, -0.010091559030115604, -0.008708609268069267, -0.002216917462646961, -0.061645109206438065, 0.01656888984143734, -0.009137190878391266, 0.029444023966789246, -0.0577569417655468, -0.006517096888273954, 0.02679300121963024, 0.039411868900060654, 0.03319080173969269, 0.006618719547986984, 0.022374629974365234, -0.02205650694668293, -0.04637521877884865, -0.013749970123171806, 0.011063600890338421, 0.013723460026085377, 0.008942782878875732, 0.0178060345351696, -0.016595400869846344, 0.02672230638563633, 0.035629741847515106, 0.008973711170256138, -0.032819658517837524, -0.03898770362138748, -0.026386510580778122, -0.07366307824850082, -0.09642652422189713, 0.003872702131047845, -0.025220060721039772, 0.05478779971599579, -0.01919340342283249, -0.04411301389336586, -0.03488745540380478, 0.010683620348572731, 0.0349934957921505, -0.025237733498215675, 0.00029768774402327836, 0.035399988293647766, 0.005067871417850256, 0.02066030167043209, 0.045951057225465775, -0.017593951895833015, -0.027552960440516472, -0.014598296955227852, 0.03552370145916939, 0.0002193997206632048, -0.01967058703303337, 0.019794302061200142, 0.014527603052556515, -0.046940770000219345, 0.03379169851541519, -0.05973637476563454, -0.013864847831428051, 0.015013623982667923, -0.029037533327937126, -0.09048823267221451, -0.04750632494688034, -0.018186014145612717, 0.010551069863140583, -0.012883969582617283, -0.022957853972911835, -0.047753751277923584, -0.011956111527979374, 0.028984513133764267, 0.05415155366063118, -0.09126586467027664, -0.02193279378116131, 0.07260266691446304, -0.03817472234368324, -0.036548763513565063, 0.016595400869846344, 0.004745330195873976, -0.0003396622487343848, -0.022569037973880768, -0.03368565812706947, -0.003066349308937788, 0.02824222669005394, 0.00694567896425724, 0.021614670753479004, 0.025538183748722076, -0.03891700878739357, -0.0297621451318264, 0.012990009970963001, -0.0385281927883625, 0.007471465039998293, 0.00583224929869175, -0.015119665302336216, -0.011364050209522247, -0.035506028681993484, 0.016153564676642418, -0.02636883780360222, -0.02329365164041519, 0.03927047923207283, -0.02428336627781391, -0.011425906792283058, -0.014863399788737297, -0.004354304634034634, 0.028719410300254822, -0.016604237258434296, -0.04008346050977707, -0.028790105134248734, 0.08822602778673172, 0.013343479484319687, -0.0466933436691761, -0.008496527560055256, -0.06638160347938538, 0.04605709761381149, 0.04121456295251846, 0.010895702056586742, -0.0069412607699632645, -0.01949385181069374, 0.01656888984143734, -0.04206288978457451, -0.03292569890618324, -0.02794177643954754, 0.004265937022864819, -0.012972337193787098, 0.004241636022925377, -0.033402882516384125, -0.0030486758332699537, 0.005478779785335064, 0.01675446145236492, -0.014465746469795704, -0.00347283948212862, 0.043794892728328705, 0.0010963082313537598, 0.01926409639418125, 0.03313777968287468, 0.0021793614141643047, -0.0016038685571402311, 0.06691180914640427, -0.04941505938768387, 0.04206288978457451, -0.040472276508808136, 0.004338840022683144, -0.007802843116223812, -0.011673335917294025, 0.007520067039877176, 0.017523258924484253, -0.0495917946100235, 0.0265455711632967, -0.04107317700982094, -0.03342055529356003, 0.0066717397421598434, -0.004321166779845953, -0.021844426169991493, 0.0060222395695745945, 0.0525255911052227, -0.0035700437147170305, -0.04153268411755562, 0.04874346777796745, -0.042628441005945206, 0.0030398392118513584, -0.035983212292194366, -0.05941824987530708, -0.013078377582132816, -0.0026709050871431828, -0.028030144050717354, 0.01995336264371872, -0.06567466259002686, 0.010277130641043186, -0.04337072744965553, 0.02544981613755226, 0.042274970561265945, -0.0057615553960204124, -0.02119050733745098, -0.009888313710689545, 0.008894180878996849, 0.03898770362138748, 0.04927367344498634, 0.0064419847913086414, -0.05864061787724495, 0.04580966755747795, 0.032413169741630554, 0.03115835040807724, -0.031829942017793655, -0.02836594171822071, -0.009384620003402233, 0.06210462003946304, -0.06899727880954742, 0.014934093691408634, -0.009243232198059559, 0.0014249245868995786, 0.015764746814966202 ]
9,464
asyncclick.core
list_commands
null
def list_commands(self, ctx: Context) -> t.List[str]: return sorted(self.commands)
(self, ctx: asyncclick.core.Context) -> List[str]
[ -0.008883098140358925, 0.007648860104382038, -0.02191733755171299, -0.09491249173879623, 0.04694375768303871, 0.05360608175396919, 0.029280059039592743, 0.015255013480782509, 0.0858244001865387, -0.027845097705721855, -0.00788802094757557, -0.05866261571645737, -0.023096056655049324, -0.013854216784238815, -0.02213941514492035, -0.020311545580625534, 0.01289757527410984, -0.010787840001285076, 0.01364068128168583, -0.03864147886633873, 0.03618154302239418, 0.07407137751579285, 0.01475960947573185, -0.07154311239719391, -0.0098397396504879, 0.020772784948349, 0.0240526981651783, -0.053742747753858566, 0.019986972212791443, -0.02328396774828434, -0.044893812388181686, 0.004358270205557346, 0.030253782868385315, -0.0047063338570296764, -0.05032616853713989, 0.0037795875687152147, 0.035771556198596954, 0.0068673184141516685, 0.02984379418194294, -0.028323417529463768, 0.04192139208316803, -0.02333521656692028, 0.035498227924108505, -0.002179135102778673, 0.0027866449672728777, -0.0371723510324955, -0.01016431488096714, 0.057193487882614136, 0.01155656948685646, -0.028289252892136574, 0.03182540833950043, -0.031295839697122574, -0.005569019354879856, -0.007520738523453474, 0.01669851690530777, -0.04465465247631073, 0.02454810030758381, -0.016057908535003662, 0.023676874116063118, 0.031125010922551155, 0.007273036986589432, 0.029638798907399178, -0.009720159694552422, -0.0502920038998127, 0.07516468316316605, -0.001620738417841494, 0.0259659793227911, 0.004146869760006666, -0.0030578358564525843, 0.010984293185174465, -0.01962823048233986, -0.02830633521080017, 0.032799132168293, -0.003499855287373066, -0.01630561053752899, -0.05606601759791374, 0.012709664180874825, 0.01317090168595314, 0.02181483991444111, -0.020755700767040253, -0.030185451731085777, 0.04909620061516762, 0.001708288211375475, 0.06679406762123108, -0.00011671078391373158, -0.015596671029925346, 0.03324328735470772, -0.007379804737865925, -0.04636294022202492, 0.006470141466706991, -0.05442606285214424, -0.03700152039527893, -0.030851684510707855, 0.02897256799042225, -0.016245819628238678, -0.030510026961565018, -0.03628404065966606, 0.03247455880045891, -0.01303423848003149, 0.0029019545763731003, -0.0732513964176178, 0.055177707225084305, 0.032440394163131714, 0.015989577397704124, 0.01754411868751049, -0.01659601926803589, -0.08589272946119308, 0.0015726927667856216, -0.023591458797454834, 0.038778141140937805, -0.04157973453402519, 0.07072313129901886, 0.12074180692434311, -0.05131697654724121, 0.08124618232250214, -0.0012427796609699726, -0.052546944469213486, -0.010599927976727486, -0.008084474131464958, -0.01018993929028511, -0.008238219656050205, 0.005133405793458223, 0.05469938740134239, -0.07174810022115707, 0.019389070570468903, 0.09033428132534027, -0.029502136632800102, -0.020396960899233818, -0.0393589586019516, 0.010659717954695225, 0.011522403918206692, 0.04284386709332466, 0.02241274155676365, 0.010745132341980934, 0.03406326472759247, -0.05196612700819969, 0.04434715956449509, -0.03864147886633873, 0.027195947244763374, 0.017663700506091118, 0.009395585395395756, 0.001400796347297728, 0.04048642888665199, -0.01473398506641388, -0.01928657293319702, -0.014127543196082115, 0.025709737092256546, -0.024138111621141434, 0.025880565866827965, -0.023864785209298134, 0.017475787550210953, 0.020345712080597878, -0.020482374355196953, -0.028186755254864693, -0.003724068170413375, 0.05196612700819969, -0.06986898928880692, -0.01841534674167633, -0.017680782824754715, -0.04947202652692795, -0.009387043304741383, -0.018842417746782303, -0.06727238744497299, 0.009805574081838131, 0.005496417172253132, 0.010659717954695225, 0.04448382556438446, -0.02355729416012764, -0.005389649420976639, 0.037411510944366455, -0.0019730727653950453, 0.008383424021303654, 0.022976476699113846, 0.006948462221771479, 0.02606847696006298, 0.011821353808045387, -0.06740905344486237, 0.04280970245599747, 0.0025901920162141323, -0.06515411287546158, -0.07202143222093582, 0.013000072911381721, 0.03317495808005333, -0.02432602271437645, 0.0007377669680863619, 0.0459187850356102, 0.06658907234668732, 0.0338924378156662, -0.05733015015721321, -0.03235497698187828, -0.0497453510761261, -0.004428736865520477, 0.04239971190690994, 0.013956714421510696, -0.048071227967739105, 0.004663626663386822, -0.061020053923130035, -0.008323634043335915, -0.03939312696456909, -0.0530252642929554, 0.014597322791814804, -0.031193342059850693, 0.03840231895446777, -0.03566905856132507, 0.05422106757760048, 0.045167140662670135, -0.011744481511414051, -0.013785885646939278, 0.009720159694552422, -0.05951676145195961, 0.04503047466278076, -0.01487064827233553, -0.010796381160616875, -0.025812234729528427, -0.011351575143635273, 0.008298009634017944, 0.06522244215011597, 0.0086097726598382, 0.009173507802188396, -0.017313500866293907, 0.03220123052597046, 0.0404522642493248, -0.04089641943573952, 0.029638798907399178, -0.020738618448376656, 0.017663700506091118, 0.025043504312634468, 0.0011637713760137558, 0.0026820125058293343, 0.00021820711845066398, 0.010505972430109978, -0.03642070293426514, -0.04731958359479904, 0.03792399913072586, -0.015289179049432278, 0.0008317228057421744, -0.0026371697895228863, 0.04110141471028328, -0.023198554292321205, 0.003023670054972172, -0.037514008581638336, 0.02880173921585083, 0.024906842038035393, 0.051180314272642136, 0.02529974840581417, 0.05394773930311203, -0.0014029316371306777, -0.06002924591302872, 0.011565110646188259, -0.004672168288379908, 0.0003477967984508723, -0.016271444037556648, 0.006961274426430464, -0.05695432797074318, -0.06529077142477036, -0.03269663453102112, -0.061190880835056305, -0.028050091117620468, -0.06033673882484436, 0.004962577018886805, -0.02383062057197094, 0.02601722814142704, -0.0666574016213417, 0.04335635527968407, 0.05285443738102913, 0.01891075074672699, 0.0002759953204076737, 0.03809482604265213, -0.03993977606296539, 0.049711186438798904, 0.06371914595365524, -0.037240684032440186, -0.09060760587453842, 0.013538183644413948, -0.029655883088707924, 0.07256808131933212, -0.007730003912001848, 0.011872602626681328, -0.037684835493564606, -0.021609844639897346, -0.00006556223524967209, -0.0039909882470965385, -0.03683069348335266, -0.018944915384054184, -0.020858198404312134, -0.00018390790501143783, 0.011906768195331097, -0.03175707533955574, -0.021302353590726852, 0.029280059039592743, 0.06686239689588547, 0.029365474358201027, 0.032935794442892075, -0.05415273457765579, 0.060644231736660004, 0.0007703311857767403, -0.009361418895423412, 0.007405429147183895, 0.02618805691599846, -0.01147969625890255, -0.039427291601896286, -0.0497453510761261, -0.058286793529987335, -0.02273731492459774, -0.02213941514492035, 0.01791994273662567, 0.04868621379137039, -0.0317058302462101, 0.030629606917500496, -0.05931176617741585, 0.03192790597677231, 0.04841288551688194, 0.01759536750614643, 0.001556677627377212, -0.02196858637034893, 0.008340717293322086, -0.01880825310945511, 0.03775316849350929, 0.01826160028576851, 0.0442788302898407, -0.07024481147527695, 0.05722765251994133, 0.0409989170730114, 0.018073689192533493, 0.041238076984882355, 0.05350358411669731, 0.02420644275844097, 0.008596960455179214, 0.03898313641548157, -0.009224755689501762, 0.015921246260404587, 0.00038596635567955673, -0.032269563525915146, 0.001094372128136456, -0.012641332112252712, -0.01659601926803589, 0.012222802266478539, 0.031244590878486633, -0.039973944425582886, -0.018569093197584152, 0.014716902747750282, 0.0025453492999076843, 0.027076367288827896, 0.051726967096328735, 0.01136865746229887, 0.012069055810570717, 0.06484661996364594, 0.07495968788862228, -0.03143250197172165, -0.007093666587024927, 0.07420803606510162, -0.005496417172253132, -0.008212595246732235, 0.022327326238155365, 0.07085978984832764, -0.0036920378915965557, -0.00301299337297678, 0.03093709796667099, -0.0019527869299054146, 0.019986972212791443, 0.03884647414088249, -0.024958090856671333, -0.004497068468481302, 0.024513935670256615, -0.020396960899233818, -0.026205141097307205, 0.05712515488266945, -0.03802649304270744, 0.05305942893028259, 0.0259659793227911, -0.03425117954611778, 0.06419747322797775, 0.04492798075079918, -0.015092725865542889, -0.023625625297427177, -0.025709737092256546, 0.03175707533955574, -0.032713718712329865, 0.0019709374755620956, 0.018569093197584152, -0.0015171734848991036, -0.036489035934209824, 0.07892291247844696, 0.015921246260404587, -0.05876511335372925, 0.024616433307528496, -0.014007963240146637, 0.0058081797324121, 0.0010020177578553557, -0.013794426806271076, -0.04082808643579483, -0.03483199700713158, -0.09668911248445511, 0.04356134682893753, -0.045064643025398254, -0.009276004508137703, 0.02285689488053322, -0.010335143655538559, -0.022600652649998665, -0.07167977094650269, 0.04827622324228287, -0.019713645800948143, 0.05001867935061455, -0.0064274342730641365, -0.06293333321809769, -0.03307246044278145, -0.030082954093813896, 0.07413970679044724, -0.08069953322410583, -0.016143323853611946, -0.019747810438275337, -0.0001648231118451804, 0.023130221292376518, -0.013264857232570648, -0.01814202032983303, -0.07386638224124908, -0.011052624322474003, 0.04557712748646736, 0.03115917555987835, 0.02119985595345497, -0.035327401012182236, -0.02328396774828434, 0.010659717954695225, 0.04226304963231087, 0.04783206805586815, 0.04728541523218155, 0.029160479083657265, 0.02683720737695694, 0.0061626494862139225, -0.0404522642493248, -0.01141990628093481, 0.029809629544615746, -0.045440465211868286, -0.0336020290851593, 0.03426826000213623, -0.005445168353617191, 0.053640250116586685, -0.05760347843170166, -0.020038221031427383, 0.05094115436077118, -0.033089540898799896, 0.029963374137878418, 0.03049294464290142, 0.016083532944321632, 0.05715932324528694, 0.04175056144595146, -0.022327326238155365, 0.011906768195331097, 0.05159030109643936, -0.01505856029689312, -0.025453492999076843, 0.062113359570503235, 0.05100948363542557, -0.048720378428697586, 0.02924589440226555, -0.0013954578898847103, -0.029536303132772446, 0.013649222441017628, -0.06235251948237419, -0.010659717954695225, 0.027896346524357796, 0.08814767003059387, -0.025914732366800308, -0.01741599850356579, -0.038880638778209686, -0.01885950192809105, -0.029792545363307, 0.03628404065966606, 0.013512559235095978, 0.053093597292900085, 0.02907506562769413, 0.016442272812128067, -0.019662396982312202, -0.02721303142607212, -0.009216214530169964, -0.0065640974789857864, 0.027230113744735718, -0.05931176617741585, -0.013760261237621307, -0.03556656092405319, -0.052717771381139755, -0.05985841900110245, -0.01923532411456108, 0.006743467412889004, -0.03158624842762947, -0.012769454158842564, 0.011163663119077682, -0.056476008147001266, -0.023950200527906418, -0.07878625392913818, 0.027554688975214958, 0.014708361588418484, -0.02738386020064354, -0.05018950626254082, 0.013076946139335632, 0.060746725648641586, -0.026410134509205818, -0.005731306970119476, -0.024462686851620674, 0.025948897004127502, 0.06453912705183029, 0.03744567558169365, -0.030800435692071915, -0.011129497550427914, -0.0028144046664237976, -0.04581628739833832, 0.04093058407306671, -0.022703150287270546, -0.041613899171352386, -0.03816315904259682, 0.010463264770805836, -0.011710315011441708, 0.0036066235043108463, -0.018056606873869896, -0.00009669177961768582, -0.022310243919491768, -0.03754817321896553, 0.014084835536777973, 0.04229721426963806, 0.05811596289277077, -0.025163084268569946, -0.018124938011169434, -0.013239233754575253, -0.04636294022202492, -0.0041746292263269424, 0.00591494794934988, -0.06850235909223557, -0.015161057934165001, 0.010941585525870323, 0.05456272512674332, 0.08876265585422516, -0.016356859356164932, -0.024462686851620674, 0.006700760219246149, 0.007401158567517996, 0.03864147886633873, -0.03901730105280876, 0.04198972508311272, -0.01885950192809105, 0.027315527200698853, 0.0011872602626681328, -0.04116974398493767, 0.028169671073555946, -0.007823959924280643, 0.005590373184531927, 0.02278856374323368, 0.01771494746208191, -0.01005327608436346, -0.04082808643579483, 0.023762287572026253, -0.018757004290819168, -0.025163084268569946, -0.0841844379901886, -0.050360336899757385, 0.0006160514312796295, -0.06662324070930481, 0.019303657114505768, -0.04000810906291008, -0.020755700767040253, 0.010642635636031628, 0.004608107265084982, 0.03459283709526062, -0.0672040581703186, -0.004183170851320028, 0.02482142671942711, 0.015451466664671898, -0.002316865837201476, 0.03370452672243118, 0.007102208212018013, 0.009737242944538593, -0.0008141060825437307, -0.02482142671942711, 0.05422106757760048, -0.04181889444589615, 0.02278856374323368, -0.010207021608948708, 0.056476008147001266, 0.0029104959685355425, -0.015571046620607376, -0.027896346524357796, -0.013751720078289509, -0.009797032922506332, -0.03583988547325134, 0.033977851271629333, 0.0004222674760967493, -0.016860803589224815, 0.04239971190690994, 0.009173507802188396, 0.06860485672950745, -0.03016836941242218, 0.018671588972210884, 0.02803300879895687, 0.03066377341747284, 0.01759536750614643, -0.0030300761573016644, -0.03857314586639404, -0.0028336229734122753, 0.033807024359703064, -0.08944597095251083, 0.022310243919491768, 0.0568518303334713, 0.038060661405324936, 0.0798112228512764, 0.012453421019017696, 0.04571378976106644, -0.01177864708006382, 0.014682737179100513, -0.05579269304871559, -0.029775463044643402, 0.049711186438798904, -0.03894897177815437, -0.02721303142607212, 0.025316830724477768, 0.0010292435763403773, -0.037958163768053055, 0.003109084442257881, 0.03635237365961075, -0.025931814685463905, 0.08404777944087982, 0.007725733332335949, 0.07769294828176498, 0.02055070735514164, -0.007435324136167765, 0.004321969114243984, -0.02579515054821968, -0.012171553447842598, -0.06826319545507431, -0.007742816116660833, 0.02032862976193428, -0.02065320312976837, 0.024958090856671333, -0.063924141228199, 0.021439015865325928, 0.015024394728243351, -0.04034976661205292, -0.03802649304270744, -0.040520597249269485, -0.10728050023317337, -0.008263844065368176, -0.02196858637034893, 0.01030097808688879, -0.013042780570685863, 0.01627998612821102, 0.023198554292321205, -0.027452191337943077, -0.017851611599326134, -0.07892291247844696, 0.03133000433444977, 0.01814202032983303, -0.0036536012776196003, 0.005684328731149435, 0.019320739433169365, 0.012274050153791904, 0.0420922189950943, -0.013461310416460037, -0.04144307225942612, -0.04612378031015396, -0.0300658717751503, 0.0341486819088459, -0.04936952888965607, -0.0006432772497646511, 0.01309402845799923, 0.029485054314136505, 0.002812269376590848, -0.07454969733953476, -0.02400144934654236, 0.014827941544353962, 0.014469200745224953, -0.021712342277169228, 0.014059212058782578, 0.08049453794956207, 0.02852841280400753, 0.002065961016342044, -0.015784582123160362, -0.03247455880045891, 0.06259167939424515, 0.0016880022594705224, 0.04181889444589615, 0.08179283887147903, -0.024240609258413315, -0.05077032372355461, -0.028460081666707993, 0.02306189015507698, -0.004121245350688696, -0.020414043217897415, 0.048720378428697586, 0.034900326281785965, 0.018022440373897552, 0.02497517317533493, -0.0333457849919796, -0.031398337334394455, 0.012820702977478504, 0.0017488599987700582, -0.004642273299396038, 0.05285443738102913, 0.04520130529999733, -0.013350271619856358, -0.06641824543476105, 0.006547014228999615, 0.006423163693398237, 0.026598047465085983, -0.005949113517999649, 0.0018257329938933253, -0.028613826259970665, 0.01873992197215557, -0.014887731522321701, 0.004121245350688696, -0.0031667391303926706, -0.053571917116642, 0.07557466626167297, 0.021575680002570152, 0.032115817070007324, 0.03168874606490135, -0.03442200645804405, 0.021951502189040184, -0.07420803606510162, 0.04345885291695595, 0.02213941514492035, 0.037684835493564606, 0.025863483548164368, -0.01674976572394371, -0.009293087758123875, 0.021302353590726852, 0.015571046620607376, 0.09463916718959808, 0.02842591516673565, -0.0029895042534917593, 0.03392660245299339, -0.05439189448952675, -0.04335635527968407, -0.05333275720477104, -0.017484329640865326, -0.04120391234755516, 0.012777995318174362, 0.039427291601896286, 0.0007655266090296209, 0.03401201590895653, -0.06149837374687195, -0.001969869714230299, 0.007217517588287592, -0.03168874606490135, -0.014093377627432346, 0.03847064822912216, -0.01652768813073635, 0.017330583184957504, -0.08479942381381989, 0.03367035835981369, -0.013264857232570648, 0.023864785209298134, -0.012573000974953175, -0.010232646018266678, 0.030561275780200958, -0.01494752150028944, -0.048549551516771317, -0.00015201095084194094, 0.0448254831135273, -0.021626928821206093, 0.03857314586639404, -0.029638798907399178, 0.006047340109944344, -0.024616433307528496, -0.027913428843021393, -0.04622627794742584, 0.0420922189950943, 0.035771556198596954, -0.042058054357767105, 0.04311719536781311, -0.025333913043141365 ]
9,473
asyncclick.formatting
HelpFormatter
This class helps with formatting text-based help pages. It's usually just needed for very special internal cases, but it's also exposed so that developers can write their own fancy outputs. At present, it always writes into memory. :param indent_increment: the additional increment for each level. :param width: the width for the text. This defaults to the terminal width clamped to a maximum of 78.
class HelpFormatter: """This class helps with formatting text-based help pages. It's usually just needed for very special internal cases, but it's also exposed so that developers can write their own fancy outputs. At present, it always writes into memory. :param indent_increment: the additional increment for each level. :param width: the width for the text. This defaults to the terminal width clamped to a maximum of 78. """ def __init__( self, indent_increment: int = 2, width: t.Optional[int] = None, max_width: t.Optional[int] = None, ) -> None: import shutil self.indent_increment = indent_increment if max_width is None: max_width = 80 if width is None: width = FORCED_WIDTH if width is None: width = max(min(shutil.get_terminal_size().columns, max_width) - 2, 50) self.width = width self.current_indent = 0 self.buffer: t.List[str] = [] def write(self, string: str) -> None: """Writes a unicode string into the internal buffer.""" self.buffer.append(string) def indent(self) -> None: """Increases the indentation.""" self.current_indent += self.indent_increment def dedent(self) -> None: """Decreases the indentation.""" self.current_indent -= self.indent_increment def write_usage( self, prog: str, args: str = "", prefix: t.Optional[str] = None ) -> None: """Writes a usage line into the buffer. :param prog: the program name. :param args: whitespace separated list of arguments. :param prefix: The prefix for the first line. Defaults to ``"Usage: "``. """ if prefix is None: prefix = f"{_('Usage:')} " usage_prefix = f"{prefix:>{self.current_indent}}{prog} " text_width = self.width - self.current_indent if text_width >= (term_len(usage_prefix) + 20): # The arguments will fit to the right of the prefix. indent = " " * term_len(usage_prefix) self.write( wrap_text( args, text_width, initial_indent=usage_prefix, subsequent_indent=indent, ) ) else: # The prefix is too long, put the arguments on the next line. self.write(usage_prefix) self.write("\n") indent = " " * (max(self.current_indent, term_len(prefix)) + 4) self.write( wrap_text( args, text_width, initial_indent=indent, subsequent_indent=indent ) ) self.write("\n") def write_heading(self, heading: str) -> None: """Writes a heading into the buffer.""" self.write(f"{'':>{self.current_indent}}{heading}:\n") def write_paragraph(self) -> None: """Writes a paragraph into the buffer.""" if self.buffer: self.write("\n") def write_text(self, text: str) -> None: """Writes re-indented text into the buffer. This rewraps and preserves paragraphs. """ indent = " " * self.current_indent self.write( wrap_text( text, self.width, initial_indent=indent, subsequent_indent=indent, preserve_paragraphs=True, ) ) self.write("\n") def write_dl( self, rows: t.Sequence[t.Tuple[str, str]], col_max: int = 30, col_spacing: int = 2, ) -> None: """Writes a definition list into the buffer. This is how options and commands are usually formatted. :param rows: a list of two item tuples for the terms and values. :param col_max: the maximum width of the first column. :param col_spacing: the number of spaces between the first and second column. """ rows = list(rows) widths = measure_table(rows) if len(widths) != 2: raise TypeError("Expected two columns for definition list") first_col = min(widths[0], col_max) + col_spacing for first, second in iter_rows(rows, len(widths)): self.write(f"{'':>{self.current_indent}}{first}") if not second: self.write("\n") continue if term_len(first) <= first_col - col_spacing: self.write(" " * (first_col - term_len(first))) else: self.write("\n") self.write(" " * (first_col + self.current_indent)) text_width = max(self.width - first_col - 2, 10) wrapped_text = wrap_text(second, text_width, preserve_paragraphs=True) lines = wrapped_text.splitlines() if lines: self.write(f"{lines[0]}\n") for line in lines[1:]: self.write(f"{'':>{first_col + self.current_indent}}{line}\n") else: self.write("\n") @contextmanager def section(self, name: str) -> t.Iterator[None]: """Helpful context manager that writes a paragraph, a heading, and the indents. :param name: the section name that is written as heading. """ self.write_paragraph() self.write_heading(name) self.indent() try: yield finally: self.dedent() @contextmanager def indentation(self) -> t.Iterator[None]: """A context manager that increases the indentation.""" self.indent() try: yield finally: self.dedent() def getvalue(self) -> str: """Returns the buffer contents.""" return "".join(self.buffer)
(indent_increment: int = 2, width: Optional[int] = None, max_width: Optional[int] = None) -> None
[ 0.031021395698189735, -0.000554695725440979, -0.01563783548772335, -0.04318741708993912, 0.05222391337156296, -0.010190509259700775, -0.022473886609077454, -0.010239407420158386, -0.06231662631034851, -0.03753471374511719, -0.0021784412674605846, 0.013515627011656761, -0.005217501427978277, 0.021711064502596855, -0.028752490878105164, 0.025916362181305885, 0.06622853130102158, -0.04244415462017059, 0.025818563997745514, 0.060438912361860275, 0.04596486687660217, -0.00023471421445719898, 0.05746586248278618, 0.010923990979790688, -0.02924147993326187, -0.010024253278970718, 0.010806634090840816, -0.04307005926966667, 0.019315024837851524, -0.028498217463493347, -0.00987266656011343, -0.05738762766122818, -0.018826035782694817, 0.014650079421699047, 0.014923912473022938, -0.05359308049082756, 0.0003340398834552616, 0.0138285793364048, 0.02873293124139309, -0.035539645701646805, 0.008303015492856503, -0.0007933829328976572, 0.027089932933449745, -0.03462034836411476, -0.04682548716664314, 0.030160777270793915, 0.02886984869837761, 0.02394085004925728, -0.039823178201913834, -0.0510503426194191, 0.04545632004737854, -0.016322417184710503, 0.010435002855956554, -0.027148611843585968, -0.028439538553357124, 0.02566208690404892, 0.015060828998684883, -0.028126586228609085, 0.04115322604775429, -0.06665883958339691, -0.0031515273731201887, 0.07471735775470734, 0.05946093425154686, 0.00586296571418643, -0.05062003433704376, -0.005916754249483347, 0.01014161016792059, -0.01869889907538891, 0.020459255203604698, 0.035852596163749695, 0.0054766652174293995, -0.017026560381054878, 0.015295542776584625, 0.01041544321924448, 0.0016136602498590946, -0.005911864340305328, -0.0713139995932579, -0.0072908103466033936, 0.03956890478730202, -0.029808705672621727, -0.019373701885342598, 0.04522160440683365, 0.030708443373441696, 0.0012640338391065598, 0.07667331397533417, 0.01258654985576868, 0.04420451074838638, 0.054610174149274826, 0.04729491472244263, 0.011393419466912746, -0.030708443373441696, 0.011921525932848454, 0.02634667046368122, 0.0031882014591246843, -0.026014158502221107, -0.047999057918787, -0.0015329772140830755, -0.061064817011356354, -0.05762233957648277, 0.020048506557941437, -0.03059108555316925, 0.03880608454346657, 0.05472753196954727, -0.008782223798334599, -0.0013031528797000647, -0.0025280676782131195, -0.051402412354946136, 0.035128895193338394, 0.03203849121928215, -0.022219613194465637, -0.027500681579113007, -0.059343576431274414, 0.012928841635584831, -0.056409649550914764, 0.03299690783023834, 0.020048506557941437, -0.08019402623176575, -0.01224425807595253, 0.0011375081958249211, -0.02793099172413349, 0.015432460233569145, -0.0611039362847805, -0.00998513400554657, -0.049368225038051605, -0.005574462469667196, -0.004645385779440403, -0.048272889107465744, 0.03970582038164139, 0.051989197731018066, 0.012547430582344532, -0.012879942543804646, 0.012234478257596493, 0.04490865394473076, 0.0010390994139015675, 0.0627078115940094, -0.015266204252839088, -0.04928998649120331, 0.03886476159095764, -0.030649764463305473, 0.0611821711063385, 0.062473099678754807, -0.06204279139637947, -0.028478657826781273, -0.006664905697107315, -0.05187184363603592, -0.0016075478633865714, 0.04170089215040207, -0.02924147993326187, 0.011843288317322731, 0.05218479409813881, -0.002402153331786394, -0.010112270712852478, 0.002691878704354167, 0.03647850081324577, 0.04901615157723427, 0.037788987159729004, -0.03976450115442276, -0.05042443796992302, 0.022747719660401344, 0.007090325467288494, 0.010014473460614681, -0.08316706866025925, 0.03004341945052147, 0.025994598865509033, -0.015119507908821106, 0.07577357441186905, -0.052575983107089996, -0.024234242737293243, 0.018337048590183258, -0.0226303618401289, 0.016048584133386612, -0.008381253108382225, 0.005188161972910166, 0.046160463243722916, -0.02024410106241703, 0.050307080149650574, -0.025838123634457588, 0.025427373126149178, -0.021124279126524925, -0.07776864618062973, -0.03479638323187828, -0.038434453308582306, -0.026874778792262077, 0.009887336753308773, -0.006283495109528303, 0.008503500372171402, 0.04545632004737854, -0.013965495862066746, 0.02986738458275795, -0.007667331025004387, -0.059304457157850266, -0.04596486687660217, 0.02448851615190506, 0.011031568050384521, -0.02196533977985382, 0.022513005882501602, -0.004985232371836901, -0.022434767335653305, 0.0844188779592514, -0.06055626645684242, -0.03555920347571373, 0.047607868909835815, 0.03573523834347725, -0.025270897895097733, 0.04772522300481796, 0.033642370253801346, 0.0018789361929520965, -0.03203849121928215, -0.11242811381816864, 0.038747403770685196, -0.013163555413484573, -0.07135312259197235, 0.013701442629098892, 0.022943314164876938, 0.026268431916832924, -0.03565699979662895, 0.04905527085065842, 0.03739779815077782, -0.05120681971311569, -0.004271309822797775, 0.06505496054887772, 0.019647536799311638, -0.0034131358843296766, 0.016508232802152634, 0.005745608359575272, -0.03035637177526951, 0.06067362427711487, -0.0007249246118590236, 0.039608024060726166, 0.011647692881524563, 0.020615732297301292, -0.06071274355053902, -0.03839533403515816, 0.05863943696022034, -0.019403042271733284, -0.08027226477861404, -0.0269725751131773, -0.02669874206185341, -0.019960489124059677, -0.03536360710859299, -0.06587645411491394, 0.007902045734226704, 0.05789617449045181, 0.0181707926094532, -0.01938348263502121, 0.0032591046765446663, 0.0015146401710808277, 0.0020060730166733265, -0.009843327105045319, 0.0038018813356757164, -0.04201384633779526, 0.026014158502221107, -0.02151546999812126, -0.025818563997745514, -0.007217462174594402, 0.017153697088360786, -0.028635134920477867, -0.010298086330294609, 0.005877634976059198, 0.01983335055410862, 0.01289950218051672, -0.0364198237657547, -0.02394085004925728, 0.006655125878751278, 0.08214997500181198, 0.0048434254713356495, 0.008611077442765236, -0.041544415056705475, -0.029652228578925133, 0.020635291934013367, -0.02010718546807766, 0.07988107204437256, -0.03968626260757446, 0.026737861335277557, -0.05789617449045181, 0.038199737668037415, 0.04784258082509041, 0.006537768989801407, -0.019500840455293655, -0.01283104345202446, 0.030023859813809395, 0.016048584133386612, -0.03579391911625862, -0.003870339598506689, -0.0025378474965691566, -0.0049314433708786964, -0.047646984457969666, -0.0075842030346393585, 0.020909124985337257, 0.029124122112989426, 0.018552202731370926, 0.04420451074838638, 0.053201887756586075, 0.009192973375320435, 0.08316706866025925, 0.03076712228357792, -0.05065915361046791, -0.015168406069278717, 0.004359327722340822, -0.09099087864160538, -0.031647298485040665, -0.0335250124335289, 0.08230645209550858, 0.02204357646405697, -0.01731017418205738, -0.01231271680444479, 0.01414153166115284, -0.05480577051639557, 0.06329459697008133, -0.057270269840955734, -0.0024962835013866425, -0.005413096863776445, 0.062160149216651917, 0.055783744901418686, -0.01556937675923109, 0.016576692461967468, -0.02128075622022152, -0.005295739509165287, 0.01376012060791254, 0.05163712799549103, -0.06004771962761879, -0.015608495101332664, 0.03925595432519913, -0.036302465945482254, 0.061964552849531174, -0.030806241557002068, 0.04013613238930702, 0.0254860520362854, 0.008611077442765236, 0.007877595722675323, -0.026033718138933182, 0.0010415443684905767, -0.010591479018330574, 0.02859601564705372, -0.0509721040725708, -0.004337323363870382, -0.012390954419970512, -0.003708973526954651, -0.027050813660025597, -0.0611039362847805, 0.0843406394124031, 0.02276727929711342, -0.0006998640019446611, -0.02634667046368122, 0.04756874963641167, -0.03765207156538963, 0.07514766603708267, 0.025094861164689064, 0.041544415056705475, 0.016195280477404594, 0.045573677867650986, 0.027031254023313522, 0.0029681569430977106, -0.006425301544368267, 0.0020940909162163734, -0.0670500248670578, 0.007662441115826368, -0.06333371996879578, -0.04780346155166626, -0.0032615496311336756, -0.014806555584073067, 0.02069397084414959, -0.0239995289593935, 0.055470794439315796, -0.04017525166273117, -0.022571684792637825, -0.016576692461967468, -0.007589092943817377, 0.02255212515592575, 0.03863004967570305, 0.04451746493577957, -0.027402885258197784, 0.046747248619794846, -0.05449281632900238, 0.0023410299327224493, -0.000006804763870604802, -0.023256266489624977, 0.030708443373441696, -0.07330907136201859, -0.0639205053448677, 0.04334389045834541, 0.02593592181801796, 0.020811326801776886, 0.012664788402616978, -0.06470288336277008, -0.046512532979249954, -0.01391659677028656, -0.0006662461091764271, -0.0077700186520814896, 0.02345186285674572, -0.026718301698565483, 0.023393183946609497, 0.007608652580529451, 0.05856119841337204, -0.03704572841525078, 0.015305322594940662, -0.007633102126419544, 0.016606030985713005, -0.04467393830418587, 0.027089932933449745, 0.0364198237657547, -0.018229471519589424, 0.017681803554296494, 0.024234242737293243, -0.033153384923934937, -0.02155458927154541, 0.07416969537734985, 0.03311426565051079, -0.018874935805797577, 0.08582716435194016, -0.012263817712664604, -0.017779601737856865, -0.018728239461779594, 0.044400107115507126, 0.02372569590806961, -0.03976450115442276, -0.04858584329485893, 0.022982433438301086, 0.03041505068540573, -0.0010745510226115584, -0.01360364444553852, -0.030610645189881325, 0.039510227739810944, 0.07397409528493881, 0.021339435130357742, -0.014835894107818604, -0.08426240086555481, -0.013280913233757019, 0.011980204842984676, -0.056096699088811874, -0.0020928685553371906, -0.005339748226106167, 0.012713686563074589, -0.012068222276866436, -0.023667016997933388, -0.027305087074637413, 0.007144114002585411, -0.01839572750031948, 0.0569181963801384, 0.008513280190527439, 0.05472753196954727, -0.010865312069654465, 0.019354144111275673, 0.039021238684654236, 0.02006806619465351, 0.036537181586027145, -0.01172593142837286, 0.02362789772450924, -0.03614598885178566, 0.011031568050384521, 0.03542228788137436, 0.07405233383178711, -0.014679417945444584, -0.03393576294183731, -0.046512532979249954, -0.08426240086555481, 0.009613502770662308, -0.029358835890889168, -0.015021709725260735, 0.060478031635284424, 0.05777881667017937, 0.06231662631034851, 0.057817935943603516, 0.048859674483537674, -0.009725970216095448, -0.04479129612445831, 0.014425144530832767, 0.024116884917020798, -0.05159800872206688, -0.0007359268493019044, -0.009236982092261314, 0.015667174011468887, -0.04549543932080269, 0.03821929916739464, 0.01246919296681881, -0.022513005882501602, 0.002667429391294718, -0.04318741708993912, -0.07577357441186905, -0.022493446245789528, 0.013887258246541023, -0.06505496054887772, 0.009564604610204697, -0.008376363664865494, -0.034913741052150726, 0.009902006015181541, 0.07933340221643448, -0.04021437093615532, 0.019011851400136948, -0.03837577626109123, -0.03997965529561043, 0.004728513304144144, 0.011804169043898582, -0.05007236823439598, 0.013036418706178665, 0.012635448947548866, -0.0030683993827551603, -0.005007236730307341, -0.04975941404700279, -0.08019402623176575, 0.02200445719063282, -0.028791610151529312, 0.018307708203792572, -0.04682548716664314, 0.05195007845759392, 0.030160777270793915, 0.002191888401284814, 0.017378631979227066, -0.02431248128414154, -0.035226691514253616, -0.012302936986088753, -0.008464381098747253, -0.002963267033919692, -0.014024174772202969, -0.021769743412733078, 0.007413057144731283, -0.05359308049082756, -0.030297692865133286, 0.07021866738796234, -0.01779916137456894, -0.02196533977985382, 0.0451042503118515, -0.01246919296681881, -0.07530414313077927, -0.0029608220793306828, 0.03976450115442276, 0.03411179780960083, 0.007437506690621376, 0.024390719830989838, -0.0038263306487351656, 0.0007493740413337946, 0.02869381383061409, 0.029789146035909653, -0.0055304537527263165, 0.025838123634457588, 0.033818405121564865, -0.01943238079547882, -0.013104877434670925, 0.038884323090314865, 0.003638070309534669, 0.02973046712577343, 0.03759339451789856, -0.02517309971153736, -0.06305988878011703, 0.009305440820753574, 0.03528537228703499, 0.030532408505678177, -0.04788170009851456, 0.032097168266773224, -0.022571684792637825, -0.04056644067168236, -0.019324803724884987, 0.027402885258197784, 0.026366230100393295, -0.04467393830418587, 0.021808862686157227, 0.019911589100956917, -0.010298086330294609, 0.0901302620768547, 0.014503383077681065, -0.004760297946631908, 0.038160618394613266, -0.07303524017333984, -0.07315259426832199, 0.08340178430080414, 0.017955638468265533, -0.0016099928179755807, -0.003948577679693699, -0.012772365473210812, 0.001273813657462597, 0.004058599937707186, 0.04612134397029877, 0.01703634113073349, -0.029652228578925133, -0.04166177287697792, -0.042052965611219406, -0.03027813322842121, 0.07006219029426575, 0.028126586228609085, -0.018493523821234703, -0.026600943878293037, 0.04569103568792343, -0.03683057427406311, -0.03182333707809448, 0.030395491048693657, -0.006151468493044376, -0.019354144111275673, -0.01685052551329136, 0.01983335055410862, -0.0030855140648782253, -0.023197587579488754, -0.0029119232203811407, 0.006244376301765442, -0.06759769469499588, 0.04991589114069939, 0.06845831125974655, -0.013975275680422783, -0.01734929345548153, 0.01622462086379528, -0.0009639175259508193, -0.06489848345518112, 0.014434924349188805, -0.09146030992269516, 0.058287363499403, 0.056096699088811874, 0.04979853332042694, 0.051167700439691544, -0.017378631979227066, -0.025270897895097733, 0.007916714996099472, -0.036850132048130035, 0.02173062413930893, -0.009207643568515778, -0.06388138979673386, -0.090364970266819, -0.015461798757314682, 0.020204981788992882, -0.038434453308582306, 0.05191096290946007, -0.015207525342702866, -0.009725970216095448, 0.046473413705825806, -0.029495753347873688, -0.018552202731370926, -0.040097013115882874, 0.010102490894496441, -0.04932910576462746, -0.00039913642103783786, -0.00971619039773941, -0.040409963577985764, -0.006004772149026394, -0.007774908561259508, 0.03753471374511719, 0.0011161150177940726, 0.008347024209797382, 0.02390173077583313, -0.022806398570537567, -0.04874232038855553, 0.0011228385847061872, 0.019901810213923454, 0.023393183946609497, -0.051989197731018066, -0.013818799518048763, 0.0007909380365163088, -0.02141767181456089, -0.016596250236034393, 0.00991667527705431, -0.010346985422074795, 0.02096780389547348, -0.01448382344096899, -0.03086492046713829, 0.040644679218530655, 0.005838516168296337, -0.031295228749513626, -0.017965417355298996, 0.012175800278782845, -0.0068458314053714275, -0.03313382342457771, -0.0011265060165897012, 0.0269725751131773, 0.010787074454128742, -0.02448851615190506, 0.02452763542532921, -0.018239250406622887, 0.003471814561635256, -0.027461564168334007, -0.006288385018706322, 0.04170089215040207, 0.049368225038051605, 0.007892265915870667, 0.03319250047206879, 0.016527792438864708, 0.0032053161412477493, -0.01662559062242508, -0.037476036697626114, -0.02910456247627735, 0.04193560779094696, 0.03890388086438179, 0.006796932779252529, -0.04252239316701889, 0.002819015644490719, 0.016478894278407097, 0.011364080011844635, -0.05159800872206688, -0.008933809585869312, 0.07686890661716461, 0.014522941783070564, -0.01457184087485075, -0.02865469455718994, -0.07143136113882065, -0.029984740540385246, -0.0022028908133506775, 0.010865312069654465, 0.007789578288793564, -0.02841997891664505, -0.012332276441156864, 0.003574501955881715, -0.05746586248278618, 0.02986738458275795, -0.058287363499403, 0.06317724287509918, -0.016234399750828743, 0.04115322604775429, 0.008449711836874485, -0.019901810213923454, 0.018728239461779594, -0.013378710485994816, -0.022669481113553047, -0.01479677576571703, 0.014679417945444584, 0.05703555420041084, 0.10147477686405182, 0.039744939655065536, -0.001668671378865838, 0.027891872450709343, -0.035989511758089066, 0.004471794702112675, 0.01694832183420658, 0.023667016997933388, -0.010787074454128742, -0.009584164246916771, 0.05597934126853943, 0.04447834566235542, -0.040605559945106506, -0.03460078686475754, 0.03620466962456703, -0.09740640223026276, -0.012850603088736534, 0.011021788232028484, -0.043852441012859344, -0.016420215368270874, 0.0009046277264133096, -0.03475726395845413, 0.02304111234843731, -0.004092829301953316, 0.012488752603530884, 0.017955638468265533, -0.009393458254635334, 0.053123652935028076, 0.0062688253819942474, -0.025818563997745514, 0.02955443225800991, -0.03970582038164139, 0.04303093999624252, -0.017828499898314476, 0.020126743242144585, 0.03152994439005852, 0.0568399578332901, 0.0045720371417701244, 0.05969564989209175, 0.056957315653562546, -0.04729491472244263, -0.05746586248278618, 0.011804169043898582, 0.05151977017521858, -0.019403042271733284, 0.036576297134160995, -0.014386025257408619, -0.003669854486361146, -0.01084575243294239, -0.00991667527705431, -0.025055741891264915, 0.017769822850823402, 0.06489848345518112, 0.0683409571647644, 0.010933770798146725, -0.0299065038561821, 0.049368225038051605 ]
9,474
asyncclick.formatting
__init__
null
def __init__( self, indent_increment: int = 2, width: t.Optional[int] = None, max_width: t.Optional[int] = None, ) -> None: import shutil self.indent_increment = indent_increment if max_width is None: max_width = 80 if width is None: width = FORCED_WIDTH if width is None: width = max(min(shutil.get_terminal_size().columns, max_width) - 2, 50) self.width = width self.current_indent = 0 self.buffer: t.List[str] = []
(self, indent_increment: int = 2, width: Optional[int] = None, max_width: Optional[int] = None) -> NoneType
[ -0.0008796212496235967, 0.03365623578429222, -0.026579158380627632, -0.02700699120759964, 0.0027920594438910484, 0.0070770797319710255, -0.02388737164437771, -0.017737265676259995, -0.03595584258437157, 0.02203342691063881, 0.009456903673708439, 0.0014940749388188124, -0.013824370689690113, 0.03151706978678703, -0.011373241432011127, 0.04388858750462532, 0.07729525864124298, -0.06517330557107925, 0.01664985530078411, 0.07080645114183426, 0.07208994776010513, 0.04053722694516182, 0.0023642259184271097, 0.040965061634778976, -0.0047106253914535046, 0.041285935789346695, -0.03518930822610855, 0.007001317571848631, 0.02518869936466217, -0.0402163527905941, 0.024012155830860138, -0.018022486940026283, 0.008734934031963348, 0.03322840481996536, 0.018022486940026283, -0.03595584258437157, -0.02718525566160679, -0.014733516611158848, -0.015535704791545868, -0.058399274945259094, 0.04716864600777626, -0.0030416289810091257, -0.0006567913223989308, -0.029983999207615852, -0.028165707364678383, 0.03510017693042755, 0.08906067907810211, -0.06182194501161575, -0.003407070180401206, -0.02732786536216736, 0.01266565453261137, 0.02021513320505619, 0.011560418643057346, -0.005312266293913126, -0.02852223441004753, 0.06602897495031357, 0.03747108578681946, -0.010571053251624107, 0.02686437964439392, -0.04563557729125023, -0.06346197426319122, 0.03707890585064888, 0.08135967701673508, -0.024457816034555435, -0.011301935650408268, -0.01188129372894764, -0.024564774706959724, -0.02017948031425476, 0.016444850713014603, 0.04527904838323593, 0.04242682456970215, 0.015259395353496075, -0.02347736433148384, -0.005067153368145227, 0.013726325705647469, 0.008806239813566208, -0.08014748245477676, -0.016355719417333603, 0.02189081534743309, -0.03547453135251999, 0.0062347822822630405, 0.05921928957104683, 0.0284865815192461, 0.04945042356848717, 0.06681333482265472, -0.019181203097105026, 0.03754239156842232, 0.012781526893377304, -0.0031797834672033787, 0.026454372331500053, -0.06770465523004532, 0.03365623578429222, 0.0011314190924167633, -0.007348931860178709, -0.015562443993985653, -0.007059253286570311, 0.05230264738202095, -0.05961146950721741, 0.0009999494068324566, 0.014127419330179691, -0.02854006178677082, 0.02208690531551838, 0.01714899390935898, -0.032747089862823486, -0.041143324226140976, 0.015927884727716446, -0.00934103224426508, 0.0019163376418873668, 0.00029079310479573905, 0.016017017886042595, 0.014555253088474274, -0.01853945292532444, 0.04239116981625557, 0.03531409054994583, 0.023031704127788544, 0.018931632861495018, -0.039824169129133224, 0.012050644494593143, 0.051411326974630356, -0.05262352153658867, 0.020589487627148628, -0.061572372913360596, -0.021231237798929214, 0.02520652487874031, 0.033139269798994064, 0.0372215174138546, -0.02030426636338234, 0.001206624205224216, 0.05907667800784111, 0.05593923479318619, -0.0064888084307312965, -0.009474730119109154, 0.009006787091493607, -0.04014504700899124, 0.06239238753914833, -0.04043026641011238, -0.010660185478627682, 0.059861041605472565, -0.05365745350718498, 0.00923407357186079, 0.024939129129052162, 0.0019664743449538946, 0.007001317571848631, -0.02017948031425476, -0.10282265394926071, 0.06909511238336563, 0.03579540550708771, -0.026151323691010475, 0.03993112966418266, 0.03317492455244064, -0.00429170485585928, -0.026365241035819054, 0.004068875219672918, 0.06239238753914833, 0.0509834960103035, 0.02536696195602417, -0.04945042356848717, -0.04260508716106415, 0.07665350288152695, -0.007286539766937494, 0.00037268310552462935, -0.03825544938445091, 0.017683785408735275, -0.03661542013287544, -0.008030791766941547, 0.033085793256759644, -0.05536878854036331, -0.011872380040585995, 0.004991391208022833, -0.0073355622589588165, 0.04574253410100937, -0.036330197006464005, 0.03747108578681946, 0.017844222486019135, -0.024921303614974022, 0.05558270588517189, -0.002607110422104597, 0.011212803423404694, -0.017683785408735275, -0.04203464463353157, -0.02887876331806183, -0.03725716844201088, 0.020589487627148628, 0.01830771006643772, 0.047917354851961136, -0.0030861948616802692, 0.034494079649448395, 0.05219569057226181, 0.04748952016234398, 0.014965260401368141, -0.019305987283587456, -0.024368684738874435, -0.0035118001978844404, -0.014956346713006496, -0.003315709764137864, -0.0002738023176789284, 0.048202577978372574, -0.014974173158407211, 0.02201559953391552, -0.046419937163591385, -0.014706777408719063, 0.07283865660429001, 0.02050035633146763, -0.04848780110478401, 0.048059966415166855, 0.03900415450334549, -0.02711394988000393, -0.004420946352183819, -0.04595645144581795, 0.046170368790626526, -0.024386510252952576, -0.06242804229259491, 0.037756308913230896, -0.003460549283772707, 0.016435937955975533, -0.04706168919801712, 0.007963942363858223, 0.0442807711660862, 0.028130054473876953, 0.00010932594886980951, 0.10888363420963287, 0.03843371197581291, -0.044672951102256775, -0.01099888700991869, 0.026668289676308632, -0.02714960277080536, 0.04160680994391441, -0.05012782663106918, 0.02033991925418377, 0.06028887256979942, -0.021480808034539223, -0.09505034983158112, -0.04920085519552231, 0.021516460925340652, -0.037756308913230896, -0.07686742395162582, -0.03936068341135979, -0.026115670800209045, -0.061786290258169174, -0.10809926688671112, -0.03531409054994583, -0.0036878357641398907, 0.04378163069486618, 0.030643576756119728, -0.016462678089737892, 0.006805227138102055, -0.04089375585317612, 0.029912693426012993, -0.01852162554860115, 0.014011547900736332, -0.02723873406648636, 0.013441103510558605, -0.04085810109972954, 0.015027652494609356, -0.004661602899432182, 0.056616637855768204, -0.06378284841775894, -0.07159081101417542, -0.011640637181699276, 0.013040008954703808, 0.007322192657738924, -0.03707890585064888, 0.0033535908441990614, 0.03492191061377525, 0.0569731630384922, -0.01345892995595932, -0.00763415452092886, -0.009332118555903435, 0.014403728768229485, -0.0030171177349984646, -0.02351301722228527, 0.08877545595169067, -0.013120228424668312, 0.02870049886405468, -0.05540443956851959, -0.029074853286147118, 0.012407172471284866, -0.013227186165750027, -0.012638915330171585, -0.05240960791707039, 0.0016411426477134228, 0.00009679176582721993, -0.015785275027155876, -0.02527783066034317, -0.00636402377858758, -0.01853945292532444, -0.0040399073623120785, -0.037934571504592896, -0.019288161769509315, -0.010695838369429111, 0.008543300442397594, 0.07843614369630814, 0.032889701426029205, 0.019359467551112175, 0.1339118927717209, -0.03595584258437157, -0.021195584908127785, 0.026044365018606186, -0.01862858422100544, -0.056402720510959625, -0.03993112966418266, -0.058363623917102814, 0.019555557519197464, -0.0002584827598184347, -0.019234681501984596, 0.03875458613038063, -0.02518869936466217, -0.02167689800262451, 0.05743664875626564, -0.014207637868821621, 0.05597488582134247, 0.05850623548030853, 0.014751343056559563, 0.043175533413887024, 0.002017725259065628, 0.03568844497203827, -0.003502886975184083, -0.026383066549897194, -0.010954320430755615, 0.0647454708814621, -0.011159324087202549, -0.0538000650703907, -0.01687268540263176, -0.04570688307285309, 0.0033558192662894726, -0.011578245088458061, 0.05066261813044548, 0.011221717111766338, 0.0018929404905065894, 0.04035896062850952, -0.04535035416483879, 0.02025078609585762, -0.012059557251632214, -0.04577818512916565, -0.04488686844706535, -0.022176038473844528, -0.029181811958551407, 0.015562443993985653, -0.019430773332715034, -0.04488686844706535, 0.06920207291841507, -0.016489416360855103, 0.031142715364694595, -0.010169959627091885, 0.012309126555919647, -0.08193012326955795, 0.06652811169624329, -0.03199838101863861, 0.024939129129052162, -0.02017948031425476, 0.037827614694833755, 0.034511905163526535, -0.024939129129052162, 0.003333536209538579, 0.0009147169766947627, -0.0643889456987381, -0.011952599510550499, -0.020625140517950058, -0.026240456849336624, 0.0217838566750288, -0.012407172471284866, 0.03032270073890686, -0.018967285752296448, 0.042783353477716446, -0.024867823347449303, -0.002994834678247571, -0.013155880384147167, -0.03322840481996536, -0.008690368384122849, 0.08663628995418549, 0.04210595041513443, -0.0037903375923633575, 0.007870353758335114, -0.03340666741132736, -0.00856112688779831, 0.022318648174405098, -0.06096627563238144, -0.017353996634483337, -0.047917354851961136, -0.0679185688495636, 0.0014417098136618733, 0.0021436242386698723, 0.05604619160294533, 0.01012539304792881, -0.061394110321998596, -0.010535400360822678, -0.021320370957255363, -0.03565279394388199, 0.02356649748980999, 0.03194490447640419, -0.05283743888139725, 0.00598521251231432, 0.017353996634483337, 0.056759245693683624, 0.009051352739334106, 0.004503393545746803, -0.029787909239530563, 0.006288261618465185, 0.021249065175652504, 0.0467408113181591, 0.02549174800515175, -0.01176542229950428, 0.03178446367383003, 0.0509834960103035, -0.019573383033275604, -0.03237273544073105, 0.054156593978405, 0.022871267050504684, -0.014216551557183266, 0.05390702560544014, 0.009251900017261505, -0.0074157812632620335, 0.020696446299552917, 0.02862919308245182, 0.03340666741132736, -0.0442807711660862, -0.02690003253519535, -0.002201559953391552, 0.005530639551579952, -0.02342388592660427, -0.07226821035146713, 0.043032921850681305, 0.021338196471333504, 0.017701612785458565, 0.005379115231335163, 0.0044788820669054985, 0.0003506786597426981, -0.01343218982219696, 0.04235551878809929, -0.06916642189025879, -0.029377901926636696, 0.022621696814894676, 0.030964450910687447, 0.0022394410334527493, -0.013191533274948597, 0.003260002238675952, -0.009768865071237087, -0.005744556430727243, 0.024760864675045013, 0.029983999207615852, 0.03210534155368805, -0.03408407047390938, 0.02529565617442131, 0.044530339539051056, -0.008890915662050247, 0.015295048244297504, -0.027256561443209648, 0.058470580726861954, -0.023958677425980568, 0.01081170979887247, 0.007977312430739403, 0.05718708038330078, -0.025776969268918037, -0.019288161769509315, 0.01830771006643772, -0.051446981728076935, -0.04510078206658363, 0.01350349560379982, -0.023192143067717552, -0.009180594235658646, 0.014564165845513344, 0.04720429703593254, 0.06831075251102448, -0.04028765857219696, -0.024903476238250732, 0.0029970628675073385, -0.023192143067717552, 0.05276613309979439, -0.017790744081139565, -0.006190216168761253, -0.02017948031425476, 0.02697133831679821, -0.02383389323949814, 0.0336027592420578, 0.04417381063103676, -0.04371032491326332, 0.039752863347530365, -0.051553938537836075, -0.0337810218334198, -0.019947737455368042, -0.029342249035835266, -0.03344232216477394, -0.0006863162852823734, -0.009492556564509869, -0.029253117740154266, 0.0368649885058403, 0.02035774476826191, -0.06463851779699326, 0.0407511442899704, 0.011551504954695702, -0.03340666741132736, 0.08321361988782883, -0.08036139607429504, 0.005735643208026886, 0.036419328302145004, 0.027969617396593094, 0.010446268133819103, 0.005535096395760775, -0.06467416882514954, -0.024493468925356865, 0.015393093228340149, -0.042819004505872726, 0.015731794759631157, -0.06232108175754547, 0.03059009648859501, 0.02215821109712124, -0.05597488582134247, -0.0400380864739418, -0.0373997800052166, -0.06053844466805458, 0.006845336407423019, -0.011587157845497131, -0.03231925889849663, -0.00254694651812315, -0.04759648069739342, -0.00427610706537962, -0.06093062460422516, -0.004019852261990309, 0.06610027700662613, 0.021195584908127785, 0.0030750534497201443, 0.009652993641793728, -0.026525678113102913, -0.06770465523004532, -0.01880684867501259, 0.019056418910622597, 0.0740865021944046, -0.0055796620436012745, 0.05280178785324097, 0.01873554289340973, 0.006069887895137072, 0.009501469321548939, 0.013886762782931328, 0.006528917700052261, 0.006720551755279303, 0.048238229006528854, -0.024618253111839294, 0.015847666189074516, 0.025563053786754608, -0.03322840481996536, 0.014163072220981121, -0.0017157907132059336, -0.013913502916693687, -0.05875580385327339, -0.030732708051800728, 0.03697194531559944, 0.0039552319794893265, -0.01254978310316801, 0.024279551580548286, -0.007068166509270668, -0.019020766019821167, -0.009323205798864365, -0.03772065415978432, 0.001400486333295703, -0.04863040894269943, 0.011417807079851627, 0.039966780692338943, -0.034547556191682816, 0.09890084713697433, 0.022817788645625114, 0.03042965941131115, 0.008895372040569782, -0.037756308913230896, -0.04909389838576317, 0.03237273544073105, -0.00006496885907836258, -0.021605592221021652, -0.02338823303580284, -0.015098958276212215, 0.04884432628750801, -0.007433607243001461, 0.019395120441913605, -0.0084229726344347, 0.004639319609850645, -0.05921928957104683, -0.06028887256979942, -0.015633750706911087, 0.08335623145103455, -0.014697863720357418, -0.03761369735002518, -0.027470476925373077, 0.04420946538448334, -0.024065636098384857, -0.027630915865302086, -0.021249065175652504, -0.029663125053048134, -0.06499504297971725, -0.03394145891070366, -0.0011698573362082243, -0.034280162304639816, 0.0398598238825798, 0.02028643898665905, -0.03424450755119324, -0.032836221158504486, 0.021249065175652504, 0.021213412284851074, -0.011506939306855202, -0.013530234806239605, -0.019609035924077034, -0.00457692751660943, -0.055012259632349014, 0.036027148365974426, -0.09497904032468796, 0.13662150502204895, 0.05747230350971222, 0.0011442318791523576, 0.05943320691585541, 0.019199028611183167, -0.0472756028175354, 0.0001203978099511005, -0.026668289676308632, 0.010134306736290455, 0.02501043491065502, -0.04324683919548988, -0.08021878451108932, 0.030875319615006447, 0.02353084459900856, -0.036027148365974426, 0.04210595041513443, -0.03424450755119324, -0.004015395883470774, 0.03362058475613594, -0.02862919308245182, -0.0004846551746595651, -0.03707890585064888, -0.000257647130638361, -0.02340605854988098, 0.0014840475050732493, 0.00927863921970129, -0.036080628633499146, 0.03344232216477394, -0.0472756028175354, 0.03189142420887947, -0.05383571982383728, -0.029948346316814423, 0.021052975207567215, -0.027755700051784515, -0.01882467418909073, 0.02379824034869671, 0.00465714605525136, 0.011649549938738346, -0.016596375033259392, 0.010285831056535244, 0.026490025222301483, -0.0056643374264240265, -0.0968329906463623, -0.0063417404890060425, 0.03552800789475441, -0.03365623578429222, 0.010214525274932384, -0.04274769872426987, -0.013717412017285824, 0.02886093594133854, -0.009260812774300575, -0.0288431104272604, -0.027987442910671234, 0.03190924972295761, -0.039396338164806366, 0.025652185082435608, 0.012852831743657589, -0.017960093915462494, -0.009104832075536251, 0.021569939330220222, 0.026115670800209045, 0.019715994596481323, -0.05105480179190636, 0.0072464304976165295, -0.04228421300649643, 0.0021246836986392736, -0.04559992253780365, 0.03590236231684685, 0.042783353477716446, 0.007972856052219868, -0.015562443993985653, -0.02196212112903595, -0.019947737455368042, 0.03212316706776619, 0.03399493917822838, 0.08321361988782883, -0.04060853272676468, -0.03246186673641205, 0.01531287468969822, 0.032747089862823486, -0.12157602608203888, 0.008168946020305157, 0.027827005833387375, -0.0502704381942749, 0.028112227097153664, 0.005160741973668337, -0.03255100175738335, -0.021017322316765785, 0.018040314316749573, 0.008030791766941547, 0.014154159463942051, -0.07843614369630814, 0.011319762095808983, -0.007794592063874006, -0.04595645144581795, 0.04000243544578552, -0.04442337900400162, 0.04385293647646904, 0.028058748692274094, -0.007723286282271147, 0.028272666037082672, -0.0011024512350559235, -0.017291605472564697, 0.006453155539929867, -0.019573383033275604, 0.0034248963929712772, 0.019822953268885612, 0.07993356138467789, 0.06303413957357407, 0.02677524834871292, -0.007687633391469717, 0.006840879563242197, 0.021338196471333504, 0.0051340023055672646, -0.013414363376796246, 0.004391978494822979, -0.014065027236938477, 0.012487391009926796, 0.05447746813297272, 0.004057733342051506, 0.036258891224861145, -0.028237013146281242, -0.0021001724526286125, -0.07458564639091492, 0.026650462299585342, 0.0053033530712127686, -0.05069827288389206, -0.0022127015981823206, 0.014073939993977547, -0.05394267663359642, -0.00713947182521224, -0.007602958008646965, 0.003672237740829587, 0.007607414852827787, -0.0109364939853549, 0.054762691259384155, 0.05372875928878784, -0.00723306043073535, 0.004173605237156153, -0.009661907330155373, 0.05921928957104683, -0.04431642219424248, 0.008008508943021297, 0.033014487475156784, 0.04866606369614601, 0.005236504133790731, 0.0643889456987381, 0.01354806125164032, -0.03570627421140671, -0.010749317705631256, 0.0101877860724926, 0.02358432300388813, -0.031053584069013596, 0.012469564564526081, -0.012683480978012085, 0.01091866847127676, -0.0012511902023106813, -0.024707386270165443, -0.0677403062582016, 0.019448598846793175, 0.034939736127853394, 0.028183532878756523, 0.05219569057226181, 0.02709612250328064, 0.03864762932062149 ]
9,475
asyncclick.formatting
dedent
Decreases the indentation.
def dedent(self) -> None: """Decreases the indentation.""" self.current_indent -= self.indent_increment
(self) -> NoneType
[ -0.019436540082097054, 0.03598339855670929, 0.06178411468863487, -0.005379449110478163, -0.035948995500802994, -0.05081021040678024, -0.017062872648239136, -0.020176159217953682, -0.008849645964801311, -0.007297302596271038, -0.04389561712741852, -0.07059075683355331, 0.02141459472477436, -0.002143609570339322, -0.010629895143210888, -0.012427344918251038, 0.03938909247517586, 0.003726053284481168, 0.0025779216084629297, 0.03570818901062012, 0.06298814713954926, 0.03474496304988861, 0.04083393141627312, -0.003840006422251463, -0.05517913028597832, 0.010982505045831203, 0.012384343892335892, -0.028432389721274376, 0.029997631907463074, 0.005422450602054596, -0.034400954842567444, 0.007869218476116657, -0.008518536575138569, 0.03904508426785469, -0.00538374949246645, 0.03446975722908974, -0.05810321122407913, -0.018387310206890106, 0.008759343065321445, 0.01814650371670723, -0.010647095739841461, -0.0016351203666999936, 0.015162220224738121, -0.0057922606356441975, -0.006531881168484688, -0.011524319648742676, 0.05603915452957153, -0.07719574123620987, 0.015196621417999268, -0.011644722893834114, 0.0789157897233963, 0.03505457192659378, 0.02533630281686783, 0.019023727625608444, 0.024235472083091736, -0.008987248875200748, 0.042897991836071014, -0.08359432220458984, 0.0020447068382054567, 0.008260529488325119, -0.0030767354182899, 0.003672301769256592, -0.00916785467416048, 0.010870701633393764, -0.0440676212310791, -0.004906435962766409, -0.03462456166744232, 0.006170670967549086, 0.010896502062678337, -0.014852612279355526, -0.04069633036851883, 0.001025040983222425, -0.03209609165787697, 0.051601432263851166, 0.022377820685505867, -0.02684994414448738, -0.041865959763526917, 0.006798488553613424, 0.029498819261789322, -0.07258601486682892, -0.04733571410179138, -0.02697034738957882, -0.014018388465046883, 0.050190992653369904, 0.02870759554207325, 0.012934759259223938, 0.02151779644191265, -0.009881674312055111, -0.024321474134922028, 0.02827758528292179, 0.0020533069036900997, 0.03629300743341446, -0.039113886654376984, -0.04826454073190689, 0.04365481063723564, 0.06484580039978027, -0.00024053792003542185, -0.025903917849063873, -0.04829894006252289, 0.02162100002169609, 0.027623966336250305, 0.07533808797597885, -0.01712307520210743, -0.020554570481181145, -0.023323846980929375, -0.054284706711769104, -0.022171415388584137, 0.006557682063430548, 0.043001193553209305, -0.01721767708659172, -0.005160143133252859, -0.09013050049543381, 0.0034766464959830046, 0.01679626666009426, 0.02879359945654869, -0.058172013610601425, -0.029137607663869858, 0.0014609654899686575, 0.03154567629098892, 0.003913108725100756, 0.03355813026428223, -0.047404516488313675, -0.010595493949949741, -0.048333339393138885, 0.048642948269844055, -0.017587488517165184, -0.023702258244156837, 0.06746026873588562, 0.015368626452982426, -0.011816727928817272, -0.0032594904769212008, -0.03133926913142204, -0.01969454623758793, -0.045065250247716904, 0.06230012699961662, 0.020176159217953682, 0.05414710193872452, 0.0013050861889496446, 0.0030767354182899, 0.03883867710828781, 0.007993921637535095, -0.03465896099805832, -0.008978649042546749, 0.054972726851701736, -0.030186837539076805, 0.003115436527878046, -0.036224205046892166, 0.018886124715209007, -0.005590155255049467, 0.053975097835063934, -0.033678535372018814, 0.02951601892709732, 0.03125326707959175, -0.037978652864694595, 0.03044484555721283, 0.026161925867199898, -0.09295137971639633, -0.005499852355569601, 0.028724797070026398, -0.03519217669963837, -0.013940987177193165, -0.05290866643190384, 0.07740214467048645, 0.01864531636238098, 0.044033221900463104, 0.020623372867703438, -0.037772249430418015, 0.024338675662875175, -0.02511269599199295, -0.04083393141627312, 0.011799527332186699, 0.007998221553862095, 0.02727995626628399, 0.021448995918035507, -0.011816727928817272, 0.028415188193321228, 0.013880785554647446, 0.05339027941226959, -0.023186244070529938, -0.03976750373840332, 0.04272598400712013, -0.010122480802237988, 0.03044484555721283, 0.04468683898448944, 0.021276989951729774, -0.043723613023757935, 0.007903619669377804, -0.005134342238306999, 0.04496204853057861, -0.018593715503811836, -0.011610321700572968, -0.028931202366948128, 0.009855873882770538, -0.01700267195701599, 0.022825032472610474, -0.022309018298983574, -0.015600833110511303, 0.004932236857712269, 0.08737842738628387, -0.031201666221022606, -0.033042117953300476, 0.0023371148854494095, 0.035914596170186996, -0.023014238104224205, 0.05400949716567993, 0.05865362659096718, -0.03536418080329895, -0.04644128680229187, -0.0716915875673294, 0.004091563634574413, 0.01785409450531006, -0.00932265818119049, 0.10141400992870331, -0.04255397990345955, 0.032044488936662674, -0.07354924082756042, 0.05700238049030304, -0.0008949623443186283, -0.002315614139661193, 0.01610824652016163, 0.021810205653309822, -0.049984585493803024, 0.0034164448734372854, -0.05352788418531418, 0.0018114252015948296, -0.058791231364011765, -0.02992882952094078, -0.04850534722208977, 0.019195731729269028, 0.009675268083810806, -0.02347865141928196, -0.061852917075157166, -0.01886892318725586, -0.04461803659796715, -0.014198994264006615, -0.02788197435438633, -0.09563465416431427, -0.07905339449644089, -0.03749703988432884, -0.05851602181792259, -0.021036183461546898, 0.023237844929099083, 0.0420379675924778, 0.03403974324464798, 0.0011642572935670614, 0.011851129122078419, 0.02430427446961403, -0.01864531636238098, 0.028741996735334396, 0.05400949716567993, -0.02932681329548359, -0.019453739747405052, -0.012435944750905037, 0.07010914385318756, -0.013295968994498253, 0.007993921637535095, 0.011335114017128944, 0.05050060153007507, -0.0011449067387729883, 0.037978652864694595, 0.02920641005039215, -0.06608423590660095, -0.04090273380279541, -0.016538258641958237, 0.04011151194572449, 0.05173903703689575, 0.044446032494306564, -0.05493832379579544, 0.027193954214453697, 0.009339858777821064, 0.0646049901843071, -0.002956331940367818, 0.01507621817290783, -0.023203443735837936, -0.008673341013491154, 0.06505220383405685, -0.005039739888161421, -0.019230132922530174, -0.050569403916597366, 0.00932265818119049, 0.06539621204137802, 0.0035669489298015833, -0.047714125365018845, 0.02021056041121483, -0.0666002482175827, 0.005934164859354496, -0.01722627878189087, -0.010294485837221146, 0.030462045222520828, 0.043310802429914474, 0.04007711261510849, 0.0645017921924591, 0.06746026873588562, 0.049468573182821274, 0.09267617017030716, -0.02910320833325386, -0.018524913117289543, 0.019556943327188492, -0.01650385744869709, -0.005465451627969742, -0.007310202810913324, -0.011661923490464687, -0.0017221977468580008, 0.004859135020524263, 0.018593715503811836, -0.0011287813540548086, 0.021483395248651505, 0.0543535090982914, -0.02267022803425789, -0.02007295750081539, -0.04117794334888458, 0.014181793667376041, 0.02920641005039215, 0.02079537697136402, -0.012745553627610207, -0.03266370669007301, 0.005112841725349426, 0.022498223930597305, 0.012367143295705318, 0.041969165205955505, -0.03268090635538101, -0.002164035104215145, -0.014861212112009525, 0.0009379635448567569, -0.004652729257941246, -0.04592527449131012, 0.02346145175397396, 0.052323851734399796, -0.016521058976650238, 0.03866667300462723, -0.05676157400012016, -0.025886718183755875, -0.0041001639328897, -0.005947065073996782, -0.033678535372018814, -0.012788554653525352, 0.007086596451699734, -0.025147097185254097, 0.0013685129815712571, 0.01569543592631817, 0.05748399347066879, -0.030771654099225998, 0.05142942816019058, -0.03883867710828781, 0.04441163316369057, -0.016650062054395676, 0.03907948359847069, 0.015910441055893898, 0.0892360731959343, 0.09267617017030716, 0.019539741799235344, 0.06346976011991501, 0.008849645964801311, -0.021294191479682922, -0.027847573161125183, -0.06395137310028076, 0.009038850665092468, -0.017174676060676575, -0.025439506396651268, -0.04640688747167587, -0.03536418080329895, 0.021242588758468628, -0.03835706412792206, 0.058378420770168304, 0.029705224558711052, -0.04902135953307152, -0.04193476215004921, -0.08579598367214203, -0.009090452454984188, 0.0328185111284256, 0.002184460638090968, -0.015841638669371605, 0.0460972785949707, -0.010810500010848045, -0.02633392997086048, -0.006510380655527115, 0.03598339855670929, 0.05528233200311661, 0.0064071775414049625, 0.009606466628611088, 0.003081035567447543, -0.010285885073244572, 0.03158007562160492, 0.01608244702219963, -0.0594792515039444, -0.013201366178691387, -0.009357059374451637, -0.027847573161125183, -0.025147097185254097, 0.038597870618104935, 0.01117170974612236, -0.032749708741903305, -0.013665779493749142, 0.04468683898448944, -0.0778837576508522, -0.016564060002565384, -0.05173903703689575, -0.06174971163272858, -0.022601427510380745, 0.021586598828434944, 0.02021056041121483, 0.04293239116668701, 0.008071323856711388, -0.01019988302141428, 0.02162100002169609, -0.013373371213674545, 0.01296915952116251, -0.0327841080725193, 0.05043179914355278, -0.010414889082312584, -0.008320731110870838, -0.03416014835238457, -0.0007503707893192768, 0.07719574123620987, 0.1199905276298523, -0.019453739747405052, 0.019350536167621613, 0.08737842738628387, 0.02019336074590683, -0.006368476897478104, -0.014388198964297771, 0.006738286931067705, 0.0028832301031798124, 0.009580666199326515, -0.049468573182821274, -0.04073072969913483, -0.05132622271776199, 0.018903324380517006, -0.02267022803425789, -0.05590154975652695, -0.007439206354320049, -0.03515777364373207, 0.04743891581892967, 0.010999704711139202, -0.011378115974366665, 0.014577404595911503, 0.008613139390945435, -0.020021354779601097, 0.06367616355419159, 0.05008779093623161, 0.013313169591128826, -0.0016705963062122464, -0.010681496001780033, -0.029240811243653297, 0.005082740914076567, 0.019969753921031952, 0.026265129446983337, 0.03373013436794281, 0.003117586486041546, 0.03065125085413456, 0.030066434293985367, 0.06346976011991501, -0.022205816581845284, -0.022119814530014992, -0.09893714636564255, -0.06749467551708221, 0.015566431917250156, 0.014620405621826649, 0.010948103852570057, 0.04031791910529137, 0.04630368575453758, 0.03359253332018852, 0.032543301582336426, 0.019935352727770805, 0.0038421566132456064, 0.03718743100762367, -0.010277285240590572, 0.005972865503281355, -0.013665779493749142, -0.004962337668985128, -0.030204037204384804, -0.002657473785802722, -0.033884938806295395, -0.0013362620957195759, 0.00584386195987463, 0.012496146373450756, 0.029963230714201927, -0.057243186980485916, 0.04499644786119461, 0.017458483576774597, 0.002887530019506812, -0.04018031433224678, -0.026179125532507896, -0.009073251858353615, -0.010414889082312584, 0.03605220094323158, -0.012745553627610207, -0.032457299530506134, 0.03465896099805832, 0.006398577708750963, -0.011240512132644653, -0.09185054898262024, -0.0056417565792799, -0.06078648567199707, 0.03876987472176552, -0.01771649159491062, -0.07155398279428482, -0.031081262975931168, -0.04262278228998184, -0.07643891870975494, -0.015807239338755608, 0.0032745408825576305, 0.017570286989212036, -0.08049823343753815, -0.004274318460375071, 0.043414004147052765, 0.02397746592760086, 0.03364413231611252, -0.004592527635395527, -0.017372481524944305, 0.008832445368170738, 0.05414710193872452, -0.022481024265289307, 0.071760393679142, -0.014095790684223175, 0.020640572533011436, -0.03003203310072422, 0.013657178729772568, 0.09343299269676208, 0.011274912394583225, 0.02881079912185669, -0.02029656246304512, 0.007017794530838728, 0.006101869512349367, -0.013115364126861095, 0.036533813923597336, -0.007830517366528511, 0.025164298713207245, 0.005482652224600315, 0.023650655522942543, -0.012375743128359318, 0.017596088349819183, 0.008054123260080814, -0.005856762640178204, -0.02172420360147953, 0.04417082667350769, -0.06109609454870224, -0.0348309651017189, 0.020021354779601097, 0.01814650371670723, 0.03632740676403046, -0.01771649159491062, -0.02315184287726879, -0.003655101405456662, -0.05105101689696312, 0.053975097835063934, -0.024269873276352882, 0.0045108250342309475, -0.032027289271354675, 0.06020167097449303, -0.07678292691707611, 0.0008782993536442518, -0.0027800272218883038, 0.00814012624323368, 0.012607949785888195, 0.025387903675436974, -0.03729063272476196, 0.04148755222558975, 0.06319455057382584, 0.015282624401152134, -0.005805160850286484, 0.031012460589408875, 0.0011696324218064547, -0.0788469910621643, 0.06653144955635071, 0.002395166549831629, 0.014233394525945187, -0.03164887800812721, 0.010027877986431122, 0.042897991836071014, -0.04048992320895195, -0.06181851401925087, 0.010174082592129707, 0.039010681211948395, -0.0747876763343811, 0.0017393982270732522, -0.03502017259597778, 0.03739383816719055, -0.021156586706638336, -0.02664353884756565, -0.03514057397842407, 0.007254301104694605, -0.004246367607265711, -0.04076513275504112, -0.04468683898448944, -0.03457295894622803, 0.007202699780464172, -0.04847094416618347, 0.037875451147556305, 0.003670151811093092, -0.033179719001054764, -0.004467824008315802, -0.004786032717674971, -0.035398583859205246, 0.023719457909464836, 0.012917558662593365, 0.0000038381922422559, 0.007852017879486084, -0.01876572147011757, -0.02705635130405426, -0.0082003278657794, -0.009494663216173649, 0.007929420098662376, 0.09879954159259796, 0.0021006083115935326, 0.07141637802124023, 0.010285885073244572, -0.054800719022750854, -0.0261447262018919, -0.023203443735837936, -0.00002103027145494707, -0.009391460567712784, -0.014276396483182907, -0.008471234701573849, -0.06319455057382584, 0.004059312399476767, 0.03001483343541622, -0.04251958057284355, -0.012375743128359318, 0.02562871016561985, -0.01720907725393772, 0.002151134656742215, -0.06140570342540741, -0.00003473690230748616, -0.028346385806798935, 0.04582207277417183, -0.024527881294488907, -0.00026230726507492363, -0.008032622747123241, -0.025250300765037537, -0.015729837119579315, -0.004768832121044397, 0.02521589957177639, -0.03969870135188103, -0.0532870776951313, 0.010131080634891987, -0.017750892788171768, -0.008505635894834995, -0.024871889501810074, -0.04891815781593323, 0.06326335668563843, 0.0007734839455224574, -0.02870759554207325, 0.04007711261510849, -0.061646509915590286, -0.0318036824464798, -0.03601779788732529, -0.013777581974864006, -0.007013494614511728, -0.020537368953227997, -0.01785409450531006, 0.017166076228022575, -0.007525208871811628, -0.05686477944254875, -0.045753270387649536, -0.036946624517440796, 0.03945789486169815, 0.006905991584062576, -0.04011151194572449, 0.02992882952094078, 0.03293891251087189, -0.01905812881886959, -0.03739383816719055, 0.02193060889840126, 0.08386952430009842, 0.022739030420780182, -0.07781495898962021, -0.01348517369478941, 0.06900831311941147, -0.10444130003452301, 0.0004222179704811424, 0.02246382273733616, 0.005852462258189917, -0.0029864327516406775, -0.050982214510440826, -0.06986834108829498, 0.06494899839162827, 0.00638137711212039, 0.03842586651444435, -0.015858840197324753, -0.05978886038064957, 0.025783514603972435, 0.06181851401925087, -0.09370820224285126, -0.01071589719504118, -0.0036959524732083082, -0.03323132172226906, 0.015600833110511303, -0.017303679138422012, -0.01702847331762314, -0.008802344091236591, -0.0809798464179039, 0.004235617350786924, -0.011438317596912384, -0.028053978458046913, -0.025164298713207245, -0.00028515164740383625, -0.008677640929818153, 0.005280546378344297, -0.02163819968700409, 0.032044488936662674, -0.0038959081284701824, 0.0451340526342392, -0.00834653154015541, 0.031820882111787796, 0.007439206354320049, 0.07341163605451584, -0.03821945935487747, 0.005198844242841005, 0.021861806511878967, 0.03526097908616066, 0.05923844501376152, -0.016650062054395676, 0.01895492523908615, 0.08648400008678436, 0.04183156043291092, -0.037462640553712845, -0.03732503578066826, -0.004119514487683773, 0.022532625123858452, -0.09267617017030716, 0.017699291929602623, -0.02285943366587162, -0.05442231148481369, -0.03324852138757706, -0.016675863415002823, -0.028157182037830353, 0.015850240364670753, 0.009984876960515976, 0.015170820988714695, -0.028071178123354912, -0.010174082592129707, -0.0017823994858190417, 0.012900358065962791, 0.019660145044326782, 0.017613288015127182, -0.005714858416467905, 0.046062879264354706, 0.08276869356632233, 0.02296263724565506, 0.00010474822192918509, 0.06739147007465363, 0.013201366178691387, 0.032440099865198135, 0.02860439382493496, 0.021707002073526382, 0.01496441476047039, 0.06670345366001129, -0.03532978147268295, -0.010741697624325752, 0.06085528805851936, 0.025267500430345535, 0.0077746156603097916, -0.004411922302097082, -0.00203503156080842, -0.017664890736341476, 0.02951601892709732, -0.023289445787668228, 0.021036183461546898, 0.0015620182966813445, 0.0022511123679578304, -0.00684148957952857, 0.05081021040678024, 0.018077701330184937, 0.009494663216173649, 0.027864772826433182, 0.017561687156558037, 0.011859728954732418 ]
9,476
asyncclick.formatting
getvalue
Returns the buffer contents.
def getvalue(self) -> str: """Returns the buffer contents.""" return "".join(self.buffer)
(self) -> str
[ 0.03544803708791733, -0.027702108025550842, -0.07829219102859497, 0.006059315521270037, 0.03218308836221695, -0.002594469813629985, -0.02025602199137211, 0.014442410320043564, 0.09255136549472809, -0.07842545211315155, 0.011527275666594505, -0.007462745066732168, -0.050140317529439926, 0.04737510159611702, 0.010860959067940712, 0.007566856686025858, 0.02118886448442936, -0.04367704689502716, 0.041711412370204926, 0.07755924016237259, -0.029201321303844452, -0.0010463250800967216, 0.0198395736515522, 0.02027267962694168, -0.056137166917324066, -0.006804757285863161, 0.04174472764134407, -0.06849733740091324, 0.019106626510620117, 0.0215553380548954, -0.003935432061553001, -0.12213581800460815, 0.03105034865438938, -0.025719817727804184, -0.02333773486316204, 0.012260223738849163, -0.024653710424900055, -0.00870375894010067, -0.027202371507883072, -0.039712462574243546, -0.034715089946985245, -0.017174307256937027, 0.001093175495043397, -0.04391025751829147, -0.020455917343497276, -0.03223305940628052, -0.0010879698675125837, 0.04051204398274422, 0.0016657912638038397, 0.009211825206875801, 0.06409964710474014, 0.09961431473493576, -0.07116260379552841, -0.021738575771450996, -0.01799054630100727, 0.00012454391981009394, 0.034348614513874054, 0.0031025363132357597, 0.005030689761042595, 0.06473264843225479, -0.023787498474121094, -0.013118105940520763, 0.03644751384854317, -0.053338635712862015, 0.017374202609062195, 0.0003474736586213112, 0.019289862364530563, -0.0036605761852115393, 0.0481080524623394, 0.0393793061375618, -0.0008802665397524834, -0.017174307256937027, -0.06419959664344788, 0.002421644050627947, -0.04674210399389267, -0.030134163796901703, -0.01334298774600029, 0.0634000152349472, -0.0182737298309803, -0.04117836058139801, 0.06286696344614029, 0.04587589204311371, 0.07069618254899979, -0.005322203040122986, 0.012968185357749462, -0.04411015287041664, -0.019156599417328835, 0.021721918135881424, -0.036347564309835434, 0.08075755834579468, 0.021305469796061516, 0.012734973803162575, -0.06000180169939995, 0.060468222945928574, -0.00004854219878325239, -0.061401065438985825, 0.01363450102508068, -0.002513262676075101, -0.02646942250430584, 0.027069108560681343, -0.03661409020423889, 0.11787138879299164, 0.01520034484565258, -0.015100398100912571, -0.017607413232326508, 0.020239364355802536, -0.001080682035535574, -0.009411720559000969, 0.06243385747075081, 0.0215553380548954, -0.004041626118123531, 0.004343550652265549, -0.02347099967300892, -0.02533668465912342, 0.009769865311682224, 0.010444510728120804, -0.06703144311904907, 0.012118631042540073, 0.03135019168257713, -0.010227958671748638, 0.06290027499198914, 0.021322127431631088, -0.006938020698726177, -0.024720342829823494, -0.006309184245765209, 0.08275651186704636, 0.005147295072674751, 0.003656411776319146, 0.03894620016217232, -0.026202896609902382, -0.004376866389065981, 0.054971110075712204, 0.038213253021240234, 0.022804683074355125, 0.042777519673109055, 0.025886395946145058, -0.0008094704244285822, -0.004793314263224602, 0.029917610809206963, 0.036147668957710266, 0.02005612663924694, -0.0008641292224638164, 0.08155713975429535, -0.04760831594467163, 0.016324754804372787, -0.013967659324407578, 0.09468357264995575, 0.0027589667588472366, -0.036214303225278854, -0.03238298371434212, 0.028151871636509895, 0.029950926080346107, -0.027002476155757904, 0.009370075538754463, 0.02796863578259945, 0.06203406676650047, 0.023104524239897728, -0.007267014589160681, -0.01245178934186697, -0.0634000152349472, -1.1793932230830251e-7, -0.011502288281917572, 0.0037230434827506542, -0.025203421711921692, 0.026586027815937996, 0.05886906385421753, 0.023021236062049866, 0.010561116971075535, -0.01099422201514244, -0.015067081898450851, -0.0023654235992580652, 0.010677722282707691, -0.06290027499198914, 0.04710857570171356, 0.050340212881565094, 0.029934268444776535, -0.053771741688251495, 0.07136249542236328, 0.029934268444776535, -0.003279526485130191, -0.04790815711021423, -0.022171681746840477, -0.025136789306998253, 0.049707211554050446, 0.058402642607688904, -0.02370421029627323, 0.03319922089576721, -0.02427057921886444, 0.04291078448295593, -0.04730847105383873, -0.007004652172327042, -0.006434118840843439, -0.028285136446356773, -0.03191655874252319, -0.025519922375679016, -0.05880242958664894, 0.02925129421055317, -0.01834036223590374, -0.038146618753671646, 0.0041499026119709015, -0.035148195922374725, -0.0299842432141304, -0.025569895282387733, 0.01669122837483883, -0.017857281491160393, -0.027568845078349113, 0.03901283070445061, 0.010044720955193043, -0.05503774434328079, 0.016166504472494125, -0.01334298774600029, 0.0009359664400108159, 0.02498686872422695, -0.0038021686486899853, 0.03854640945792198, -0.09921452403068542, -0.08009124547243118, -0.008287311531603336, 0.011144143529236317, 0.04101178050041199, 0.04954063147306442, -0.03481503576040268, 0.02005612663924694, -0.02298791892826557, -0.03153342753648758, -0.014134238474071026, -0.018456967547535896, -0.033365797251462936, -0.02590305358171463, -0.028018608689308167, 0.07789240032434464, 0.02960111014544964, 0.028068583458662033, 0.04187799245119095, 0.009828167967498302, 0.002163446508347988, -0.014442410320043564, -0.012626697309315205, -0.04987379163503647, -0.007754258345812559, 0.00005817255441797897, -0.001633516512811184, 0.05523763969540596, 0.06456606835126877, -0.011002550832927227, 0.010694379918277264, 0.030150821432471275, 0.09541652351617813, 0.004814136773347855, -0.008024949580430984, 0.05806948244571686, 0.002307120943441987, -0.06166759133338928, -0.03254956007003784, -0.013842725194990635, -0.037780147045850754, -0.004922413267195225, -0.00629669101908803, 0.020006153732538223, 0.021288812160491943, -0.033932168036699295, -0.05856921896338463, -0.014175883494317532, 0.010286261327564716, 0.02518676407635212, 0.01162722334265709, -0.06196743622422218, 0.026735950261354446, 0.006800592876970768, 0.04224446788430214, 0.045709311962127686, 0.02696916088461876, -0.07895850390195847, -0.035148195922374725, -0.054971110075712204, -0.040645305067300797, 0.02283799834549427, 0.05920222029089928, 0.01648300513625145, -0.048207998275756836, -0.021571997553110123, 0.019306520000100136, -0.0005955203669145703, -0.03718046098947525, -0.009928115643560886, -0.012168604880571365, 0.04367704689502716, -0.03894620016217232, 0.021022286266088486, -0.004010392352938652, 0.018373677507042885, 0.029567794874310493, -0.04237772896885872, -0.019573047757148743, 0.06639844179153442, -0.04974052682518959, -0.0025798941496759653, 0.001897960901260376, 0.050273578613996506, -0.0029484506230801344, -0.03441524878144264, -0.0030296577606350183, -0.04411015287041664, 0.027002476155757904, -0.053272005170583725, -0.03098371811211109, 0.015100398100912571, 0.02262144535779953, 0.0038271553348749876, 0.02790200337767601, 0.02925129421055317, 0.009536654688417912, 0.03701388090848923, 0.008928640745580196, 0.016033241525292397, 0.0030359046068042517, 0.01698274165391922, 0.0590689592063427, 0.003173332428559661, 0.039579201489686966, -0.014867186546325684, -0.0609346441924572, 0.020389284938573837, -0.004522623494267464, 0.011418999172747135, 0.012193592265248299, -0.010119682177901268, 0.012260223738849163, 0.007812561467289925, 0.027418924495577812, -0.019439784809947014, -0.020289337262511253, -0.014850528910756111, 0.015816688537597656, 0.03917941078543663, 0.007242027670145035, -0.016241464763879776, -0.014117580838501453, -0.011335709132254124, -0.019606363028287888, 0.04557604715228081, -0.05806948244571686, 0.021288812160491943, 0.025819765403866768, 0.027802055701613426, 0.015316951088607311, -0.0002883901179302484, 0.03053395450115204, 0.06969670951366425, -0.042344413697719574, 0.010144668631255627, -0.04844120889902115, 0.011660538613796234, 0.0017751088598743081, 0.006163427606225014, -0.007995798252522945, -0.002265476156026125, 0.026869213208556175, 0.012535079382359982, 0.042077887803316116, 0.005542920436710119, 0.01455901563167572, 0.009036917239427567, 0.018323704600334167, -0.043843626976013184, -0.032083138823509216, -0.04710857570171356, 0.026735950261354446, 0.046209048479795456, 0.03411540389060974, -0.0562371127307415, 0.04024551808834076, -0.019039994105696678, -0.020372627303004265, -0.0346817746758461, -0.007629323750734329, -0.027935318648815155, -0.023237787187099457, -0.04544278606772423, -0.04054535925388336, 0.017091019079089165, 0.009969760663807392, -0.03461514413356781, 0.02175523340702057, -0.015316951088607311, 0.04347715154290199, -0.04994042217731476, -0.048407893627882004, -0.01953973062336445, 0.01862354576587677, 0.008020784705877304, -0.012418474070727825, -0.04367704689502716, 0.0035627109464257956, -0.054138217121362686, 0.002623621141538024, 0.038646358996629715, -0.018240414559841156, 0.01940646767616272, 0.02440384216606617, -0.0005299298209138215, 0.03724709153175354, -0.04580925777554512, 0.03851309418678284, -0.03253290429711342, -0.018540257588028908, 0.031000375747680664, -0.021305469796061516, -0.04037877917289734, -0.03373227268457413, -0.029917610809206963, -0.04494304955005646, -0.003131687641143799, -0.04630899801850319, 0.04001230746507645, -0.03254956007003784, -0.023804157972335815, -0.03244961425662041, 0.011977039277553558, 0.04804141819477081, -0.08915314823389053, 0.03289937600493431, -0.04457657411694527, 0.028718240559101105, -0.041278306394815445, 0.0009916663402691483, -0.0021030614152550697, 0.02055586501955986, 0.02646942250430584, 0.03501493111252785, 0.013151422142982483, -0.07169565558433533, -0.0462423637509346, -0.015425226651132107, -0.023071208968758583, 0.03194987773895264, -0.02262144535779953, -0.044143468141555786, 0.019939521327614784, 0.044409994035959244, 0.004393524490296841, 0.05753643065690994, 0.048474524170160294, 0.056270428001880646, 0.043143995106220245, -0.031000375747680664, -0.025603212416172028, 0.027735425159335136, -0.006359158083796501, -0.03744698688387871, -0.012834921479225159, 0.02240489237010479, -0.0005622045719064772, -0.023570945486426353, -0.029434531927108765, -0.03294935077428818, -0.009070233441889286, -0.038846250623464584, -0.018806783482432365, -0.01770736090838909, -0.036714039742946625, 0.07029639184474945, -0.004722518380731344, -0.06333338469266891, -0.021821865811944008, -0.022671418264508247, 0.014034291729331017, 0.046908680349588394, -0.044909730553627014, 0.017890598624944687, 0.0068963756784796715, -0.01359285693615675, -0.03554798662662506, -0.02097231149673462, 0.03944593667984009, -0.007566856686025858, 0.002723568817600608, 0.01742417737841606, -0.011585578322410583, -0.02796863578259945, -0.09754873812198639, -0.05687011405825615, -0.030883770436048508, 0.014750581234693527, -0.011294065043330193, 0.030667217448353767, 0.044343363493680954, -0.01370113343000412, 0.0631001740694046, 0.00016007212980184704, -0.003189990296959877, 0.09155188500881195, -0.061834171414375305, -0.06136775016784668, -0.0008037443039938807, 0.0528055839240551, 0.0037980040069669485, -0.007471073884516954, -0.04797478765249252, 0.043643731623888016, -0.0540715828537941, -0.02427057921886444, -0.002773542422801256, -0.030284084379673004, -0.0018469460774213076, -0.044076837599277496, 0.003160838969051838, 0.012426802888512611, -0.009711562655866146, -0.027002476155757904, 0.006842237431555986, 0.019672995433211327, -0.012460118159651756, -0.024070683866739273, -0.00870375894010067, -0.037780147045850754, -0.024936895817518234, -0.011427327990531921, -0.07349471002817154, 0.000024596449293312617, -0.023021236062049866, 0.056137166917324066, -0.03040068969130516, -0.07456081360578537, -0.022421550005674362, -0.03591445833444595, -0.07982471585273743, -0.01899002119898796, -0.048274628818035126, 0.02462039515376091, -0.021655285730957985, 0.00563453882932663, 0.051772791892290115, 0.030450664460659027, 0.03618098795413971, 0.007620994932949543, 0.04387694224715233, 0.0053346967324614525, -0.09075231105089188, 0.013326330110430717, -0.000006478529030573554, -0.03369895741343498, -0.009161852300167084, -0.0800246149301529, -0.020572522655129433, 0.013626172207295895, 0.02355428785085678, 0.020572522655129433, 0.05024026334285736, -0.023171156644821167, -0.053338635712862015, -0.04754168167710304, 0.011927065439522266, -0.02668597549200058, 0.0171909648925066, -0.04201125726103783, -0.019806258380413055, 0.0390794612467289, -0.004189465194940567, -0.0009094179258681834, 0.059335485100746155, 0.010802656412124634, -0.06353327631950378, 0.05913558974862099, -0.0287515576928854, 0.049707211554050446, -0.02527005411684513, 0.028634952381253242, -0.006334171164780855, -0.04324394091963768, 0.018806783482432365, 0.017640728503465652, 0.03711383044719696, -0.002727733226493001, 0.027385607361793518, 0.025153448805212975, -0.02305455133318901, 0.041778042912483215, 0.015283634886145592, 0.029784347862005234, 0.005055676680058241, 0.007775080855935812, 0.008337285369634628, -0.03674735501408577, 0.05756974592804909, 0.03701388090848923, -0.006338335573673248, 0.004934906493872404, 0.01784062385559082, -0.020072784274816513, -0.007654310669749975, -0.0032087303698062897, 0.004726682789623737, -0.03491498529911041, 0.07116260379552841, 0.009395062923431396, -0.032432954758405685, 0.015408569015562534, -0.03598109260201454, -0.007375290617346764, 0.03090042807161808, 0.007229533977806568, 0.0015252401353791356, 0.052405793219804764, 0.045209575444459915, -0.0074960608035326, -0.04494304955005646, 0.03344908729195595, 0.024004051461815834, 0.076226606965065, -0.023237787187099457, -0.012468447908759117, -0.012410145252943039, -0.013709462247788906, -0.016466347500681877, 0.058702483773231506, 0.002252982696518302, -0.010011405684053898, -0.022105049341917038, 0.021355444565415382, 0.08029113709926605, 0.08768725395202637, -0.06836407631635666, 0.011960381641983986, -0.009711562655866146, -0.035714562982320786, -0.00563453882932663, -0.01048615574836731, -0.012151947245001793, -0.028634952381253242, -0.005430479533970356, -0.0018500693840906024, 0.052705634385347366, 0.036081038415431976, -0.020072784274816513, 0.02068912796676159, -0.01213528960943222, -0.03266616538167, -0.024387184530496597, 0.026152921840548515, 0.018790125846862793, 0.009961431846022606, -0.04757499694824219, -0.05387168750166893, -0.052405793219804764, 0.014725594781339169, -0.007304494734853506, -0.019872888922691345, -0.021522022783756256, -0.052905529737472534, -0.04244435951113701, -0.007042132318019867, 0.05493779480457306, 0.0346817746758461, 0.04081188514828682, -0.005447137635201216, 0.08022450655698776, 0.03218308836221695, -0.0240540262311697, 0.02025602199137211, -0.03261619433760643, -0.028584977611899376, 0.02353763021528721, -0.07136249542236328, -0.05180610716342926, -0.03409874811768532, -0.05866916850209236, 0.06423290818929672, 0.0546712689101696, -0.0056553613394498825, 0.029134688898921013, 0.022155024111270905, -0.050773318856954575, -0.06399969756603241, 0.0027714602183550596, -0.030150821432471275, 0.027002476155757904, 0.01509206835180521, 0.028485029935836792, 0.008687101304531097, 0.02448713220655918, 0.021172206848859787, 0.0017522041453048587, -0.04194462299346924, 0.007071284111589193, -0.0023029563017189503, -0.014034291729331017, 0.04710857570171356, 0.036780670285224915, -0.07922503352165222, -0.02568650059401989, -0.05973527580499649, -0.008886996656656265, 0.021172206848859787, -0.006346664857119322, 0.051339685916900635, 0.039146095514297485, -0.018573572859168053, -0.0002769377897493541, 0.027852030470967293, -0.01925654709339142, -0.021955128759145737, 0.03339911624789238, -0.024437157437205315, 0.040212202817201614, -0.01840699277818203, 0.019822916015982628, -0.04697531461715698, -0.08648788183927536, -0.001287864870391786, 0.02981766313314438, 0.06756449490785599, -0.04630899801850319, -0.03319922089576721, 0.0002522112044971436, 0.010161326266825199, -0.08109071850776672, 0.041578151285648346, 0.016166504472494125, 0.09774862974882126, -0.057403165847063065, 0.03135019168257713, 0.076226606965065, 0.028584977611899376, 0.02218833938241005, 0.05710332468152046, -0.051772791892290115, 0.007158738095313311, 0.0014013468753546476, 0.030733847990632057, -0.004814136773347855, 0.001922947820276022, 0.00006604602094739676, 0.0002420602977508679, -0.00309420726262033, -0.003496079472824931, -0.027002476155757904, -0.054971110075712204, 0.0196896530687809, 0.02898476831614971, -0.00981151033192873, 0.03441524878144264, 0.005963532719761133, 0.003997899126261473, -0.00862879864871502, -0.012568394653499126, 0.024170631542801857, 0.014509041793644428, -0.026452764868736267, -0.004376866389065981, 0.029417874291539192, 0.026436107233166695, -0.013251369819045067, 0.03213311359286308, 0.08895325660705566, -0.019039994105696678, -0.016466347500681877, 0.042211148887872696, -0.007200382649898529, 0.05480453372001648, -0.04011225327849388, 0.02976769022643566, 0.007042132318019867, 0.046775419265031815, -0.06573212146759033, 0.03994567319750786, -0.041278306394815445, 0.023637577891349792 ]
9,477
asyncclick.formatting
indent
Increases the indentation.
def indent(self) -> None: """Increases the indentation.""" self.current_indent += self.indent_increment
(self) -> NoneType
[ -0.014057585038244724, -0.007368347607553005, 0.02517801709473133, 0.05585683137178421, 0.00044036065810360014, -0.0232255756855011, -0.01106949895620346, -0.011833498254418373, -0.01224096491932869, 0.007016059011220932, -0.02891312539577484, -0.09127243608236313, 0.05188403278589249, 0.03246147558093071, -0.024838462471961975, -0.03860742598772049, 0.06200277805328369, -0.014957406558096409, -0.021052422001957893, 0.034753475338220596, 0.07022001594305038, 0.04125595465302467, 0.056162428110837936, -0.02093357779085636, -0.03200307860970497, 0.06838641315698624, -0.01709660328924656, -0.018030380830168724, 0.039626091718673706, -0.03803018108010292, -0.021035443991422653, -0.03470253944396973, -0.024736596271395683, 0.007194325793534517, 0.003132396610453725, -0.006158682517707348, -0.059727758169174194, -0.03609471768140793, -0.014507495798170567, -0.011256255209445953, -0.010526211000978947, 0.009023679420351982, 0.005297061055898666, -0.02023749053478241, 0.00011698737944243476, -0.0028947079554200172, 0.04886199161410332, -0.0501183457672596, 0.062240466475486755, -0.027266282588243484, 0.05212172120809555, -0.0034040408208966255, 0.028658458963036537, -0.013319052755832672, 0.016476916149258614, 0.0256703719496727, 0.040067512542009354, -0.09622994065284729, -0.020033756271004677, -0.0074829477816820145, -0.001696714898571372, -0.010050834156572819, 0.024787528440356255, 0.01678251475095749, -0.03901489078998566, -0.018743446096777916, -0.027096504345536232, 0.0165023822337389, 0.009125545620918274, 0.007398058660328388, 0.009566967375576496, -0.012300387024879456, -0.007966813631355762, -0.0056748162023723125, -0.032155878841876984, 0.017453137785196304, -0.08020293712615967, 0.03551747277379036, 0.0326482318341732, -0.05314038693904877, -0.04125595465302467, -0.02331046387553215, 0.005016928073018789, 0.05697736144065857, 0.0394563153386116, 0.00019086715474259108, -0.00659585976973176, -0.0034995407331734896, -0.02388770878314972, 0.013760474510490894, -0.012622964568436146, 0.0639042854309082, -0.0042805178090929985, -0.029031969606876373, 0.027996325865387917, 0.039592135697603226, 0.01899811252951622, -0.07680738717317581, -0.038369737565517426, 0.03877720236778259, -0.03738502785563469, 0.059829626232385635, 0.017487091943621635, -0.056739673018455505, -0.0244479738175869, -0.09582247585058212, -0.035211872309446335, 0.014023629948496819, 0.020084690302610397, 0.017538025975227356, 0.004579750820994377, -0.09908220916986465, -0.02509312890470028, 0.023700952529907227, 0.03500813990831375, -0.0165023822337389, 0.0024129641242325306, 0.016765538603067398, 0.04339515417814255, 0.013242652639746666, 0.02275019884109497, -0.018064336851239204, 0.042682088911533356, -0.02027144469320774, 0.03135792165994644, -0.006370904389768839, -0.0015948483487591147, 0.0700162798166275, -0.0010818016016855836, -0.024957306683063507, -0.004055562429130077, -0.04794519394636154, -0.0015768094453960657, -0.042070887982845306, 0.09032168239355087, 0.011035543866455555, 0.048148926347494125, 0.010543189011514187, -0.009303811937570572, 0.06641699373722076, 0.015458250418305397, -0.006931170355528593, 0.004486373160034418, 0.01472820620983839, -0.05358181148767471, 0.016332605853676796, -0.02633250504732132, 0.04465150833129883, -0.009804656729102135, 0.02748699299991131, 0.02572130598127842, -0.006621326319873333, 0.03623053804039955, -0.004327206406742334, 0.0019715423695743084, 0.03424414247274399, -0.058437447994947433, -0.04668883979320526, 0.048182882368564606, -0.05358181148767471, -0.045636218041181564, -0.02765677124261856, 0.06057664752006531, 0.0056451051495969296, 0.026773927733302116, 0.046349283307790756, -0.08278355747461319, 0.01286065299063921, -0.03813204914331436, -0.04886199161410332, 0.03555142879486084, -0.016052471473813057, 0.042614176869392395, 0.01592513918876648, 0.012325854040682316, 0.05212172120809555, -0.021069400012493134, 0.055415406823158264, 0.0017211204394698143, -0.0209505558013916, 0.03853951394557953, -0.01952442340552807, 0.00660010427236557, 0.04903177171945572, 0.014651807025074959, -0.05038999021053314, 0.018064336851239204, 0.003911251202225685, 0.06074642390012741, -0.010967632755637169, 0.038369737565517426, -0.006095015909522772, 0.0022835086565464735, -0.024770552292466164, -0.01786060258746147, -0.021714555099606514, 0.0014059707755222917, -0.020577045157551765, 0.09439634531736374, 0.016544826328754425, -0.014965895563364029, -0.0002737663744483143, 0.020543089136481285, 0.00041038429480977356, 0.08387013524770737, 0.03168049827218056, -0.042716044932603836, -0.04607763886451721, -0.03363294154405594, -0.012937053106725216, -0.02259739860892296, -0.03694360703229904, 0.08461715281009674, -0.01413398515433073, 0.024668684229254723, -0.05147656798362732, 0.029677124693989754, -0.011808032169938087, 0.006196882110089064, 0.019456513226032257, 0.06291957944631577, 0.013021942228078842, -0.06746961921453476, -0.08964256942272186, 0.03575516119599342, -0.06397219747304916, 0.014303762465715408, -0.06454944610595703, -0.011239277198910713, 0.0008441130048595369, -0.018794380128383636, -0.06658677756786346, -0.04492315277457237, -0.013369985856115818, 0.0014027873985469341, -0.026247616857290268, -0.05806393921375275, -0.06050873547792435, -0.05527958646416664, -0.08162906765937805, -0.014881006442010403, 0.042512308806180954, 0.05826767161488533, 0.06118784472346306, -0.04241044446825981, -0.026230638846755028, -0.009057634510099888, 0.014184918254613876, 0.031154189258813858, 0.062308378517627716, -0.016103405505418777, -0.026230638846755028, -0.051170967519283295, 0.049948569387197495, -0.03921862691640854, 0.031578633934259415, 0.017453137785196304, 0.08298729360103607, -0.012504120357334614, 0.048760127276182175, 0.014830073341727257, -0.04590786248445511, -0.011841987259685993, -0.03982982411980629, 0.0321219228208065, 0.06892970204353333, 0.023106731474399567, -0.013913273811340332, 0.04237648844718933, 0.014660296030342579, 0.045160841196775436, 0.03446485102176666, -0.012079675681889057, 0.014499006792902946, 0.0024193308781832457, -0.0015163262141868472, 0.018030380830168724, 0.024125397205352783, -0.11123828589916229, -0.030967433005571365, 0.0551777184009552, -0.002165725454688072, -0.05443069711327553, 0.006413348950445652, -0.07327601313591003, -0.02032237872481346, -0.008425213396549225, 0.03932049125432968, -0.0020394534803926945, 0.010543189011514187, 0.03448183089494705, 0.061527401208877563, 0.054906073957681656, 0.026604149490594864, 0.08733359724283218, -0.01891322433948517, -0.030899522826075554, 0.03870929405093193, -0.021901309490203857, 0.00954150129109621, 0.0009008823544718325, -0.022274820134043694, -0.013336030766367912, 0.007304680999368429, 0.021171266213059425, 0.03860742598772049, 0.03373480960726738, 0.04421008750796318, -0.03816600516438484, -0.02631552703678608, -0.04723212867975235, 0.05025416985154152, -0.013964207842946053, 0.012605986557900906, -0.026485305279493332, -0.040780577808618546, 0.004397240001708269, 0.024108419194817543, 0.0221729539334774, 0.04495710879564285, -0.022529486566781998, 0.0012245209654793143, -0.040814533829689026, -0.01665518246591091, 0.005776682868599892, -0.03308965265750885, 0.06258001923561096, 0.05650198459625244, -0.007465969771146774, 0.025313839316368103, -0.04594181850552559, -0.034566719084978104, -0.01787758059799671, 0.003548351814970374, -0.08638284355401993, -0.05140865594148636, -0.024821484461426735, -0.02022051252424717, -0.016646694391965866, 0.030865566805005074, 0.05660385265946388, -0.02938850224018097, 0.014015140943229198, -0.04495710879564285, 0.049948569387197495, -0.01962628960609436, 0.06777521967887878, 0.02752094902098179, 0.03728315979242325, 0.07409094274044037, 0.010237589478492737, 0.04125595465302467, 0.006875992752611637, -0.004074662458151579, -0.03325943276286125, -0.046994440257549286, 0.006922681350260973, -0.05904864892363548, -0.019999800249934196, -0.021901309490203857, -0.0391167588531971, 0.002120097866281867, 0.006684992928057909, 0.04954110458493233, 0.026858815923333168, 0.01286065299063921, -0.04108617827296257, -0.0441761314868927, 0.012987986207008362, 0.006222349125891924, 0.032104942947626114, -0.022580420598387718, 0.019252778962254524, -0.0034040408208966255, -0.02331046387553215, 0.030848588794469833, 0.019201846793293953, 0.04186715558171272, -0.0197281576693058, -0.020526111125946045, 0.06909948587417603, -0.018794380128383636, 0.05334412306547165, 0.03427809849381447, -0.020407266914844513, -0.006086526904255152, 0.035279784351587296, -0.07239317148923874, -0.019133934751152992, 0.018692513927817345, -0.026875793933868408, -0.002586986171081662, -0.0169353149831295, 0.03297080844640732, -0.07864098250865936, -0.05409114435315132, -0.040135424584150314, -0.05076350271701813, -0.025466639548540115, 0.011519409716129303, 0.05578891932964325, 0.009482079185545444, 0.015509183518588543, -0.0028756081592291594, 0.0007560408557765186, 0.015203583985567093, -0.006472771055996418, 0.012325854040682316, 0.007185836788266897, 0.01352278608828783, -0.06505877524614334, -0.002578497165814042, -0.020475178956985474, 0.032257743179798126, 0.09263065457344055, -0.03796227276325226, 0.02147686667740345, 0.030848588794469833, -0.005746971815824509, -0.003200307721272111, 0.004380261991173029, 0.019490467384457588, 0.014040607027709484, 0.0757887214422226, -0.010653544217348099, -0.06587370485067368, -0.008522835560142994, 0.03193516656756401, -0.0010128294816240668, -0.059659846127033234, -0.003005063394084573, 0.006803837139159441, 0.05263105407357216, 0.021697577089071274, 0.017894558608531952, -0.019303712993860245, 0.00887936819344759, -0.055483318865299225, 0.03942235931754112, 0.038437649607658386, 0.04482128471136093, -0.027096504345536232, -0.02030540071427822, -0.006069549359381199, 0.01969420164823532, -0.013751985505223274, -0.011154388077557087, 0.010899721644818783, 0.012105142697691917, 0.012928564101457596, 0.007648480590432882, 0.048216838389635086, -0.012020253576338291, -0.00596768269315362, -0.05035603418946266, -0.04651906341314316, -0.023616064339876175, -0.028573568910360336, 0.02152779884636402, 0.007652725093066692, 0.02208806574344635, 0.0301185455173254, 0.02891312539577484, 0.030271345749497414, 0.008726568892598152, 0.03629845008254051, -0.010415855795145035, 0.028607524931430817, -0.013777452521026134, -0.007907391525804996, 0.016366560012102127, -0.01131567731499672, -0.03915071487426758, -0.02448192983865738, 0.03066183440387249, 0.004516084212809801, -0.00042683148058131337, -0.04298768937587738, 0.004537306260317564, 0.01830202527344227, -0.015950605273246765, -0.031544677913188934, 0.023055797442793846, 0.017504069954156876, -0.012028742581605911, 0.04308955371379852, 0.015093228779733181, -0.03291987627744675, 0.04095035791397095, -0.026756949722766876, -0.025466639548540115, -0.02203713171184063, -0.008599235676229, -0.005250371992588043, 0.00723252585157752, -0.002616697223857045, -0.05935424938797951, -0.020746823400259018, -0.04356493055820465, -0.030916500836610794, -0.010407366789877415, -0.00024577960721217096, 0.01847180351614952, -0.039626091718673706, 0.001279698684811592, 0.06244419887661934, -0.019965846091508865, 0.008340324275195599, -0.006417592987418175, -0.015424294397234917, 0.01957535743713379, 0.03972795978188515, -0.04095035791397095, 0.042512308806180954, 0.02276717498898506, -0.017419181764125824, -0.04152759909629822, 0.045670174062252045, 0.08081413805484772, -0.01475367322564125, 0.024855440482497215, -0.09643367677927017, 0.029812946915626526, -0.02027144469320774, -0.017240915447473526, 0.04909968003630638, 0.02640041708946228, -0.0031896966975182295, -0.007835236378014088, 0.029846901074051857, -0.01635807193815708, 0.051204923540353775, 0.008140835911035538, 0.033378276973962784, -0.03663800656795502, 0.06135762482881546, -0.029575258493423462, -0.03013552352786064, 0.015381850302219391, 0.03118814527988434, 0.01013572234660387, -0.03444787487387657, -0.021595710888504982, -0.0003496357530821115, -0.03884511440992355, 0.05008438974618912, -0.040135424584150314, -0.042070887982845306, -0.04054288938641548, 0.02388770878314972, -0.05388740822672844, -0.005021172575652599, -0.030763700604438782, 0.026722993701696396, 0.024346107617020607, 0.010942165739834309, 0.012003276497125626, -0.0010218488750979304, 0.08896346390247345, 0.034753475338220596, 0.006829303689301014, 0.016960782930254936, -0.0019503202056512237, -0.08808061480522156, 0.051306791603565216, -0.01044981088489294, -0.0015884815948083997, -0.006680748425424099, 0.010220611467957497, 0.04118804633617401, 0.008119613863527775, -0.030271345749497414, 0.01258052047342062, 0.018268069252371788, -0.09215527772903442, 0.020627977326512337, -0.03809809312224388, 0.05643407255411148, -0.04247835651040077, -0.027232326567173004, -0.04587390646338463, 0.008743545971810818, 0.028013303875923157, -0.0403391569852829, -0.03796227276325226, -0.019762111827731133, -0.03721524775028229, 0.001025032252073288, 0.026621127501130104, -0.013098341412842274, -0.08217235654592514, -0.017105093225836754, -0.04499106481671333, -0.04404030740261078, 0.016120383515954018, 0.010560167022049427, -0.019388601183891296, -0.028573568910360336, 0.016103405505418777, -0.03918467089533806, -0.013437896966934204, 0.01843784749507904, -0.01723242551088333, 0.08651866763830185, 0.010628077201545238, 0.06960881501436234, 0.02631552703678608, -0.018607623875141144, -0.037758536636829376, -0.005713016260415316, -0.02027144469320774, -0.019201846793293953, -0.017894558608531952, -0.051137011498212814, -0.06865806132555008, 0.011044032871723175, -0.001756137004122138, -0.010916699655354023, 0.030373211950063705, 0.019235800951719284, -0.009923500940203667, 0.02152779884636402, -0.06363264471292496, -0.010084789246320724, -0.03314058855175972, 0.015543139539659023, -0.015313939191401005, -0.03976191207766533, 0.02582317218184471, -0.04431195184588432, 0.0015152650885283947, 0.014651807025074959, 0.039490267634391785, -0.10784272849559784, -0.006621326319873333, -0.01258052047342062, -0.046960484236478806, -0.0026909748557955027, -0.027758637443184853, -0.043802618980407715, 0.03901489078998566, 0.001787970308214426, -0.012325854040682316, 0.030458102002739906, -0.016892870888113976, -0.01505078375339508, -0.06064455956220627, -0.03385365381836891, -0.0076017919927835464, -0.015127183869481087, -0.01969420164823532, 0.005415905267000198, -0.002737663686275482, -0.021680599078536034, -0.03320849686861038, -0.028556592762470245, 0.011426032520830631, 0.016349582001566887, -0.015483716502785683, -0.012393764220178127, -0.008382769301533699, 0.0038454625755548477, -0.05952402576804161, 0.03310663253068924, 0.1045830026268959, 0.0024702639784663916, -0.05653594061732292, -0.04308955371379852, 0.0708991214632988, -0.07341182976961136, 0.024838462471961975, 0.05521167442202568, 0.020509133115410805, 0.028607524931430817, 0.017240915447473526, -0.04892990365624428, 0.06254606693983078, 0.006086526904255152, 0.04370075464248657, -0.028539614751935005, -0.06920135021209717, 0.024057485163211823, 0.035890985280275345, -0.08101786673069, -0.018064336851239204, -0.003552596317604184, -0.027368148788809776, 0.020695889368653297, 0.008692612871527672, -0.012308876030147076, -0.01966024562716484, -0.05470234155654907, -0.00043240233208052814, 0.03612867370247841, -0.03925257921218872, -0.004350550938397646, -0.02631552703678608, -0.020611001178622246, 0.031561654061079025, -0.04244440048933029, 0.06648490577936172, 0.021307088434696198, 0.03118814527988434, -0.017257893458008766, 0.027334192767739296, -0.001599092734977603, 0.0415615551173687, -0.06016917899250984, 0.0190320685505867, 0.010432833805680275, 0.05344598740339279, 0.05826767161488533, -0.01504229474812746, 0.02089962176978588, 0.06020313501358032, 0.02879428118467331, 0.0076994141563773155, -0.03565329685807228, -0.0011491820914670825, 0.039490267634391785, -0.08774106204509735, 0.030373211950063705, -0.03417623043060303, -0.043938443064689636, -0.04526270925998688, 0.000886026828084141, -0.0417313352227211, 0.026739971712231636, -0.002117975614964962, 0.007979546673595905, -0.021612688899040222, -0.0017678092699497938, -0.010933677665889263, 0.02208806574344635, 0.007712147198617458, 0.021324066445231438, -0.02319161966443062, 0.022919975221157074, 0.047503773123025894, -0.0015768094453960657, 0.016409004107117653, 0.004392995499074459, -0.003132396610453725, 0.014405629597604275, 0.026604149490594864, -0.002104181097820401, 0.028081214055418968, 0.06746961921453476, -0.003938840236514807, 0.03477045148611069, 0.062274422496557236, 0.024312151595950127, 0.03291987627744675, -0.03497418388724327, 0.009711278602480888, -0.004027973394840956, 0.04030520096421242, -0.00458823936060071, 0.05582287535071373, 0.009015190415084362, -0.018675535917282104, -0.05643407255411148, 0.04920154809951782, 0.018862290307879448, 0.021375000476837158, 0.06628117710351944, 0.006205371115356684, 0.04926946014165878 ]
9,478
asyncclick.formatting
indentation
A context manager that increases the indentation.
def getvalue(self) -> str: """Returns the buffer contents.""" return "".join(self.buffer)
(self) -> Iterator[NoneType]
[ 0.03545083478093147, -0.027720952406525612, -0.07829836755990982, 0.006005651317536831, 0.032102327793836594, -0.002630075439810753, -0.020290937274694443, 0.01445187907665968, 0.09249202162027359, -0.078431636095047, 0.01153651438653469, -0.007471662946045399, -0.05017758905887604, 0.04737883806228638, 0.010836826637387276, 0.0075674536637961864, 0.021223854273557663, -0.04368049278855324, 0.04171470180153847, 0.07749871909618378, -0.0292036235332489, -0.0010427634697407484, 0.019774502143263817, 0.020290937274694443, -0.05614159256219864, -0.006751151289790869, 0.041781339794397354, -0.06850273907184601, 0.0190748143941164, 0.02157369814813137, -0.003958648536354303, -0.12207881361246109, 0.031019479036331177, -0.025705186650156975, -0.02333957701921463, 0.012161235325038433, -0.02472229115664959, -0.008687786757946014, -0.027371108531951904, -0.03968227654695511, -0.03468450903892517, -0.01719232089817524, 0.0010328720090910792, -0.0438804030418396, -0.02045753039419651, -0.03223560377955437, -0.0010943029774352908, 0.0405152402818203, 0.0016586342826485634, 0.009212552569806576, 0.06410470604896545, 0.09948889911174774, -0.0711682140827179, -0.02165699377655983, -0.018075261265039444, 0.00017804547678679228, 0.034351326525211334, 0.0031152754090726376, 0.004981108475476503, 0.0646711140871048, -0.02378937602043152, -0.013094152323901653, 0.036483705043792725, -0.05334284156560898, 0.01729227788746357, 0.0002967424807138741, 0.019224748015403748, -0.003654617816209793, 0.04814516380429268, 0.03934909403324127, -0.0008615943370386958, -0.017175663262605667, -0.06420465558767319, 0.0024614008143544197, -0.04674578830599785, -0.03013654053211212, -0.01347731426358223, 0.06350497156381607, -0.01830849051475525, -0.041214924305677414, 0.06287191808223724, 0.04591282829642296, 0.07070175558328629, -0.005351776257157326, 0.01296920794993639, -0.04414695128798485, -0.019108133390545845, 0.02175694890320301, -0.036317113786935806, 0.08083056658506393, 0.021257173269987106, 0.012760967016220093, -0.05997321382164955, 0.06050631031394005, -0.00004220120536047034, -0.06137258931994438, 0.013602258637547493, -0.002550943987444043, -0.026538148522377014, 0.02705458365380764, -0.03665029630064964, 0.1178806871175766, 0.015118247829377651, -0.015076600015163422, -0.017608802765607834, 0.02025762014091015, -0.0010188157903030515, -0.00943745207041502, 0.06247209757566452, 0.02157369814813137, -0.004037780221551657, 0.00429808022454381, -0.023456191644072533, -0.025305364280939102, 0.009853932075202465, 0.010395357385277748, -0.06703672558069229, 0.012119587510824203, 0.031369324773550034, -0.010195446200668812, 0.06287191808223724, 0.02129049226641655, -0.006992710288614035, -0.024705633521080017, -0.006238880101591349, 0.08269640058279037, 0.005193513818085194, 0.0036421234253793955, 0.03888263553380966, -0.026188304647803307, -0.004368882160633802, 0.054975446313619614, 0.03821626678109169, 0.022823140025138855, 0.04284752905368805, 0.025888437405228615, -0.0007475827587768435, -0.004797857254743576, 0.029886651784181595, 0.036117203533649445, 0.020107686519622803, -0.0008886656141839921, 0.0814969390630722, -0.04767870530486107, 0.016401007771492004, -0.013927113264799118, 0.09462440758943558, 0.0027321132365614176, -0.03628379479050636, -0.032402195036411285, 0.02815409190952778, 0.02995328977704048, -0.02703792415559292, 0.00938747450709343, 0.02797084115445614, 0.062038958072662354, 0.023123005405068398, -0.007284246850758791, -0.012486089952290058, -0.06347165256738663, -0.00006243956158868968, -0.01142822951078415, 0.0037295843940228224, -0.02528870478272438, 0.026621444150805473, 0.0589403435587883, 0.022939754649996758, 0.010495312511920929, -0.011036737821996212, -0.015076600015163422, -0.0023947637528181076, 0.01059526763856411, -0.06290523707866669, 0.04711229354143143, 0.05047745630145073, 0.029919970780611038, -0.053775981068611145, 0.07130149006843567, 0.0298533346503973, -0.003252713941037655, -0.04784529656171799, -0.022090135142207146, -0.025172092020511627, 0.04964449629187584, 0.0584072470664978, -0.023756057024002075, 0.03326847404241562, -0.024305811151862144, 0.04294748604297638, -0.04734552279114723, -0.0069677215069532394, -0.006426296662539244, -0.02825404889881611, -0.031919077038764954, -0.02548861689865589, -0.058807067573070526, 0.029320238158106804, -0.01832514815032482, -0.03811630979180336, 0.004143982660025358, -0.03525092452764511, -0.02995328977704048, -0.02557191252708435, 0.016684215515851974, -0.017875349149107933, -0.027537701651453972, 0.03901590779423714, 0.010020524263381958, -0.055175356566905975, 0.016242746263742447, -0.013344040140509605, 0.0009287518914788961, 0.024972179904580116, -0.0037712324410676956, 0.03864940628409386, -0.09908907860517502, -0.08003092557191849, -0.008217163383960724, 0.011128363199532032, 0.04101501405239105, 0.04964449629187584, -0.03475114703178406, 0.02007436752319336, -0.02307302877306938, -0.03151925653219223, -0.014160342514514923, -0.018441762775182724, -0.03338509052991867, -0.025905096903443336, -0.028037477284669876, 0.0778985396027565, 0.029636763036251068, 0.028020819649100304, 0.041881296783685684, 0.009870591573417187, 0.002184441080316901, -0.01441023126244545, -0.012694330886006355, -0.04991104081273079, -0.007879814133048058, 0.000015618024917785078, -0.0016273981891572475, 0.05524199455976486, 0.06453784555196762, -0.011078385636210442, 0.010720212012529373, 0.03020317666232586, 0.09535741060972214, 0.004747879691421986, -0.008021417073905468, 0.058140698820352554, 0.002246913267299533, -0.061672456562519073, -0.03261876478791237, -0.013860476203262806, -0.03781644254922867, -0.004893647972494364, -0.0062347156926989555, 0.020057708024978638, 0.021240513771772385, -0.03393484279513359, -0.05850720405578613, -0.01413535326719284, 0.010320390574634075, 0.025172092020511627, 0.011669788509607315, -0.061872366815805435, 0.026754718273878098, 0.006721997633576393, 0.042247798293828964, 0.045879509299993515, 0.02695462852716446, -0.07889809459447861, -0.03515096753835678, -0.054975446313619614, -0.04064851254224777, 0.022823140025138855, 0.05924021080136299, 0.016509292647242546, -0.04817848280072212, -0.02155703864991665, 0.019274724647402763, -0.0005450690514408052, -0.037150073796510696, -0.00995388813316822, -0.012202883139252663, 0.043647173792123795, -0.038915954530239105, 0.02100728452205658, -0.004012790974229574, 0.01830849051475525, 0.029603445902466774, -0.04238107055425644, -0.01952461339533329, 0.06640367954969406, -0.04971113055944443, -0.0026030042208731174, 0.0018731217132881284, 0.05027754604816437, -0.0029216117691248655, -0.03438464179635048, -0.0030069903004914522, -0.04408031329512596, 0.027004605159163475, -0.05324288830161095, -0.031002819538116455, 0.015093259513378143, 0.022623229771852493, 0.003781644394621253, 0.0279042050242424, 0.02928691916167736, 0.009562395513057709, 0.03701680153608322, 0.008937674574553967, 0.01606782339513302, 0.003088204190135002, 0.01701739989221096, 0.05904029682278633, 0.003196489065885544, 0.03958232328295708, -0.014934996142983437, -0.060939449816942215, 0.020390892401337624, -0.004581287037581205, 0.01138658169656992, 0.012186224572360516, -0.010095491074025631, 0.012211212888360023, 0.0077673643827438354, 0.027371108531951904, -0.01952461339533329, -0.020324256271123886, -0.014876688830554485, 0.015834594145417213, 0.039082545787096024, 0.007217609789222479, -0.016251076012849808, -0.014110364951193333, -0.011353262700140476, -0.019591249525547028, 0.04561296105384827, -0.058074064552783966, 0.021240513771772385, 0.025821801275014877, 0.027754271402955055, 0.015309829264879227, -0.0002990851644426584, 0.030519703403115273, 0.06976883858442307, -0.042347755283117294, 0.010128810070455074, -0.048378393054008484, 0.011694776825606823, 0.0018137732986360788, 0.006230550818145275, -0.007971439510583878, -0.002246913267299533, 0.026838013902306557, 0.012494419701397419, 0.042081207036972046, 0.005605829879641533, 0.01459348201751709, 0.009029300883412361, 0.018358467146754265, -0.043847084045410156, -0.032102327793836594, -0.04704565554857254, 0.026738058775663376, 0.046246010810136795, 0.034151412546634674, -0.05624154955148697, 0.04024869203567505, -0.019024835899472237, -0.020407551899552345, -0.034717828035354614, -0.007592442445456982, -0.0279042050242424, -0.0232396200299263, -0.04547968879342079, -0.04054855555295944, 0.017159003764390945, 0.010020524263381958, -0.034617871046066284, 0.021706972271203995, -0.015409784391522408, 0.04344726353883743, -0.04994435980916023, -0.04834507405757904, -0.019557932391762733, 0.018641674891114235, 0.008058900944888592, -0.012436112388968468, -0.043747127056121826, 0.0035005200188606977, -0.05407584831118584, 0.0026654761750251055, 0.03864940628409386, -0.018241852521896362, 0.01932470314204693, 0.024405766278505325, -0.0004901456995867193, 0.03721671178936958, -0.04577955603599548, 0.03854944929480553, -0.03255212679505348, -0.018475081771612167, 0.03105279803276062, -0.021357128396630287, -0.04031532630324364, -0.033684954047203064, -0.029869992285966873, -0.044946592301130295, -0.0031548410188406706, -0.046345967799425125, 0.0399821437895298, -0.032585445791482925, -0.023856012150645256, -0.032485492527484894, 0.012027961201965809, 0.048011891543865204, -0.08909354358911514, 0.032951951026916504, -0.0446467250585556, 0.028787143528461456, -0.0412815622985363, 0.0009469729266129434, -0.0020584557205438614, 0.020474189892411232, 0.026538148522377014, 0.03498437628149986, 0.013177447952330112, -0.0716346725821495, -0.046246010810136795, -0.015459761954843998, -0.02307302877306938, 0.03190241754055023, -0.02267320640385151, -0.04414695128798485, 0.019924433901906013, 0.044480133801698685, 0.004364717286080122, 0.05754096806049347, 0.048478350043296814, 0.05630818381905556, 0.04321403428912163, -0.031002819538116455, -0.025605231523513794, 0.0277875903993845, -0.006376319099217653, -0.03744994103908539, -0.012885911390185356, 0.02240666002035141, -0.0005377806373871863, -0.023589463904500008, -0.029436852782964706, -0.03298527002334595, -0.009020971134305, -0.038815997540950775, -0.018824925646185875, -0.017775394022464752, -0.03665029630064964, 0.07030193507671356, -0.004660418722778559, -0.06330505758523941, -0.021790267899632454, -0.02248995564877987, 0.01407704595476389, 0.046912383288145065, -0.04484663903713226, 0.01794198714196682, 0.006905249319970608, -0.013552281074225903, -0.035550788044929504, -0.02100728452205658, 0.03948236629366875, -0.00757994782179594, 0.002688382752239704, 0.017458869144320488, -0.011586491949856281, -0.028004160150885582, -0.09755642712116241, -0.05680796131491661, -0.030886204913258553, 0.014751745387911797, -0.011303285136818886, 0.030636318027973175, 0.044313542544841766, -0.013760521076619625, 0.06313847005367279, 0.0001840323966462165, -0.0032485490664839745, 0.09155911207199097, -0.061872366815805435, -0.061405908316373825, -0.0007387325749732554, 0.05280974879860878, 0.003796221222728491, -0.007405026350170374, -0.04797857254743576, 0.04358053579926491, -0.05407584831118584, -0.024239175021648407, -0.002836233237758279, -0.03031979128718376, -0.0018575037829577923, -0.044013675302267075, 0.003127769799903035, 0.012436112388968468, -0.009703999385237694, -0.02697128802537918, 0.006796964444220066, 0.019674547016620636, -0.012486089952290058, -0.02407258190214634, -0.008671127259731293, -0.03778312727808952, -0.024955520406365395, -0.011511525139212608, -0.07343386858701706, 0.00001120105207519373, -0.02303970977663994, 0.05614159256219864, -0.03038642928004265, -0.07456669956445694, -0.02240666002035141, -0.035950612276792526, -0.07989764958620071, -0.019008178263902664, -0.048211801797151566, 0.024589018896222115, -0.021607017144560814, 0.005560016725212336, 0.05177687481045723, 0.030469724908471107, 0.03618384152650833, 0.007563288789242506, 0.04391372203826904, 0.00523099722340703, -0.09069282561540604, 0.013327381573617458, -0.000017033407857525162, -0.03365163877606392, -0.009179233573377132, -0.08003092557191849, -0.02055748552083969, 0.013593928888440132, 0.023572806268930435, 0.020574145019054413, 0.05017758905887604, -0.023206302896142006, -0.05334284156560898, -0.04757875204086304, 0.01195299532264471, -0.026721399277448654, 0.01709236577153206, -0.0420478880405426, -0.019757842645049095, 0.038982588797807693, -0.004146065097302198, -0.00090324244229123, 0.059273526072502136, 0.010828496888279915, -0.06357160955667496, 0.05914025381207466, -0.02872050553560257, 0.04971113055944443, -0.025255387648940086, 0.028670528903603554, -0.006313846912235022, -0.04321403428912163, 0.01879160664975643, 0.017625462263822556, 0.03718339279294014, -0.0026842178776860237, 0.02733779139816761, 0.0251887496560812, -0.02305636927485466, 0.0418146587908268, 0.015301499515771866, 0.02975337766110897, 0.0050352513790130615, 0.007834001444280148, 0.008317118510603905, -0.03691684454679489, 0.057607606053352356, 0.03698348253965378, -0.006322176195681095, 0.004910307005047798, 0.017808713018894196, -0.02007436752319336, -0.007754869759082794, -0.003179829800501466, 0.00472289090976119, -0.03495105728507042, 0.0711682140827179, 0.00938747450709343, -0.03241885453462601, 0.015368136577308178, -0.035950612276792526, -0.007363378070294857, 0.030886204913258553, 0.00723010441288352, 0.0015503492904826999, 0.05240992456674576, 0.04524645954370499, -0.00748415756970644, -0.04497991129755974, 0.03346838429570198, 0.02398928627371788, 0.0762992575764656, -0.023206302896142006, -0.012427782639861107, -0.012402794323861599, -0.013718873262405396, -0.016425997018814087, 0.05867379531264305, 0.0022406659554690123, -0.00999553594738245, -0.022106792777776718, 0.021357128396630287, 0.08029747009277344, 0.08769416809082031, -0.06836946308612823, 0.011928006075322628, -0.009753976948559284, -0.035650745034217834, -0.00569329084828496, -0.010536960326135159, -0.012211212888360023, -0.02863720990717411, -0.005360106006264687, -0.0019147698767483234, 0.05270979180932045, 0.03608388453722, -0.020057708024978638, 0.020690759643912315, -0.012144575826823711, -0.03263542428612709, -0.024389106780290604, 0.026188304647803307, 0.018824925646185875, 0.009937228634953499, -0.047545433044433594, -0.053775981068611145, -0.0524432435631752, 0.014810052700340748, -0.007305070757865906, -0.019924433901906013, -0.021440424025058746, -0.05284306779503822, -0.042447708547115326, -0.007042687851935625, 0.05494212731719017, 0.03468450903892517, 0.04091506078839302, -0.005472555756568909, 0.08023083209991455, 0.032202284783124924, -0.02398928627371788, 0.020190982148051262, -0.03263542428612709, -0.028570573776960373, 0.023556146770715714, -0.07130149006843567, -0.05181019380688667, -0.03410143777728081, -0.05867379531264305, 0.06427129358053207, 0.05467558279633522, -0.005643312819302082, 0.029120327904820442, 0.0222067479044199, -0.05074400454759598, -0.06400474905967712, 0.002727948362007737, -0.030086562037467957, 0.02695462852716446, 0.01510158833116293, 0.02845395915210247, 0.008646138943731785, 0.02453904040157795, 0.021173877641558647, 0.0018002376891672611, -0.04201456904411316, 0.007100995164364576, -0.002294808393344283, -0.014010409824550152, 0.04711229354143143, 0.03675025328993797, -0.07936455309391022, -0.025721846148371696, -0.05977330356836319, -0.008862708695232868, 0.02120719477534294, -0.0063263410702347755, 0.05124378204345703, 0.039182499051094055, -0.018525060266256332, -0.0003071544924750924, 0.027854226529598236, -0.019274724647402763, -0.0219402015209198, 0.03338509052991867, -0.024489061906933784, 0.040215373039245605, -0.018341807648539543, 0.019841138273477554, -0.046979017555713654, -0.08642806857824326, -0.0013139965012669563, 0.029886651784181595, 0.06760314106941223, -0.046345967799425125, -0.03320183977484703, 0.0002217759465565905, 0.010203775949776173, -0.08109711110591888, 0.041614748537540436, 0.016142791137099266, 0.09775634109973907, -0.057407695800065994, 0.03131934627890587, 0.07623261958360672, 0.02855391427874565, 0.022173430770635605, 0.0571078285574913, -0.05181019380688667, 0.007142643444240093, 0.0013816745486110449, 0.030736273154616356, -0.004793692380189896, 0.001943923532962799, 0.000005291419256536756, 0.0002621225139591843, -0.003092368831858039, -0.0035296736750751734, -0.027004605159163475, -0.05494212731719017, 0.01970786415040493, 0.028987053781747818, -0.009845603257417679, 0.03438464179635048, 0.005972332786768675, 0.004052356816828251, -0.008587831631302834, -0.01254439726471901, 0.024205856025218964, 0.01450185663998127, -0.026438191533088684, -0.004360552411526442, 0.029453512281179428, 0.02640487439930439, -0.013235755264759064, 0.03216896578669548, 0.08896026760339737, -0.019124791026115417, -0.016492635011672974, 0.04218116030097008, -0.007196785882115364, 0.054808855056762695, -0.040115416049957275, 0.02975337766110897, 0.007134313695132732, 0.04677910730242729, -0.06573730707168579, 0.03988218680024147, -0.0412815622985363, 0.023589463904500008 ]
9,479
asyncclick.formatting
section
Helpful context manager that writes a paragraph, a heading, and the indents. :param name: the section name that is written as heading.
def getvalue(self) -> str: """Returns the buffer contents.""" return "".join(self.buffer)
(self, name: str) -> Iterator[NoneType]
[ 0.03545083478093147, -0.027720952406525612, -0.07829836755990982, 0.006005651317536831, 0.032102327793836594, -0.002630075439810753, -0.020290937274694443, 0.01445187907665968, 0.09249202162027359, -0.078431636095047, 0.01153651438653469, -0.007471662946045399, -0.05017758905887604, 0.04737883806228638, 0.010836826637387276, 0.0075674536637961864, 0.021223854273557663, -0.04368049278855324, 0.04171470180153847, 0.07749871909618378, -0.0292036235332489, -0.0010427634697407484, 0.019774502143263817, 0.020290937274694443, -0.05614159256219864, -0.006751151289790869, 0.041781339794397354, -0.06850273907184601, 0.0190748143941164, 0.02157369814813137, -0.003958648536354303, -0.12207881361246109, 0.031019479036331177, -0.025705186650156975, -0.02333957701921463, 0.012161235325038433, -0.02472229115664959, -0.008687786757946014, -0.027371108531951904, -0.03968227654695511, -0.03468450903892517, -0.01719232089817524, 0.0010328720090910792, -0.0438804030418396, -0.02045753039419651, -0.03223560377955437, -0.0010943029774352908, 0.0405152402818203, 0.0016586342826485634, 0.009212552569806576, 0.06410470604896545, 0.09948889911174774, -0.0711682140827179, -0.02165699377655983, -0.018075261265039444, 0.00017804547678679228, 0.034351326525211334, 0.0031152754090726376, 0.004981108475476503, 0.0646711140871048, -0.02378937602043152, -0.013094152323901653, 0.036483705043792725, -0.05334284156560898, 0.01729227788746357, 0.0002967424807138741, 0.019224748015403748, -0.003654617816209793, 0.04814516380429268, 0.03934909403324127, -0.0008615943370386958, -0.017175663262605667, -0.06420465558767319, 0.0024614008143544197, -0.04674578830599785, -0.03013654053211212, -0.01347731426358223, 0.06350497156381607, -0.01830849051475525, -0.041214924305677414, 0.06287191808223724, 0.04591282829642296, 0.07070175558328629, -0.005351776257157326, 0.01296920794993639, -0.04414695128798485, -0.019108133390545845, 0.02175694890320301, -0.036317113786935806, 0.08083056658506393, 0.021257173269987106, 0.012760967016220093, -0.05997321382164955, 0.06050631031394005, -0.00004220120536047034, -0.06137258931994438, 0.013602258637547493, -0.002550943987444043, -0.026538148522377014, 0.02705458365380764, -0.03665029630064964, 0.1178806871175766, 0.015118247829377651, -0.015076600015163422, -0.017608802765607834, 0.02025762014091015, -0.0010188157903030515, -0.00943745207041502, 0.06247209757566452, 0.02157369814813137, -0.004037780221551657, 0.00429808022454381, -0.023456191644072533, -0.025305364280939102, 0.009853932075202465, 0.010395357385277748, -0.06703672558069229, 0.012119587510824203, 0.031369324773550034, -0.010195446200668812, 0.06287191808223724, 0.02129049226641655, -0.006992710288614035, -0.024705633521080017, -0.006238880101591349, 0.08269640058279037, 0.005193513818085194, 0.0036421234253793955, 0.03888263553380966, -0.026188304647803307, -0.004368882160633802, 0.054975446313619614, 0.03821626678109169, 0.022823140025138855, 0.04284752905368805, 0.025888437405228615, -0.0007475827587768435, -0.004797857254743576, 0.029886651784181595, 0.036117203533649445, 0.020107686519622803, -0.0008886656141839921, 0.0814969390630722, -0.04767870530486107, 0.016401007771492004, -0.013927113264799118, 0.09462440758943558, 0.0027321132365614176, -0.03628379479050636, -0.032402195036411285, 0.02815409190952778, 0.02995328977704048, -0.02703792415559292, 0.00938747450709343, 0.02797084115445614, 0.062038958072662354, 0.023123005405068398, -0.007284246850758791, -0.012486089952290058, -0.06347165256738663, -0.00006243956158868968, -0.01142822951078415, 0.0037295843940228224, -0.02528870478272438, 0.026621444150805473, 0.0589403435587883, 0.022939754649996758, 0.010495312511920929, -0.011036737821996212, -0.015076600015163422, -0.0023947637528181076, 0.01059526763856411, -0.06290523707866669, 0.04711229354143143, 0.05047745630145073, 0.029919970780611038, -0.053775981068611145, 0.07130149006843567, 0.0298533346503973, -0.003252713941037655, -0.04784529656171799, -0.022090135142207146, -0.025172092020511627, 0.04964449629187584, 0.0584072470664978, -0.023756057024002075, 0.03326847404241562, -0.024305811151862144, 0.04294748604297638, -0.04734552279114723, -0.0069677215069532394, -0.006426296662539244, -0.02825404889881611, -0.031919077038764954, -0.02548861689865589, -0.058807067573070526, 0.029320238158106804, -0.01832514815032482, -0.03811630979180336, 0.004143982660025358, -0.03525092452764511, -0.02995328977704048, -0.02557191252708435, 0.016684215515851974, -0.017875349149107933, -0.027537701651453972, 0.03901590779423714, 0.010020524263381958, -0.055175356566905975, 0.016242746263742447, -0.013344040140509605, 0.0009287518914788961, 0.024972179904580116, -0.0037712324410676956, 0.03864940628409386, -0.09908907860517502, -0.08003092557191849, -0.008217163383960724, 0.011128363199532032, 0.04101501405239105, 0.04964449629187584, -0.03475114703178406, 0.02007436752319336, -0.02307302877306938, -0.03151925653219223, -0.014160342514514923, -0.018441762775182724, -0.03338509052991867, -0.025905096903443336, -0.028037477284669876, 0.0778985396027565, 0.029636763036251068, 0.028020819649100304, 0.041881296783685684, 0.009870591573417187, 0.002184441080316901, -0.01441023126244545, -0.012694330886006355, -0.04991104081273079, -0.007879814133048058, 0.000015618024917785078, -0.0016273981891572475, 0.05524199455976486, 0.06453784555196762, -0.011078385636210442, 0.010720212012529373, 0.03020317666232586, 0.09535741060972214, 0.004747879691421986, -0.008021417073905468, 0.058140698820352554, 0.002246913267299533, -0.061672456562519073, -0.03261876478791237, -0.013860476203262806, -0.03781644254922867, -0.004893647972494364, -0.0062347156926989555, 0.020057708024978638, 0.021240513771772385, -0.03393484279513359, -0.05850720405578613, -0.01413535326719284, 0.010320390574634075, 0.025172092020511627, 0.011669788509607315, -0.061872366815805435, 0.026754718273878098, 0.006721997633576393, 0.042247798293828964, 0.045879509299993515, 0.02695462852716446, -0.07889809459447861, -0.03515096753835678, -0.054975446313619614, -0.04064851254224777, 0.022823140025138855, 0.05924021080136299, 0.016509292647242546, -0.04817848280072212, -0.02155703864991665, 0.019274724647402763, -0.0005450690514408052, -0.037150073796510696, -0.00995388813316822, -0.012202883139252663, 0.043647173792123795, -0.038915954530239105, 0.02100728452205658, -0.004012790974229574, 0.01830849051475525, 0.029603445902466774, -0.04238107055425644, -0.01952461339533329, 0.06640367954969406, -0.04971113055944443, -0.0026030042208731174, 0.0018731217132881284, 0.05027754604816437, -0.0029216117691248655, -0.03438464179635048, -0.0030069903004914522, -0.04408031329512596, 0.027004605159163475, -0.05324288830161095, -0.031002819538116455, 0.015093259513378143, 0.022623229771852493, 0.003781644394621253, 0.0279042050242424, 0.02928691916167736, 0.009562395513057709, 0.03701680153608322, 0.008937674574553967, 0.01606782339513302, 0.003088204190135002, 0.01701739989221096, 0.05904029682278633, 0.003196489065885544, 0.03958232328295708, -0.014934996142983437, -0.060939449816942215, 0.020390892401337624, -0.004581287037581205, 0.01138658169656992, 0.012186224572360516, -0.010095491074025631, 0.012211212888360023, 0.0077673643827438354, 0.027371108531951904, -0.01952461339533329, -0.020324256271123886, -0.014876688830554485, 0.015834594145417213, 0.039082545787096024, 0.007217609789222479, -0.016251076012849808, -0.014110364951193333, -0.011353262700140476, -0.019591249525547028, 0.04561296105384827, -0.058074064552783966, 0.021240513771772385, 0.025821801275014877, 0.027754271402955055, 0.015309829264879227, -0.0002990851644426584, 0.030519703403115273, 0.06976883858442307, -0.042347755283117294, 0.010128810070455074, -0.048378393054008484, 0.011694776825606823, 0.0018137732986360788, 0.006230550818145275, -0.007971439510583878, -0.002246913267299533, 0.026838013902306557, 0.012494419701397419, 0.042081207036972046, 0.005605829879641533, 0.01459348201751709, 0.009029300883412361, 0.018358467146754265, -0.043847084045410156, -0.032102327793836594, -0.04704565554857254, 0.026738058775663376, 0.046246010810136795, 0.034151412546634674, -0.05624154955148697, 0.04024869203567505, -0.019024835899472237, -0.020407551899552345, -0.034717828035354614, -0.007592442445456982, -0.0279042050242424, -0.0232396200299263, -0.04547968879342079, -0.04054855555295944, 0.017159003764390945, 0.010020524263381958, -0.034617871046066284, 0.021706972271203995, -0.015409784391522408, 0.04344726353883743, -0.04994435980916023, -0.04834507405757904, -0.019557932391762733, 0.018641674891114235, 0.008058900944888592, -0.012436112388968468, -0.043747127056121826, 0.0035005200188606977, -0.05407584831118584, 0.0026654761750251055, 0.03864940628409386, -0.018241852521896362, 0.01932470314204693, 0.024405766278505325, -0.0004901456995867193, 0.03721671178936958, -0.04577955603599548, 0.03854944929480553, -0.03255212679505348, -0.018475081771612167, 0.03105279803276062, -0.021357128396630287, -0.04031532630324364, -0.033684954047203064, -0.029869992285966873, -0.044946592301130295, -0.0031548410188406706, -0.046345967799425125, 0.0399821437895298, -0.032585445791482925, -0.023856012150645256, -0.032485492527484894, 0.012027961201965809, 0.048011891543865204, -0.08909354358911514, 0.032951951026916504, -0.0446467250585556, 0.028787143528461456, -0.0412815622985363, 0.0009469729266129434, -0.0020584557205438614, 0.020474189892411232, 0.026538148522377014, 0.03498437628149986, 0.013177447952330112, -0.0716346725821495, -0.046246010810136795, -0.015459761954843998, -0.02307302877306938, 0.03190241754055023, -0.02267320640385151, -0.04414695128798485, 0.019924433901906013, 0.044480133801698685, 0.004364717286080122, 0.05754096806049347, 0.048478350043296814, 0.05630818381905556, 0.04321403428912163, -0.031002819538116455, -0.025605231523513794, 0.0277875903993845, -0.006376319099217653, -0.03744994103908539, -0.012885911390185356, 0.02240666002035141, -0.0005377806373871863, -0.023589463904500008, -0.029436852782964706, -0.03298527002334595, -0.009020971134305, -0.038815997540950775, -0.018824925646185875, -0.017775394022464752, -0.03665029630064964, 0.07030193507671356, -0.004660418722778559, -0.06330505758523941, -0.021790267899632454, -0.02248995564877987, 0.01407704595476389, 0.046912383288145065, -0.04484663903713226, 0.01794198714196682, 0.006905249319970608, -0.013552281074225903, -0.035550788044929504, -0.02100728452205658, 0.03948236629366875, -0.00757994782179594, 0.002688382752239704, 0.017458869144320488, -0.011586491949856281, -0.028004160150885582, -0.09755642712116241, -0.05680796131491661, -0.030886204913258553, 0.014751745387911797, -0.011303285136818886, 0.030636318027973175, 0.044313542544841766, -0.013760521076619625, 0.06313847005367279, 0.0001840323966462165, -0.0032485490664839745, 0.09155911207199097, -0.061872366815805435, -0.061405908316373825, -0.0007387325749732554, 0.05280974879860878, 0.003796221222728491, -0.007405026350170374, -0.04797857254743576, 0.04358053579926491, -0.05407584831118584, -0.024239175021648407, -0.002836233237758279, -0.03031979128718376, -0.0018575037829577923, -0.044013675302267075, 0.003127769799903035, 0.012436112388968468, -0.009703999385237694, -0.02697128802537918, 0.006796964444220066, 0.019674547016620636, -0.012486089952290058, -0.02407258190214634, -0.008671127259731293, -0.03778312727808952, -0.024955520406365395, -0.011511525139212608, -0.07343386858701706, 0.00001120105207519373, -0.02303970977663994, 0.05614159256219864, -0.03038642928004265, -0.07456669956445694, -0.02240666002035141, -0.035950612276792526, -0.07989764958620071, -0.019008178263902664, -0.048211801797151566, 0.024589018896222115, -0.021607017144560814, 0.005560016725212336, 0.05177687481045723, 0.030469724908471107, 0.03618384152650833, 0.007563288789242506, 0.04391372203826904, 0.00523099722340703, -0.09069282561540604, 0.013327381573617458, -0.000017033407857525162, -0.03365163877606392, -0.009179233573377132, -0.08003092557191849, -0.02055748552083969, 0.013593928888440132, 0.023572806268930435, 0.020574145019054413, 0.05017758905887604, -0.023206302896142006, -0.05334284156560898, -0.04757875204086304, 0.01195299532264471, -0.026721399277448654, 0.01709236577153206, -0.0420478880405426, -0.019757842645049095, 0.038982588797807693, -0.004146065097302198, -0.00090324244229123, 0.059273526072502136, 0.010828496888279915, -0.06357160955667496, 0.05914025381207466, -0.02872050553560257, 0.04971113055944443, -0.025255387648940086, 0.028670528903603554, -0.006313846912235022, -0.04321403428912163, 0.01879160664975643, 0.017625462263822556, 0.03718339279294014, -0.0026842178776860237, 0.02733779139816761, 0.0251887496560812, -0.02305636927485466, 0.0418146587908268, 0.015301499515771866, 0.02975337766110897, 0.0050352513790130615, 0.007834001444280148, 0.008317118510603905, -0.03691684454679489, 0.057607606053352356, 0.03698348253965378, -0.006322176195681095, 0.004910307005047798, 0.017808713018894196, -0.02007436752319336, -0.007754869759082794, -0.003179829800501466, 0.00472289090976119, -0.03495105728507042, 0.0711682140827179, 0.00938747450709343, -0.03241885453462601, 0.015368136577308178, -0.035950612276792526, -0.007363378070294857, 0.030886204913258553, 0.00723010441288352, 0.0015503492904826999, 0.05240992456674576, 0.04524645954370499, -0.00748415756970644, -0.04497991129755974, 0.03346838429570198, 0.02398928627371788, 0.0762992575764656, -0.023206302896142006, -0.012427782639861107, -0.012402794323861599, -0.013718873262405396, -0.016425997018814087, 0.05867379531264305, 0.0022406659554690123, -0.00999553594738245, -0.022106792777776718, 0.021357128396630287, 0.08029747009277344, 0.08769416809082031, -0.06836946308612823, 0.011928006075322628, -0.009753976948559284, -0.035650745034217834, -0.00569329084828496, -0.010536960326135159, -0.012211212888360023, -0.02863720990717411, -0.005360106006264687, -0.0019147698767483234, 0.05270979180932045, 0.03608388453722, -0.020057708024978638, 0.020690759643912315, -0.012144575826823711, -0.03263542428612709, -0.024389106780290604, 0.026188304647803307, 0.018824925646185875, 0.009937228634953499, -0.047545433044433594, -0.053775981068611145, -0.0524432435631752, 0.014810052700340748, -0.007305070757865906, -0.019924433901906013, -0.021440424025058746, -0.05284306779503822, -0.042447708547115326, -0.007042687851935625, 0.05494212731719017, 0.03468450903892517, 0.04091506078839302, -0.005472555756568909, 0.08023083209991455, 0.032202284783124924, -0.02398928627371788, 0.020190982148051262, -0.03263542428612709, -0.028570573776960373, 0.023556146770715714, -0.07130149006843567, -0.05181019380688667, -0.03410143777728081, -0.05867379531264305, 0.06427129358053207, 0.05467558279633522, -0.005643312819302082, 0.029120327904820442, 0.0222067479044199, -0.05074400454759598, -0.06400474905967712, 0.002727948362007737, -0.030086562037467957, 0.02695462852716446, 0.01510158833116293, 0.02845395915210247, 0.008646138943731785, 0.02453904040157795, 0.021173877641558647, 0.0018002376891672611, -0.04201456904411316, 0.007100995164364576, -0.002294808393344283, -0.014010409824550152, 0.04711229354143143, 0.03675025328993797, -0.07936455309391022, -0.025721846148371696, -0.05977330356836319, -0.008862708695232868, 0.02120719477534294, -0.0063263410702347755, 0.05124378204345703, 0.039182499051094055, -0.018525060266256332, -0.0003071544924750924, 0.027854226529598236, -0.019274724647402763, -0.0219402015209198, 0.03338509052991867, -0.024489061906933784, 0.040215373039245605, -0.018341807648539543, 0.019841138273477554, -0.046979017555713654, -0.08642806857824326, -0.0013139965012669563, 0.029886651784181595, 0.06760314106941223, -0.046345967799425125, -0.03320183977484703, 0.0002217759465565905, 0.010203775949776173, -0.08109711110591888, 0.041614748537540436, 0.016142791137099266, 0.09775634109973907, -0.057407695800065994, 0.03131934627890587, 0.07623261958360672, 0.02855391427874565, 0.022173430770635605, 0.0571078285574913, -0.05181019380688667, 0.007142643444240093, 0.0013816745486110449, 0.030736273154616356, -0.004793692380189896, 0.001943923532962799, 0.000005291419256536756, 0.0002621225139591843, -0.003092368831858039, -0.0035296736750751734, -0.027004605159163475, -0.05494212731719017, 0.01970786415040493, 0.028987053781747818, -0.009845603257417679, 0.03438464179635048, 0.005972332786768675, 0.004052356816828251, -0.008587831631302834, -0.01254439726471901, 0.024205856025218964, 0.01450185663998127, -0.026438191533088684, -0.004360552411526442, 0.029453512281179428, 0.02640487439930439, -0.013235755264759064, 0.03216896578669548, 0.08896026760339737, -0.019124791026115417, -0.016492635011672974, 0.04218116030097008, -0.007196785882115364, 0.054808855056762695, -0.040115416049957275, 0.02975337766110897, 0.007134313695132732, 0.04677910730242729, -0.06573730707168579, 0.03988218680024147, -0.0412815622985363, 0.023589463904500008 ]
9,480
asyncclick.formatting
write
Writes a unicode string into the internal buffer.
def write(self, string: str) -> None: """Writes a unicode string into the internal buffer.""" self.buffer.append(string)
(self, string: str) -> NoneType
[ -0.07216782867908478, 0.020071251317858696, -0.05115866661071777, 0.060503650456666946, 0.004783335607498884, -0.013156304135918617, -0.053170908242464066, 0.09617829322814941, 0.01675446331501007, -0.06357316672801971, 0.024914270266890526, 0.002766831312328577, -0.02943328581750393, 0.05334143713116646, 0.005414292216300964, 0.02138432301580906, -0.02065104804933071, -0.011860284022986889, 0.0010732662631198764, 0.01908218301832676, -0.03257101774215698, 0.025391751900315285, 0.07694263756275177, 0.06398244202136993, -0.04805504158139229, 0.03284386545419693, -0.01196260191500187, -0.024283314123749733, 0.007273057010024786, -0.0088419234380126, -0.0014143240405246615, -0.11950664967298508, 0.008355915546417236, -0.04133620485663414, -0.010999113321304321, 0.027472203597426414, 0.001112701022066176, -0.014759275130927563, 0.021998226642608643, -0.006910683121532202, -0.02322603575885296, 0.06688143312931061, -0.044712673872709274, -0.03393524885177612, 0.0069362628273665905, 0.02319192886352539, -0.003777215024456382, 0.0891525074839592, -0.0007673799991607666, 0.04276864603161812, -0.0007396690780296922, 0.07530555874109268, -0.03422514721751213, -0.031564898788928986, 0.006961842067539692, 0.04437161609530449, 0.018724072724580765, -0.021725380793213844, -0.024453843012452126, 0.008492338471114635, -0.026738930493593216, -0.007882697507739067, 0.014665484428405762, -0.04341665655374527, -0.00488565256819129, -0.0032336541917175055, 0.04293917492032051, -0.010871216654777527, 0.04478088766336441, 0.019593769684433937, 0.005081761162728071, 0.019355028867721558, -0.025204170495271683, -0.018519436940550804, -0.03976733610033989, 0.04068819433450699, -0.03437862545251846, 0.07148571312427521, -0.01673741079866886, 0.010913848876953125, 0.04986264929175377, 0.010078257881104946, -0.0036535814870148897, 0.03173542767763138, -0.03396935388445854, -0.004783335607498884, -0.06309568881988525, -0.020736312493681908, -0.06561952084302902, 0.02875117026269436, -0.0032741546165198088, -0.023771727457642555, -0.0039498754777014256, 0.08847039192914963, 0.030456459149718285, -0.05153382942080498, 0.007763327565044165, -0.010803005658090115, -0.04338255152106285, 0.03669781610369682, -0.037755098193883896, 0.051806677132844925, 0.05095403268933296, -0.0556265227496624, -0.028768224641680717, -0.0768062099814415, 0.010717741213738918, -0.004325039219111204, -0.010018572211265564, 0.009038031101226807, 0.019474400207400322, -0.021264953538775444, -0.029808450490236282, -0.04140441492199898, -0.003576843533664942, 0.04249579831957817, -0.009805411100387573, -0.028086109086871147, 0.05716128274798393, 0.00010231733176624402, 0.04184779152274132, 0.005478240549564362, 0.020292937755584717, -0.005439871456474066, -0.032485753297805786, 0.01020615454763174, -0.027216410264372826, 0.07646515220403671, 0.03608391433954239, 0.017393946647644043, -0.041472624987363815, 0.05555831268429756, 0.0547056682407856, 0.009839517064392567, 0.005729770753532648, 0.04137030988931656, -0.05354607105255127, -0.0005478240782395005, -0.009822464548051357, 0.04454214498400688, -0.0028819383587688208, -0.01010383665561676, 0.051363300532102585, -0.032963234931230545, 0.045121945440769196, 0.03533358499407768, 0.01020615454763174, -0.0336112454533577, -0.019815457984805107, 0.0072133722715079784, 0.013608205132186413, 0.022919083014130592, -0.07059895992279053, 0.016498669981956482, -0.02897285856306553, 0.005162762012332678, 0.0074094804003834724, 0.018707020208239555, 0.01135722454637289, 0.005635980051010847, -0.028631800785660744, -0.031138574704527855, -0.007260267622768879, 0.03289502486586571, -0.013395044021308422, 0.021725380793213844, -0.009967413730919361, 0.02203233353793621, -0.012815246358513832, -0.004047929774969816, 0.006808366160839796, 0.005090287420898676, -0.02547701634466648, 0.049487482756376266, 0.05603579431772232, 0.03006424382328987, 0.009234139695763588, 0.04184779152274132, 0.006394833326339722, -0.030950993299484253, 0.02803494967520237, -0.05487619712948799, -0.031803637742996216, 0.03402051329612732, 0.03460031375288963, -0.07066716998815536, -0.006450255401432514, 0.051840782165527344, -0.016720358282327652, 0.003521421691402793, 0.002098571276292205, 0.003777215024456382, 0.0033103921450674534, -0.027710944414138794, -0.006185935344547033, 0.008283440954983234, 0.06855261325836182, -0.06360727548599243, -0.053205013275146484, -0.007678063120692968, -0.016481617465615273, 0.051602043211460114, 0.03147963434457779, -0.044030558317899704, 0.040108393877744675, -0.04174547269940376, 0.02114558219909668, 0.0009171256679110229, -0.016225824132561684, -0.038266684859991074, 0.026039762422442436, 0.032025326043367386, 0.03257101774215698, -0.0014601536095142365, -0.0027092776726931334, -0.05514904484152794, -0.08390021324157715, -0.030916888266801834, 0.05791161209344864, -0.003540606005117297, 0.0252382755279541, 0.018689965829253197, -0.0163025613874197, -0.01529644150286913, -0.04229116439819336, -0.01355704665184021, 0.006586678326129913, -0.031138574704527855, -0.029075175523757935, 0.0158421341329813, 0.01699320413172245, 0.011476594023406506, 0.03785741329193115, 0.014622852206230164, -0.004970917012542486, -0.02179359272122383, -0.0823313519358635, 0.021742433309555054, -0.016677726060152054, -0.01976429857313633, -0.0027540416922420263, -0.0007535245385952294, 0.021060317754745483, 0.04689544439315796, 0.011510699987411499, 0.007575746160000563, -0.01749626360833645, 0.08430948108434677, 0.013284200802445412, -0.019150394946336746, 0.04222295433282852, -0.007392427418380976, -0.11855168640613556, -0.06964399665594101, -0.010061204433441162, -0.0368342399597168, 0.015978557989001274, -0.008321809582412243, -0.019917774945497513, 0.019372081384062767, -0.04498552158474922, 0.029330968856811523, -0.019900722429156303, 0.028563588857650757, 0.0063394117169082165, -0.015091806650161743, -0.055490102618932724, 0.008633024990558624, -0.015168544836342335, 0.032281119376420975, 0.03792562708258629, 0.048566628247499466, -0.04795272275805473, 0.018229538574814796, -0.006706048734486103, -0.029910767450928688, 0.009302350692451, 0.028358954936265945, -0.00024180463515222073, -0.03192300722002983, 0.034566204994916916, 0.013872525654733181, 0.035708751529455185, 0.016609514132142067, 0.024863112717866898, -0.005908825900405645, 0.0298425555229187, 0.03697066381573677, -0.024539107456803322, -0.03422514721751213, -0.0017468553269281983, 0.020992105826735497, -0.03840310499072075, 0.05624042823910713, 0.010888270102441311, 0.03690245375037193, -0.016191719099879265, 0.013369465246796608, 0.06040133163332939, -0.04358718544244766, -0.01656688190996647, -0.0036130808293819427, 0.047168292105197906, 0.027233464643359184, -0.0330655537545681, -0.0528639554977417, -0.046486176550388336, 0.010393735952675343, -0.04501962661743164, 0.002487590303644538, 0.0017766979290172458, 0.005797982215881348, -0.04389413818717003, 0.03431041166186333, 0.039869654923677444, 0.0692688375711441, 0.010163522325456142, -0.0273528341203928, 0.0016221561236307025, 0.006561099085956812, -0.022236967459321022, -0.10750140994787216, 0.021077370271086693, -0.04382592439651489, -0.014332952909171581, 0.0181442741304636, 0.031138574704527855, -0.005192604847252369, 0.001907791942358017, -0.015944451093673706, 0.004531805403530598, -0.024010468274354935, -0.013787261210381985, -0.0014590878272429109, 0.028341902419924736, -0.011186695657670498, -0.04883947595953941, -0.04160904884338379, 0.019201552495360374, 0.026363765820860863, 0.011271960102021694, 0.03495842218399048, 0.030950993299484253, 0.019661981612443924, 0.007481954991817474, 0.010982060804963112, -0.05006728321313858, 0.03700476884841919, 0.011527753435075283, 0.0442010872066021, 0.005695664789527655, -0.008692710660398006, 0.036663711071014404, -0.03976733610033989, 0.0063607278279960155, -0.01978135108947754, -0.004906968679279089, 0.016447512432932854, 0.006850998383015394, -0.040074288845062256, -0.03347482159733772, -0.008692710660398006, 0.02755746804177761, -0.01909923553466797, -0.043723609298467636, -0.0408928282558918, 0.0477139838039875, 0.0301154013723135, 0.021299058571457863, 0.03328723832964897, -0.009174454025924206, -0.009259718470275402, -0.03816436603665352, 0.025852179154753685, -0.02776210382580757, 0.007281583733856678, 0.03309965878725052, 0.000011865413398481905, -0.051567938178777695, -0.07878434658050537, 0.01447790302336216, -0.02407868020236492, -0.028103161603212357, -0.002304271562024951, 0.041233886033296585, -0.0010103837121278048, -0.003504368709400296, 0.008927187882363796, 0.011621544137597084, 0.04317791387438774, 0.01747921109199524, -0.0013663627905771136, 0.02414689026772976, -0.0184171199798584, -0.06882546097040176, -0.0006139040342532098, 0.011749440804123878, 0.016822675243020058, 0.008816343732178211, 0.0652102455496788, -0.01886049471795559, 0.015228229574859142, -0.05586526542901993, 0.05347786098718643, -0.006595205049961805, 0.07114465534687042, -0.029501497745513916, 0.015049174427986145, -0.005256553180515766, 0.00128003244753927, -0.02068515494465828, -0.00019144533143844455, -0.039971973747015, -0.05484209209680557, 0.029262756928801537, 0.0059514581225812435, -0.01718931272625923, -0.06493740528821945, 0.0028734118677675724, 0.057809293270111084, -0.03402051329612732, 0.004911232274025679, -0.013369465246796608, 0.08942534774541855, 0.002449221210554242, -0.040108393877744675, 0.01434148009866476, -0.004141720477491617, 0.018758177757263184, 0.018331855535507202, 0.024539107456803322, -0.011928495950996876, -0.015466970391571522, -0.02638082019984722, -0.02339656464755535, -0.0014963910216465592, -0.02667071856558323, -0.06012848764657974, -0.05187488719820976, 0.04740703105926514, 0.06920062750577927, 0.00033466293825767934, -0.030473513528704643, 0.019252711907029152, 0.0537848137319088, 0.02414689026772976, -0.046554386615753174, 0.012891984544694424, 0.04160904884338379, 0.011527753435075283, 0.025408804416656494, -0.022339284420013428, -0.011570385657250881, -0.0030972310341894627, 0.002408720552921295, -0.050681184977293015, 0.005947194993495941, -0.05375070497393608, -0.03103625774383545, -0.01973019354045391, -0.08342273533344269, 0.047236502170562744, 0.01858764886856079, -0.009114769287407398, -0.046759020537137985, 0.05279574543237686, 0.00038155840593390167, 0.01834890805184841, -0.0020420835353434086, 0.023038452491164207, -0.003139863256365061, 0.022612130269408226, -0.041199781000614166, -0.02661955915391445, 0.008219492621719837, -0.04082461819052696, -0.021452534943819046, -0.009899201802909374, -0.02571575716137886, 0.00400956068187952, -0.031087417155504227, 0.001967477146536112, -0.0031654424965381622, 0.020037144422531128, 0.003934954293072224, 0.008287704549729824, 0.09038031101226807, 0.007865644991397858, 0.059139419347047806, 0.04341665655374527, -0.008492338471114635, 0.05589937046170235, -0.036663711071014404, -0.04689544439315796, 0.012243974022567272, 0.05351196601986885, -0.041199781000614166, 0.006620784290134907, -0.0652102455496788, -0.0322299599647522, -0.054978515952825546, -0.019116288051009178, -0.013275674544274807, -0.03495842218399048, 0.03816436603665352, -0.004497699439525604, 0.03601570054888725, -0.003321050200611353, -0.01172386109828949, -0.022117597982287407, -0.002747646765783429, 0.0565473809838295, -0.024470895528793335, -0.02962086908519268, 0.03673192486166954, -0.0001526766427559778, 0.000943237915635109, -0.04993085935711861, -0.05238647386431694, -0.02962086908519268, 0.01726604998111725, 0.03175247833132744, 0.014247688464820385, -0.08894786983728409, 0.046281542629003525, -0.033440716564655304, -0.043075598776340485, -0.014980963431298733, -0.04065408930182457, 0.012337765656411648, -0.029501497745513916, 0.04774808883666992, -0.003421235829591751, -0.042632222175598145, 0.06251589208841324, 0.039869654923677444, 0.054296400398015976, 0.013386517763137817, -0.008240808732807636, -0.00817259680479765, -0.015253809280693531, -0.03379882499575615, 0.005226710345596075, -0.10402262210845947, -0.027028828859329224, -0.02155485190451145, -0.0051584988832473755, -0.06432349979877472, 0.04965801164507866, -0.007929593324661255, -0.031616054475307465, -0.05003317818045616, -0.04566763713955879, 0.05716128274798393, -0.0016157611971721053, -0.04914642497897148, -0.024743741378188133, 0.0322299599647522, 0.002184901386499405, 0.044917311519384384, 0.032997339963912964, 0.021657168865203857, 0.007418006658554077, 0.007136634085327387, 0.01261913776397705, 0.03419104218482971, -0.009506985545158386, -0.016259929165244102, 0.045872271060943604, -0.022680342197418213, 0.0786479264497757, 0.022151703014969826, 0.012346291914582253, -0.005908825900405645, -0.03512895107269287, -0.014000422321259975, -0.0018758177757263184, 0.04870305210351944, 0.02644903026521206, 0.006518466863781214, -0.06357316672801971, 0.04133620485663414, 0.006420412566512823, -0.018672913312911987, 0.06289105117321014, 0.012721455655992031, 0.05787750706076622, 0.04611101374030113, -0.034821998327970505, -0.02000303938984871, 0.0010583449620753527, -0.05941226705908775, 0.06664269417524338, -0.03690245375037193, 0.011348697356879711, -0.012491241097450256, -0.02481195330619812, -0.053170908242464066, 0.007008737418800592, -0.001210755086503923, 0.04137030988931656, 0.05419408157467842, -0.06933704763650894, 0.042632222175598145, 0.06991684436798096, 0.059582795947790146, -0.07789760082960129, 0.08096712082624435, -0.0060409861616790295, 0.03127499669790268, -0.06248178705573082, 0.023737622424960136, 0.0011883731931447983, -0.012653243727982044, -0.00500502297654748, 0.0015582077903673053, 0.016882359981536865, -0.014759275130927563, 0.040517665445804596, 0.04870305210351944, 0.04222295433282852, 0.06524435430765152, -0.018229538574814796, -0.011212274432182312, -0.03405461832880974, -0.03898290544748306, 0.008748131804168224, 0.01566307805478573, 0.013488835655152798, -0.07673799991607666, -0.04877126216888428, 0.040756404399871826, -0.03792562708258629, 0.01880933716893196, -0.009668988175690174, -0.006889367010444403, -0.06019669771194458, -0.04819146543741226, 0.02939918078482151, -0.0044678570702672005, 0.033184923231601715, 0.022390443831682205, 0.035265374928712845, -0.07687442749738693, -0.010683635249733925, 0.12148477882146835, 0.01434148009866476, -0.010947954840958118, -0.0068339454010128975, -0.07100822776556015, -0.00312707363627851, 0.004156641662120819, 0.07435059547424316, 0.01193702220916748, 0.0688936710357666, 0.06544899195432663, -0.01742805354297161, 0.04914642497897148, 0.029450340196490288, 0.0353676937520504, 0.00836870539933443, -0.022936135530471802, 0.0449514165520668, -0.05351196601986885, -0.049760330468416214, -0.004305854439735413, -0.017300156876444817, -0.04553121328353882, -0.03419104218482971, -0.006416149437427521, -0.00752032408490777, 0.03809615597128868, 0.008586130104959011, -0.04938516765832901, 0.055933475494384766, -0.027642732486128807, -0.011067325249314308, -0.004141720477491617, -0.011561858467757702, -0.00592161575332284, -0.05559241771697998, 0.00827491469681263, -0.034770842641592026, -0.1112530454993248, -0.029996031895279884, 0.06787049770355225, -0.018553543835878372, 0.017095521092414856, 0.020531678572297096, -0.06442581862211227, 0.004165168385952711, -0.01722341775894165, -0.03952859714627266, 0.008338863030076027, 0.04116567596793175, 0.011485121212899685, 0.018076062202453613, -0.02661955915391445, 0.004523278679698706, -0.001057279179804027, 0.05702486261725426, 0.03347482159733772, 0.005427082069218159, 0.026363765820860863, 0.040995147079229355, 0.0018896732944995165, -0.007733485195785761, -0.027045881375670433, 0.03373061493039131, -0.028631800785660744, 0.009259718470275402, 0.010351103730499744, 0.03037119470536709, -0.02619323693215847, -0.04348486661911011, -0.004510489292442799, 0.015339073725044727, 0.037993837147951126, -0.0163451936095953, 0.028393059968948364, -0.024522054940462112, 0.02087273634970188, 0.02341361716389656, -0.03748225048184395, 0.003578975098207593, -0.030933940783143044, -0.06920062750577927, 0.004497699439525604, 0.023328352719545364, -0.010189101099967957, -0.027642732486128807, 0.000367702916264534, -0.005589084234088659, 0.0018630281556397676, -0.04478088766336441, -0.03257101774215698, -0.017530370503664017, -0.05586526542901993, 0.03332134708762169, 0.019832510501146317, -0.041233886033296585, -0.006160356104373932, 0.028631800785660744, -0.08042142540216446, 0.009472879581153393, 0.000840387714561075, 0.02733578160405159, 0.006390570197254419, -0.000799887056928128, 0.04409877210855484, 0.061901986598968506, -0.02573280967772007, -0.09297235310077667, 0.0628228411078453, 0.08369558304548264, -0.0020687286742031574, -0.00717074004933238, 0.06220893934369087, 0.03006424382328987, 0.02225401997566223, -0.09877033531665802, 0.01322451513260603, 0.009720146656036377, -0.02250981330871582, 0.001310940831899643, 0.08696973323822021, -0.03149668499827385, 0.04911231994628906 ]
9,481
asyncclick.formatting
write_dl
Writes a definition list into the buffer. This is how options and commands are usually formatted. :param rows: a list of two item tuples for the terms and values. :param col_max: the maximum width of the first column. :param col_spacing: the number of spaces between the first and second column.
def write_dl( self, rows: t.Sequence[t.Tuple[str, str]], col_max: int = 30, col_spacing: int = 2, ) -> None: """Writes a definition list into the buffer. This is how options and commands are usually formatted. :param rows: a list of two item tuples for the terms and values. :param col_max: the maximum width of the first column. :param col_spacing: the number of spaces between the first and second column. """ rows = list(rows) widths = measure_table(rows) if len(widths) != 2: raise TypeError("Expected two columns for definition list") first_col = min(widths[0], col_max) + col_spacing for first, second in iter_rows(rows, len(widths)): self.write(f"{'':>{self.current_indent}}{first}") if not second: self.write("\n") continue if term_len(first) <= first_col - col_spacing: self.write(" " * (first_col - term_len(first))) else: self.write("\n") self.write(" " * (first_col + self.current_indent)) text_width = max(self.width - first_col - 2, 10) wrapped_text = wrap_text(second, text_width, preserve_paragraphs=True) lines = wrapped_text.splitlines() if lines: self.write(f"{lines[0]}\n") for line in lines[1:]: self.write(f"{'':>{first_col + self.current_indent}}{line}\n") else: self.write("\n")
(self, rows: Sequence[Tuple[str, str]], col_max: int = 30, col_spacing: int = 2) -> NoneType
[ 0.016190335154533386, 0.02335365302860737, -0.014167646877467632, -0.05723588168621063, 0.0005984152667224407, 0.009203670546412468, -0.015086247585713863, -0.025173187255859375, -0.09567578136920929, 0.019679250195622444, -0.009247834794223309, 0.03151506558060646, -0.040595076978206635, 0.008492638356983662, -0.0016947739059105515, 0.028370624408125877, 0.04780256003141403, -0.019590923562645912, 0.03269864618778229, 0.04804987460374832, 0.0262154471129179, 0.0077727739699184895, -0.008298319764435291, -0.005763335153460503, 0.016596639528870583, -0.03632005304098129, 0.004813820123672485, 0.016102008521556854, 0.01719726249575615, 0.005069968290627003, -0.023918945342302322, -0.015792863443493843, 0.022876687347888947, 0.014838932082057, -0.004641582723706961, -0.022629370912909508, 0.041266363114118576, 0.00669960118830204, -0.01853100024163723, -0.03798060119152069, 0.017055939882993698, -0.017276756465435028, 0.0540914386510849, -0.012445271015167236, -0.06673986464738846, 0.018884306773543358, 0.027893658727407455, 0.02587980404496193, -0.026816070079803467, -0.033935222774744034, 0.014185312204062939, -0.04388084262609482, 0.02091582864522934, -0.01245410367846489, -0.0371679924428463, 0.0073178899474442005, 0.010122271254658699, 0.008938689716160297, 0.018954969942569733, -0.024007271975278854, -0.016322825103998184, 0.051300305873155594, 0.03974713757634163, 0.009936784394085407, 0.0121361268684268, 0.04278558865189552, 0.015042084269225597, -0.02943054772913456, -0.007878766395151615, 0.03573709353804588, -0.014167646877467632, -0.00033895476371981204, 0.03404121473431587, 0.057907164096832275, 0.01853100024163723, -0.012507099658250809, -0.06363075226545334, -0.04377485066652298, 0.014565118588507175, -0.06235884502530098, -0.02549116499722004, 0.013328541070222855, 0.03632005304098129, -0.010325423441827297, 0.032221682369709015, -0.006253549829125404, 0.021922755986452103, 0.08140213787555695, 0.03872254490852356, 0.009512815624475479, -0.04649531841278076, 0.023901280015707016, -0.018080532550811768, 0.006191721186041832, -0.06433737277984619, -0.022647036239504814, -0.0018239520723000169, -0.031497400254011154, 0.024113263934850693, 0.033776234835386276, 0.022841356694698334, 0.007825770415365696, 0.015854692086577415, -0.008810616098344326, -0.016932280734181404, -0.07730376720428467, -0.04508208855986595, -0.0004256256215739995, -0.002161802724003792, -0.035330791026353836, -0.02826463244855404, 0.05614062771201134, 0.07624384760856628, -0.024060267955064774, 0.05218357592821121, -0.007869933731853962, -0.023212328553199768, -0.018901972100138664, 0.01575753279030323, 0.0014220642624422908, 0.004210988525301218, -0.07468929141759872, -0.05175960808992386, -0.02349497564136982, 0.017047107219696045, 0.014909593388438225, -0.04154900833964348, 0.013620019890367985, 0.05115898326039314, -0.014459125697612762, 0.005966487340629101, -0.024448907002806664, 0.058189813047647476, -0.0004744814650621265, 0.0341295450925827, -0.04320955649018288, 0.02072150819003582, -0.009230168536305428, -0.0038046843837946653, -0.009300830774009228, 0.006810009945183992, -0.033935222774744034, -0.005224540829658508, 0.017691893503069878, -0.02593280002474785, 0.0299605093896389, 0.020050223916769028, -0.007649116218090057, 0.03073778748512268, 0.01625216379761696, -0.0343945249915123, -0.01960858888924122, -0.01277208048850298, 0.012498266994953156, -0.005913490895181894, 0.04232628643512726, -0.0702022835612297, -0.046813298016786575, -0.00503463763743639, 0.007242811843752861, 0.01298406533896923, -0.08168479055166245, 0.014626947231590748, 0.0488271526992321, -0.00041348065133206546, 0.04359819367527962, -0.07278142869472504, -0.03282230347394943, 0.02374229021370411, 0.011314685456454754, 0.03702666983008385, -0.03306961804628372, 0.007114737760275602, -0.01308122556656599, -0.06168755888938904, 0.02116314321756363, 0.0023517056833952665, 0.021269135177135468, -0.01863699220120907, -0.057412534952163696, 0.013319708406925201, -0.0024223672226071358, 0.011888811364769936, 0.027611013501882553, 0.0031311912462115288, 0.011959472671151161, -0.019290611147880554, -0.02693972736597061, 0.012047799304127693, -0.003493331838399172, -0.04116037115454674, -0.03527779504656792, 0.02460789494216442, -0.028229301795363426, -0.05168894678354263, 0.009256667457520962, 0.01886664144694805, 0.019679250195622444, 0.06055697426199913, -0.06483200192451477, 0.002393661066889763, 0.026780739426612854, 0.002294293139129877, -0.026639416813850403, 0.04130169376730919, -0.0016241122502833605, 0.021286800503730774, -0.05783650279045105, -0.08331000059843063, 0.005184793379157782, 0.021675439551472664, 0.01863699220120907, -0.027928989380598068, -0.04140768572688103, 0.030119499191641808, 0.0013635476352646947, -0.05836646631360054, 0.04338620975613594, -0.06105160713195801, -0.033140283077955246, 0.03534845635294914, -0.022823691368103027, 0.007220730185508728, 0.019237615168094635, 0.03469483554363251, -0.03365257754921913, 0.052890192717313766, -0.02188742533326149, 0.025809142738580704, 0.009998613968491554, -0.036744020879268646, 0.02671007812023163, -0.020986489951610565, 0.035383787006139755, 0.01680862344801426, 0.006015066988766193, -0.026833735406398773, 0.011341183446347713, -0.005136213731020689, 0.008815032429993153, -0.05554000288248062, -0.0012178082251921296, 0.010758225806057453, -0.022541044279932976, 0.005630844738334417, 0.04419881850481033, 0.000027619431421044283, 0.004650415387004614, -0.059850357472896576, 0.006770262494683266, -0.03734464570879936, -0.014671110548079014, 0.011959472671151161, 0.006964582018554211, 0.054303426295518875, 0.00574125349521637, -0.023848284035921097, -0.029783856123685837, 0.019873568788170815, -0.04889781400561333, 0.008713455870747566, -0.0195555929094553, -0.04568271338939667, 0.03960581496357918, 0.06960165500640869, 0.038934532552957535, 0.003906260710209608, -0.019626254215836525, -0.010634567588567734, 0.0069115860387682915, -0.011517837643623352, 0.08041287958621979, -0.059355728328228, -0.03312261775135994, 0.013487529009580612, 0.045117419213056564, 0.057765841484069824, -0.03653203696012497, -0.029271559789776802, 0.014141148887574673, 0.05387945473194122, -0.03670869022607803, -0.018124695867300034, 0.043986834585666656, -0.0011570834321901202, 0.03370557352900505, -0.06871838867664337, -0.01216262485831976, -0.016605472192168236, -0.0026453929021954536, 0.01847800426185131, 0.059214405715465546, 0.05840179696679115, 0.06582126021385193, 0.08316867798566818, 0.012197955511510372, 0.04960443079471588, -0.0004780697636306286, 0.025420503690838814, -0.03437685966491699, -0.03185070678591728, -0.02466089092195034, 0.1553141474723816, 0.03843989968299866, -0.04483477398753166, -0.06974297761917114, 0.00933616142719984, -0.038651883602142334, 0.029783856123685837, -0.0502050518989563, 0.022382056340575218, 0.012127294205129147, 0.032133352011442184, 0.03826324641704559, -0.010943712666630745, 0.053773462772369385, -0.07977692782878876, -0.008497054688632488, -0.006677519530057907, 0.011641495861113071, -0.04091305658221245, -0.002479779766872525, -0.0077948556281626225, -0.02807031385600567, 0.06211153045296669, -0.05062902346253395, 0.047837890684604645, 0.013045893982052803, 0.006726099178195, 0.013319708406925201, 0.01853100024163723, -0.009874955751001835, 0.015360061079263687, 0.03370557352900505, 0.027981985360383987, 0.0016848370432853699, 0.023035675287246704, 0.004650415387004614, -0.018354345113039017, -0.024890542030334473, 0.05373813211917877, -0.003385131247341633, 0.006200553849339485, 0.018372010439634323, 0.009874955751001835, -0.0029832436703145504, 0.04207897186279297, 0.016799790784716606, 0.03372323885560036, 0.04207897186279297, 0.08507654070854187, 0.022629370912909508, -0.00022302562138065696, 0.020898163318634033, 0.045894697308540344, -0.010157601907849312, -0.01471527386456728, -0.03653203696012497, -0.060486312955617905, -0.0030141579918563366, 0.015201072208583355, -0.023759957402944565, -0.005357031244784594, 0.07836369425058365, -0.008077502250671387, 0.012895738705992699, -0.04819119721651077, -0.010873050428926945, 0.06366608291864395, 0.05458607152104378, -0.018080532550811768, -0.003526454558596015, 0.09857290238142014, -0.002846336690708995, 0.004968392197042704, 0.021092481911182404, -0.05652926489710808, 0.036019742488861084, -0.03257498890161514, -0.05886109545826912, -0.014467958360910416, -0.033051952719688416, 0.060627635568380356, -0.01371717918664217, -0.012551262974739075, -0.04780256003141403, 0.013858502730727196, -0.0039901710115373135, -0.05052303150296211, 0.02082750014960766, 0.0313560776412487, 0.047201935201883316, 0.0012122876942157745, 0.04335087910294533, -0.026692412793636322, -0.0063992892391979694, -0.03670869022607803, 0.010184099897742271, -0.0427149273455143, -0.002151865977793932, -0.04914512857794762, -0.005427692551165819, -0.0011212005047127604, 0.01697644405066967, -0.0818261131644249, -0.029501210898160934, 0.0663158968091011, 0.04801454395055771, 0.011146863922476768, 0.04836785048246384, 0.010881883092224598, 0.0050611356273293495, -0.02519085444509983, 0.015280567109584808, 0.03414721041917801, 0.00037538964534178376, -0.0629594698548317, 0.015854692086577415, 0.03819258511066437, -0.021286800503730774, 0.004690162371844053, -0.01819535717368126, 0.05331416428089142, 0.04889781400561333, -0.005511603318154812, -0.002612270414829254, -0.0823914036154747, 0.06030965968966484, 0.021286800503730774, -0.08966954797506332, 0.02135746367275715, 0.00933616142719984, 0.02557949163019657, -0.04504675790667534, -0.010343088768422604, -0.017541738227009773, 0.03359958156943321, -0.028423620387911797, 0.037238653749227524, -0.02335365302860737, 0.04515274986624718, -0.022311395034193993, -0.044870104640722275, 0.00600623432546854, 0.0026851401198655367, 0.012118461541831493, 0.02515552192926407, -0.0013790049124509096, 0.015386559069156647, 0.0260741226375103, 0.004968392197042704, 0.08048354089260101, 0.0388285368680954, -0.028370624408125877, 0.008033338002860546, -0.07055559009313583, 0.03345825895667076, -0.06292413920164108, -0.01709127053618431, 0.026533422991633415, 0.08995219320058823, 0.002440032782033086, 0.07108554989099503, 0.00881944876164198, 0.016985276713967323, -0.03483615815639496, -0.03600207716226578, -0.01510391291230917, -0.012878073379397392, -0.03034914843738079, -0.007008745335042477, 0.018160026520490646, 0.0069115860387682915, 0.010881883092224598, -0.012462936341762543, -0.057271212339401245, 0.046036019921302795, 0.015545547939836979, -0.08097817003726959, -0.005069968290627003, 0.00733113894239068, -0.07140352576971054, -0.01664080284535885, -0.03488915413618088, -0.0018283684039488435, 0.04543539509177208, -0.007503376808017492, -0.044092826545238495, 0.008558884263038635, -0.015510217286646366, 0.002771258819848299, -0.009574644267559052, 0.01004277728497982, -0.08408728241920471, 0.06182888150215149, 0.013408035039901733, 0.037768613547086716, -0.02402493730187416, -0.032468996942043304, -0.04709594324231148, -0.0009329536696895957, -0.054798055440187454, -0.054444748908281326, -0.049639761447906494, -0.0016760043799877167, -0.027646344155073166, 0.05758918821811676, 0.013204882852733135, -0.06921301782131195, -0.047837890684604645, -0.01369068119674921, -0.03381156548857689, -0.02285902202129364, 0.021198473870754242, -0.03001350723206997, -0.012339278124272823, -0.040877725929021835, -0.01783321611583233, 0.019590923562645912, 0.02374229021370411, -0.012489434331655502, 0.04063040763139725, -0.04995773732662201, -0.038934532552957535, -0.03269864618778229, 0.05349081754684448, 0.03345825895667076, 0.0012277449714019895, 0.04497609660029411, -0.013514026999473572, 0.009115343913435936, 0.003042864380404353, 0.038298577070236206, 0.00970713421702385, -0.007741859648376703, 0.0443754717707634, -0.016296327114105225, 0.021375128999352455, -0.003301220713183284, -0.02951887622475624, 0.00833806674927473, 0.018230687826871872, -0.04529407247900963, -0.05218357592821121, -0.013072392903268337, 0.011950640007853508, 0.029200898483395576, -0.0301018338650465, 0.07829303294420242, -0.0069336676970124245, -0.05490404739975929, 0.015324730426073074, 0.009548146277666092, -0.06384273618459702, -0.08479389548301697, 0.038051262497901917, 0.01692344807088375, -0.02135746367275715, 0.05349081754684448, 0.0013547149719670415, 0.0008976229000836611, 0.01374367717653513, 0.004738742485642433, -0.00536144757643342, 0.10274194180965424, 0.03695600852370262, 0.018901972100138664, -0.025561826303601265, -0.006315378937870264, 0.03220401704311371, -0.001705814735032618, 0.035684097558259964, 0.02111014723777771, -0.023406649008393288, -0.009327328763902187, -0.08175545185804367, -0.013531692326068878, 0.02490820735692978, 0.004584169946610928, -0.05758918821811676, -0.06433737277984619, 0.05684724077582359, -0.05758918821811676, -0.036461375653743744, 0.03741530701518059, -0.00495955953374505, -0.020315203815698624, 0.014114650897681713, 0.024395911023020744, 0.007260477636009455, -0.038545891642570496, 0.03868721425533295, -0.0504877008497715, -0.03015482984483242, 0.03453584760427475, 0.029006578028202057, -0.04055974632501602, 0.0060680634342134, -0.02918323315680027, 0.022346725687384605, -0.11115066707134247, 0.02111014723777771, -0.07426532357931137, 0.020368199795484543, 0.03677935153245926, -0.001978524262085557, 0.04568271338939667, -0.07511325925588608, -0.026286108419299126, 0.010555073618888855, -0.03520713374018669, 0.07249878346920013, -0.014635779894888401, -0.06112226843833923, -0.08217941969633102, -0.05200692266225815, 0.04359819367527962, -0.0008893422200344503, 0.03667335957288742, -0.042538270354270935, 0.004040959291160107, 0.021569447591900826, -0.017939208075404167, -0.06105160713195801, -0.048332519829273224, 0.026816070079803467, -0.07581987977027893, 0.010616902261972427, 0.03935850039124489, -0.004999306984245777, -0.01808936521410942, -0.0062623824924230576, 0.020315203815698624, 0.013726011849939823, -0.028370624408125877, 0.035136472433805466, -0.012657255865633488, -0.06649255007505417, 0.037909939885139465, -0.0011758528416976333, 0.06638655811548233, 0.03702666983008385, 0.005317283794283867, 0.010369586758315563, 0.004323605448007584, 0.04108970984816551, -0.006801177281886339, -0.0023207913618534803, -0.01038725208491087, -0.04225562512874603, -0.042820919305086136, 0.04723726585507393, -0.0024267835542559624, -0.030914440751075745, 0.03706200048327446, -0.036355383694171906, -0.007127986755222082, -0.010219431482255459, 0.037521298974752426, -0.0002801621158141643, 0.05734187364578247, -0.05228957161307335, 0.02835295908153057, -0.08196743577718735, -0.001863699173554778, -0.0518656000494957, 0.04532940313220024, 0.052077583968639374, -0.01783321611583233, -0.03365257754921913, 0.0121361268684268, -0.0343945249915123, 0.018654657527804375, -0.016985276713967323, 0.005842829588800669, -0.05744786560535431, 0.015183406881988049, 0.0396764762699604, 0.050275713205337524, -0.0067393481731414795, -0.008691374212503433, -0.006288880482316017, 0.028635606169700623, -0.04352753236889839, -0.023671628907322884, 0.06889504194259644, -0.01452095527201891, 0.014847764745354652, -0.03868721425533295, -0.031002769246697426, -0.041619669646024704, 0.0056396774016320705, -0.0007281455327756703, -0.0006072479882277548, 0.03501281142234802, -0.04872116073966026, 0.022894352674484253, -0.0368853434920311, -0.004191115032881498, 0.04183165729045868, 0.052996184676885605, 0.011473674327135086, 0.03354658558964729, 0.045117419213056564, -0.00608131242915988, 0.0014607073972001672, 0.015307065099477768, 0.01384083740413189, -0.05062902346253395, 0.02130446583032608, 0.054303426295518875, 0.12167923897504807, -0.006558278109878302, 0.006849756930023432, -0.004588586278259754, -0.014600449241697788, 0.013355039060115814, 0.024925872683525085, 0.0006663165986537933, -0.01667613349854946, -0.0008639482548460364, 0.029695529490709305, 0.002788924379274249, -0.034606508910655975, -0.04787322133779526, 0.015360061079263687, -0.11185728013515472, 0.05720055103302002, 0.020739173516631126, -0.038793206214904785, -0.003718565683811903, 0.02135746367275715, -0.013390369713306427, 0.027805332094430923, -0.020597850903868675, 0.031833041459321976, 0.007869933731853962, 0.022541044279932976, -0.0017786844400689006, -0.010908381082117558, -0.05257221683859825, 0.06847107410430908, 0.06359542161226273, 0.043704189360141754, -0.02457256428897381, 0.025332177057862282, -0.02587980404496193, 0.052748870104551315, -0.0187253188341856, 0.05137097090482712, 0.06359542161226273, 0.011765153147280216, -0.030755452811717987, 0.03229234367609024, 0.02457256428897381, -0.04490543529391289, 0.05052303150296211, -0.03653203696012497, -0.02105715125799179, -0.037874605506658554, 0.013098890893161297, 0.018884306773543358, 0.025915134698152542, 0.051194313913583755, 0.031638722866773605, -0.015209904871881008, -0.012551262974739075, -0.01337270438671112 ]
9,482
asyncclick.formatting
write_heading
Writes a heading into the buffer.
def write_heading(self, heading: str) -> None: """Writes a heading into the buffer.""" self.write(f"{'':>{self.current_indent}}{heading}:\n")
(self, heading: str) -> NoneType
[ -0.05120771378278732, -0.002599077532067895, -0.08135364949703217, -0.01693185418844223, 0.02683190070092678, -0.037615127861499786, -0.03209734708070755, 0.08162280917167664, -0.08357422053813934, -0.019278595224022865, -0.007914990186691284, -0.0826321616768837, 0.036033812910318375, 0.014635582454502583, -0.04992920532822609, 0.003299314295873046, 0.09023593366146088, 0.015106611885130405, -0.030230047181248665, -0.0024077214766293764, 0.04784321412444115, 0.03451978787779808, 0.03186183050274849, -0.007372464053332806, -0.04999649524688721, 0.02144869789481163, -0.013113144785165787, 0.014189785346388817, 0.03801886737346649, -0.028581440448760986, -0.04451235756278038, -0.07967139780521393, -0.008373402990400791, 0.020876731723546982, -0.026074888184666634, 0.008171533234417439, 0.012187907472252846, -0.05201519653201103, -0.001694867736659944, -0.025502922013401985, -0.0030974443070590496, 0.0918508917093277, -0.015131846070289612, -0.019732801243662834, -0.058676909655332565, 0.022962722927331924, 0.09857989847660065, 0.03160949423909187, 0.05561521276831627, 0.037648774683475494, -0.005778531543910503, 0.021616922691464424, -0.03539455682039261, -0.055211473256349564, -0.05585072562098503, -0.026932835578918457, 0.056254468858242035, -0.09528268873691559, -0.05177967995405197, -0.002731554675847292, -0.011144911870360374, -0.003221510211005807, 0.01837017945945263, -0.0027715081814676523, -0.01341595035046339, -0.035529136657714844, -0.012389777228236198, 0.02168421261012554, 0.014181374572217464, -0.019917849451303482, 0.03117210790514946, -0.0005872106994502246, 0.027000125497579575, 0.022609451785683632, -0.049289949238300323, 0.006741620134562254, -0.10268458724021912, -0.0015529277734458447, 0.005261239595711231, -0.05430305749177933, -0.025822550058364868, -0.0101860286667943, 0.006493488326668739, 0.010295375250279903, 0.0037619334179908037, 0.019615044817328453, 0.004386468790471554, -0.011153322644531727, -0.015005677007138729, -0.027117883786559105, -0.033964645117521286, 0.0030574908014386892, -0.025772081688046455, 0.006417786702513695, 0.026646852493286133, -0.014744928106665611, -0.0006944541819393635, -0.024207590147852898, -0.06395917385816574, 0.04447871074080467, -0.062478795647621155, 0.020237477496266365, 0.04454600065946579, 0.009294435381889343, -0.0438058115541935, -0.06204140931367874, -0.011161734350025654, 0.000327776069752872, 0.04077776148915291, 0.02782442793250084, -0.00318155693821609, -0.03060014173388481, -0.02551974542438984, -0.04582451283931732, 0.07038537412881851, 0.024964602664113045, 0.02698330394923687, -0.006127598695456982, -0.01260846946388483, -0.013054266571998596, 0.07408632338047028, -0.07152930647134781, 0.04999649524688721, -0.03855719044804573, 0.006871994584798813, -0.024510394781827927, -0.011506595648825169, 0.04875162988901138, 0.06116664037108421, 0.005904700141400099, -0.03177771717309952, 0.027302930131554604, 0.04121514409780502, -0.04962639883160591, 0.08895742148160934, 0.04501703009009361, -0.03600016608834267, -0.0008689876995049417, -0.009294435381889343, 0.04939088225364685, 0.014812218025326729, -0.12092018872499466, -0.028934713453054428, -0.005833204835653305, 0.02832910418510437, 0.01852158084511757, -0.019345885142683983, -0.04057588800787926, 0.00786872860044241, 0.02405618689954281, 0.0030238458421081305, 0.006787882186472416, -0.010362665168941021, 0.03206370025873184, -0.0027904335875064135, 0.019480464980006218, -0.023013191297650337, -0.02506553754210472, -0.012600058689713478, 0.02324870601296425, 0.04124879091978073, -0.04511796683073044, 0.033308565616607666, 0.0545722171664238, -0.036067456007003784, 0.023501044139266014, -0.05561521276831627, 0.0015918298158794641, 0.013870158232748508, -0.047910504043102264, 0.045723576098680496, -0.017596343532204628, 0.01986738294363022, 0.04424319788813591, 0.010337430983781815, 0.031458090990781784, -0.01402997225522995, 0.022087953984737396, 0.004958434496074915, -0.046800218522548676, 0.022121598944067955, -0.033611372113227844, -0.0295907910913229, 0.02668049745261669, -0.015316893346607685, -0.004971051122993231, -0.0037198772188276052, -0.006014046724885702, 0.03443567454814911, 0.0036883349530398846, -0.03670671209692955, -0.016847742721438408, 0.0002846683782991022, 0.02725246362388134, 0.028833778575062752, 0.0018063167808577418, 0.06096477061510086, -0.016023438423871994, 0.03502446040511131, -0.006678535602986813, 0.008730881847441196, 0.0396001823246479, -0.015670165419578552, -0.00735984742641449, 0.08370880037546158, 0.024241235107183456, 0.012986976653337479, -0.039263732731342316, -0.05443763732910156, -0.023669268935918808, -0.03209734708070755, -0.011885101906955242, -0.0003238332865294069, 0.006417786702513695, 0.015619698911905289, -0.01174211036413908, -0.059820838272571564, 0.0060308692045509815, 0.030465561896562576, -0.014980443753302097, 0.01383651327341795, -0.01235613226890564, 0.03986934572458267, -0.0099925696849823, -0.0007685783202759922, -0.011203790083527565, 0.05373109132051468, -0.05874419957399368, -0.030970238149166107, 0.011212201789021492, 0.015527174808084965, -0.01833653450012207, -0.02898518182337284, 0.046060025691986084, -0.05255351588129997, -0.049794625490903854, -0.0765087679028511, -0.02725246362388134, -0.047103021293878555, -0.02716835029423237, -0.03828802704811096, 0.03485623747110367, 0.056018952280282974, 0.07442277669906616, -0.03009546734392643, -0.033998288214206696, 0.002472908701747656, 0.01476175058633089, -0.024998247623443604, 0.020977668464183807, -0.08592937141656876, 0.009344902820885181, -0.014130907133221626, -0.006257973145693541, -0.008142094127833843, -0.025031892582774162, -0.037345968186855316, 0.015493529848754406, -0.025856195017695427, 0.027656203135848045, -0.034149691462516785, -0.014257075265049934, -0.020506637170910835, -0.0065818061120808125, 0.0864676907658577, 0.04912172257900238, -0.016284188255667686, 0.016805686056613922, -0.010118738748133183, -0.01471969485282898, 0.024813199415802956, 0.030970238149166107, -0.04454600065946579, -0.02641133777797222, -0.00014916833606548607, -0.0020670657977461815, -0.013272958807647228, 0.03885999321937561, -0.049559108912944794, -0.01879074238240719, 0.0864676907658577, -0.026461806148290634, -0.005606100894510746, 0.042796459048986435, -0.012061738409101963, 0.018319711089134216, 0.008983219042420387, 0.010228085331618786, 0.00912621058523655, -0.007090687286108732, -0.018672984093427658, 0.05470679700374603, -0.00220585148781538, 0.05702830106019974, 0.05336099490523338, 0.045992735773324966, -0.03966747596859932, -0.014206607826054096, 0.03174407407641411, -0.023820672184228897, 0.03620203584432602, 0.015838392078876495, 0.02698330394923687, -0.05702830106019974, -0.08074803650379181, -0.04905443266034126, -0.01262529194355011, 0.04777592420578003, -0.004722919315099716, -0.0211458932608366, -0.024762732908129692, -0.008596302010118961, 0.04935723915696144, 0.049491818994283676, 0.024695441126823425, 0.006762648466974497, -0.030280515551567078, 0.01105238776654005, 0.029658081009984016, 0.02620946802198887, -0.03063378669321537, -0.0657423585653305, -0.021701036021113396, -0.024073008447885513, 0.015316893346607685, -0.0530581921339035, 0.028379570692777634, 0.020237477496266365, 0.018773918971419334, 0.026613207533955574, -0.040340375155210495, 0.011203790083527565, 0.019766446202993393, 0.011632764711976051, -0.043906744569540024, -0.0141224954277277, -0.030028177425265312, 0.024628151208162308, 0.014593525789678097, 0.000308587885228917, 0.01929541677236557, -0.00606451416388154, 0.016048673540353775, 0.004138336982578039, 0.04622825235128403, -0.0338132418692112, 0.007040219847112894, 0.024695441126823425, 0.02509918250143528, 0.05484137684106827, 0.014290720224380493, 0.006884611677378416, 0.07025079429149628, -0.012213140726089478, 0.04713666811585426, -0.030802011489868164, -0.014946798793971539, -0.06116664037108421, -0.04272916913032532, -0.010000981390476227, 0.01233930978924036, 0.02186926081776619, 0.011372015811502934, 0.020506637170910835, -0.01657017134130001, -0.026730965822935104, -0.0194131750613451, 0.03973476588726044, 0.03637026250362396, 0.010539301671087742, 0.02437581494450569, -0.044377777725458145, 0.003143706126138568, 0.014938387088477612, -0.020086074247956276, 0.028160879388451576, 0.06506945937871933, 0.012919685803353786, -0.03213099017739296, -0.07152930647134781, 0.022054309025406837, 0.0022226739674806595, 0.021970195695757866, 0.02025429904460907, -0.08269944787025452, 0.0037619334179908037, -0.012389777228236198, -0.0480450838804245, -0.008873873390257359, 0.03502446040511131, 0.019581399857997894, -0.012389777228236198, 0.006871994584798813, -0.015451474115252495, -0.054370347410440445, -0.00912621058523655, -0.0034570253919810057, -0.024813199415802956, -0.018286066129803658, 0.004676657263189554, 0.07697979360818863, -0.06103206053376198, -0.03310669586062431, -0.002418235642835498, 0.009294435381889343, -0.00011769184493459761, 0.020859910175204277, 0.008747704327106476, 0.019850559532642365, -0.008171533234417439, 0.006838349625468254, 0.013087911531329155, -0.030852479860186577, 0.05285632237792015, 0.07395174354314804, 0.03159267082810402, -0.005950962193310261, -0.03902821987867355, -0.011043976992368698, 0.04784321412444115, -0.030919769778847694, -0.02575526013970375, 0.0040773553773760796, 0.0864676907658577, 0.018286066129803658, 0.009874812327325344, -0.030465561896562576, 0.012002859264612198, 0.0580376535654068, -0.04750676453113556, 0.024123476818203926, 0.005900494754314423, -0.03781699761748314, 0.026579562574625015, -0.0002661373291630298, 0.008179944939911366, 0.01627577655017376, -0.0004570990859065205, -0.011346781626343727, 0.030835658311843872, 0.08182468265295029, -0.017848681658506393, -0.03643755242228508, 0.04272916913032532, -0.01741129532456398, 0.02432534657418728, 0.018925322219729424, -0.015173902735114098, -0.009227145463228226, 0.06254608184099197, 0.05665820837020874, 0.023231884464621544, 0.0011144911404699087, -0.05026565492153168, 0.01627577655017376, -0.09198547154664993, -0.017663633450865746, -0.043536651879549026, -0.0036105308681726456, -0.045723576098680496, 0.022087953984737396, 0.1080005019903183, 0.036572132259607315, 0.04030672833323479, 0.01064864732325077, -0.06204140931367874, 0.024762732908129692, -0.0021133276168257, -0.031458090990781784, -0.01639353483915329, 0.0041572623886168, 0.023416930809617043, -0.01124584674835205, 0.024493571370840073, 0.008402843028306961, 0.006392552983015776, 0.0041299257427453995, 0.011363604106009007, -0.0649348795413971, 0.029876774176955223, -0.02779078297317028, -0.03462072089314461, -0.027656203135848045, -0.008167327381670475, 0.06483394652605057, 0.08290132135152817, 0.022626273334026337, 0.0017705690115690231, 0.04797779396176338, -0.027185173705220222, -0.011372015811502934, 0.004638806451112032, -0.01752905361354351, -0.06157037988305092, 0.05282267555594444, -0.007696297485381365, -0.007738353684544563, 0.04774227738380432, -0.06829938292503357, -0.031037528067827225, -0.030970238149166107, -0.0317104272544384, 0.006707975175231695, -0.0480450838804245, 0.011313136667013168, -0.021431874483823776, 0.040878694504499435, -0.021818792447447777, -0.014114084653556347, 0.018151486292481422, 0.012053326703608036, 0.0688040554523468, -0.05184696987271309, 0.01341595035046339, -0.008285085670650005, 0.004533665720373392, -0.12159308791160583, 0.012877630069851875, 0.052990902215242386, -0.009563595987856388, 0.019497286528348923, -0.00608133664354682, 0.04131608083844185, -0.07200033217668533, 0.0055640446953475475, 0.026158999651670456, 0.00636311387643218, -0.003545343643054366, -0.0033581932075321674, 0.016746805980801582, -0.06039280444383621, 0.04101327434182167, 0.018286066129803658, 0.008781349286437035, 0.011027154512703419, 0.041955336928367615, 0.011943981051445007, -0.005349557381123304, -0.024207590147852898, -0.005635540001094341, 0.029203874990344048, -0.025317875668406487, -0.027117883786559105, -0.06671806424856186, -0.01579633541405201, 0.027151528745889664, -0.03815344721078873, -0.08068075031042099, -0.031155284494161606, 0.018824387341737747, -0.05120771378278732, -0.07603773474693298, -0.05272173881530762, -0.0008663591579534113, -0.05218341946601868, -0.00007885550439823419, -0.01618325337767601, -0.006438815034925938, 0.05854232981801033, 0.0019156631315127015, 0.007267323322594166, 0.0033560902811586857, 0.01749540865421295, -0.015426239930093288, 0.035764653235673904, -0.0019671821501106024, 0.002420338336378336, -0.016561759635806084, 0.030987059697508812, 0.030802011489868164, 0.037648774683475494, 0.07274052500724792, 0.05040023475885391, -0.01937953010201454, -0.04861705005168915, -0.0147028723731637, 0.007742559537291527, 0.1183631643652916, 0.017243070527911186, 0.013129967264831066, -0.027050593867897987, 0.008608918637037277, -0.023702913895249367, -0.05780213698744774, -0.007145360112190247, -0.0010913602309301496, -0.045218903571367264, -0.002832489786669612, -0.02674778737127781, 0.01606549508869648, -0.08882284164428711, -0.02509918250143528, 0.05315912514925003, -0.08882284164428711, 0.0221047755330801, 0.051645100116729736, 0.04750676453113556, -0.049559108912944794, -0.01154865138232708, 0.0028009475208818913, -0.015712222084403038, 0.027000125497579575, -0.04989555850625038, 0.12711086869239807, 0.02671414241194725, 0.06046009436249733, -0.02294590137898922, 0.0026411337312310934, -0.03643755242228508, -0.00519815506413579, -0.043906744569540024, 0.019043078646063805, -0.01262529194355011, -0.0024581889156252146, -0.0365048423409462, 0.032349683344364166, 0.06543955951929092, -0.05019836500287056, 0.02755526825785637, 0.032686132937669754, 0.006333674304187298, -0.020153364166617393, -0.07637418806552887, -0.0075028385035693645, -0.05450492724776268, -0.006014046724885702, -0.017428118735551834, -0.029960887506604195, 0.014004738070070744, -0.06924144178628922, -0.021768325939774513, 0.002361459657549858, -0.0415179505944252, -0.02797583118081093, 0.018016906455159187, 0.057633914053440094, -0.06476665288209915, -0.015872037038207054, -0.015064556151628494, -0.04000392556190491, 0.001952462363988161, -0.012196318246424198, 0.019547754898667336, -0.015459884889423847, 0.015981383621692657, -0.01627577655017376, -0.005038341041654348, 0.002441366435959935, 0.022777676582336426, -0.03174407407641411, -0.05686007812619209, -0.0027820223476737738, 0.013491651974618435, 0.037917934358119965, 0.037345968186855316, 0.04202262684702873, 0.006455637514591217, -0.004283430986106396, 0.022188888862729073, -0.021549632772803307, 0.005782737396657467, -0.018403824418783188, 0.02279449813067913, -0.016015028581023216, 0.0572638176381588, -0.0032614637166261673, -0.030650610104203224, -0.03420015797019005, -0.015872037038207054, -0.04212355986237526, 0.0015287454007193446, 0.022693563252687454, 0.022121598944067955, -0.023820672184228897, -0.01154865138232708, -0.02375338226556778, 0.02309730276465416, -0.00550516601651907, 0.0880153626203537, -0.045454416424036026, -0.01887485384941101, -0.013786045834422112, 0.026798255741596222, -0.08370880037546158, 0.03771606460213661, 0.0372786782681942, -0.016284188255667686, -0.004214038141071796, -0.030011354014277458, -0.03389735519886017, -0.0008532165666110814, -0.04639647901058197, -0.012482301332056522, 0.06358908116817474, 0.02898518182337284, -0.020691685378551483, 0.007553305942565203, -0.01280192844569683, 0.014181374572217464, -0.012541179545223713, 0.055144183337688446, 0.023669268935918808, 0.015005677007138729, 0.00018885893223341554, -0.00220585148781538, -0.00018885893223341554, 0.05941709876060486, -0.020658040419220924, -0.006661713123321533, -0.017360828816890717, 0.010833695530891418, 0.0396001823246479, 0.0426618792116642, 0.03724503144621849, 0.03231603652238846, -0.0011281594634056091, 0.003103752853348851, -0.05561521276831627, 0.03478894755244255, 0.025536566972732544, -0.010135561227798462, 0.016141196712851524, 0.03724503144621849, -0.03179454058408737, -0.01926177181303501, -0.03485623747110367, -0.014442123472690582, 0.044916097074747086, 0.0032467441633343697, 0.03539455682039261, 0.011296314187347889, 0.011128089390695095, -0.07085640728473663, 0.06157037988305092, 0.050063785165548325, 0.06513675302267075, -0.018000083044171333, 0.0145094133913517, 0.05659091845154762, 0.04340207204222679, -0.017461763694882393, 0.03401511162519455, 0.029237519949674606, -0.05063575133681297, 0.021650567650794983, 0.005088808946311474, 0.006623862776905298, 0.01341595035046339, 0.0028009475208818913, 0.0649685263633728, 0.027471154928207397, -0.015140257775783539, -0.04595909267663956, -0.012928097508847713, 0.06052738428115845, -0.03159267082810402, 0.010825283825397491, 0.04562264308333397, 0.04313291236758232, 0.02244122512638569, -0.020001962780952454, -0.02175150252878666, 0.04582451283931732, 0.051678743213415146, 0.0018094710540026426, 0.03751419484615326, -0.0057196528650820255, -0.004962639883160591 ]
9,483
asyncclick.formatting
write_paragraph
Writes a paragraph into the buffer.
def write_paragraph(self) -> None: """Writes a paragraph into the buffer.""" if self.buffer: self.write("\n")
(self) -> NoneType
[ 0.012783452868461609, -0.027515500783920288, -0.05288082733750343, 0.039375051856040955, 0.013690557330846786, -0.008466308005154133, -0.021098576486110687, 0.04646390303969383, -0.019721122458577156, 0.02046024426817894, 0.01561395451426506, -0.08580535650253296, -0.002236264292150736, 0.016999809071421623, -0.0326053649187088, -0.005299841519445181, 0.04774056747555733, -0.05570292845368385, -0.050831444561481476, 0.029111333191394806, 0.011624375358223915, 0.03782961517572403, 0.0808330848813057, 0.010280516929924488, -0.030824752524495125, 0.028372209519147873, -0.0038173976354300976, -0.010776064358651638, -0.0131530137732625, 0.00898705329746008, 0.010498893447220325, -0.10502253472805023, 0.026742782443761826, 0.0459599569439888, 0.00025591053417883813, 0.0844615027308464, 0.011229616589844227, 0.011481589637696743, -0.0004000078479293734, -0.024071862921118736, -0.021350549533963203, 0.04737100750207901, 0.011019638739526272, -0.002301357453688979, -0.05711398273706436, -0.029951244592666626, 0.08331921696662903, 0.05106661841273308, -0.030639970675110817, 0.028573788702487946, 0.015891125425696373, 0.0479421466588974, -0.0034415372647345066, -0.025600502267479897, -0.06386686861515045, -0.01360656600445509, 0.059600118547677994, 0.010927248746156693, -0.027549097314476967, -0.017234982922673225, -0.02378629334270954, -0.013539372943341732, 0.0031391691882163286, -0.025331730023026466, 0.048647671937942505, 0.0019286468159407377, 0.0009690478909760714, 0.008537700399756432, 0.06332932412624359, 0.020628226920962334, 0.024105459451675415, 0.01755415089428425, -0.024139055982232094, 0.05304880812764168, -0.04088689014315605, 0.006740289740264416, -0.012296304106712341, 0.08708202093839645, 0.024743791669607162, -0.01316981203854084, -0.035713035613298416, 0.010440099984407425, 0.026171641424298286, 0.013237005099654198, 0.041928380727767944, -0.012833847664296627, 0.012296304106712341, 0.032538171857595444, -0.014085316099226475, -0.033798038959503174, 0.004573318175971508, 0.018830815330147743, -0.017503755167126656, 0.0211153756827116, 0.0353434756398201, -0.02358471415936947, 0.03285733610391617, -0.00152968883048743, -0.03470514342188835, 0.05177214369177818, -0.06729371100664139, 0.06967905908823013, 0.035746634006500244, -0.05187293514609337, 0.03072396293282509, -0.03729207068681717, -0.010062139481306076, 0.031479883939027786, 0.016201892867684364, 0.007987557910382748, 0.015933120623230934, 0.0313790924847126, -0.027397911995649338, -0.05264565348625183, 0.00047428751713596284, 0.0397782064974308, -0.05526617541909218, 0.0001114195110858418, 0.038031190633773804, 0.01030571386218071, 0.04286908358335495, -0.014194504357874393, 0.000632558367215097, -0.05943213775753975, -0.02771707996726036, -0.011187621392309666, -0.004598515573889017, 0.05066346004605293, 0.015429174527525902, -0.0395430326461792, -0.022644013166427612, 0.04260031133890152, 0.07122449576854706, -0.0188980083912611, 0.005900378338992596, 0.02481098473072052, -0.04226434603333473, -0.0316142700612545, -0.021434541791677475, -0.020813006907701492, 0.01479084137827158, -0.08425991982221603, 0.01847805269062519, 0.026541203260421753, 0.019553139805793762, 0.01227110717445612, 0.007256835233420134, -0.0216361191123724, -0.028355412185192108, 0.043608203530311584, 0.03591461479663849, 0.04112206771969795, -0.008583895862102509, -0.02130015566945076, 0.006219544447958469, 0.028456201776862144, 0.019099587574601173, -0.010028542950749397, 0.001093984697945416, -0.026591597124934196, 0.010162929072976112, -0.04344022274017334, 0.0464303083717823, 0.057046789675951004, -0.029867252334952354, 0.05466144159436226, -0.058693014085292816, -0.01851164922118187, 0.021703312173485756, -0.028237825259566307, 0.05130179226398468, 0.005543415900319815, 0.026826772838830948, 0.015706345438957214, 0.013052224181592464, 0.07646553963422775, 0.010414902120828629, 0.0037145086098462343, 0.010221722535789013, -0.04898363724350929, 0.0316142700612545, -0.010389705188572407, 0.014622858725488186, 0.035477861762046814, 0.027817867696285248, 0.004197457805275917, -0.005270444788038731, -0.0008913560886867344, -0.03749364987015724, -0.0010483145015314221, -0.027700280770659447, 0.02538212575018406, 0.019973095506429672, -0.021350549533963203, -0.055904507637023926, -0.013614965602755547, 0.04233153909444809, -0.02549971267580986, -0.00532503891736269, 0.011657971888780594, 0.007143447175621986, 0.00021942687453702092, -0.005589610897004604, -0.008861065842211246, 0.037963997572660446, 0.004388537723571062, -0.025936467573046684, 0.022039277479052544, -0.052578460425138474, -0.0642700269818306, 0.019133184105157852, -0.02954808622598648, 0.04434732720255852, -0.0099445516243577, 0.04743820056319237, -0.0501595139503479, -0.06262379884719849, 0.017092198133468628, -0.018948404118418694, 0.012019133195281029, 0.03314290568232536, -0.02313116192817688, 0.011456392705440521, 0.006433722097426653, -0.03443637117743492, -0.014286894351243973, 0.02840580604970455, -0.029178524389863014, -0.016050709411501884, 0.002198468428105116, -0.028489798307418823, 0.014001324772834778, -0.04622872918844223, 0.01400972343981266, 0.04451530799269676, -0.0954139456152916, -0.06816721707582474, -0.017150992527604103, -0.05661003291606903, -0.02259361930191517, -0.010851656086742878, 0.011683168821036816, 0.03371404856443405, 0.038266368210315704, -0.0496891625225544, 0.033999618142843246, 0.011019638739526272, 0.0009973949054256082, 0.029178524389863014, 0.019267570227384567, -0.036284174770116806, -0.026860369369387627, -0.06594984978437424, -0.03588102012872696, 0.017890114337205887, -0.02420624904334545, -0.019149981439113617, 0.009633785113692284, 0.014572463929653168, 0.07888448983430862, -0.052847232669591904, -0.002832601545378566, -0.031194312497973442, 0.006257340777665377, 0.10367867350578308, 0.011641173623502254, -0.06460598856210709, 0.013237005099654198, -0.007739784196019173, 0.005551815032958984, 0.04058452323079109, 0.032924529165029526, -0.027733877301216125, -0.03594821318984032, 0.015815533697605133, 0.012119922786951065, -0.013279000297188759, 0.06571467220783234, 0.013085820712149143, -0.010952445678412914, 0.09111359715461731, 0.026961158961057663, 0.03210141882300377, 0.0248445812612772, -0.03198383003473282, 0.021014586091041565, -0.02610444836318493, 0.0865444764494896, 0.017688535153865814, -0.028758568689227104, 0.005186453461647034, 0.09514517337083817, 0.029766462743282318, 0.08137062191963196, 0.02042664773762226, 0.030505584552884102, 0.0013344093458727002, 0.014698451384902, -0.005665203090757132, -0.10797902196645737, -0.008252130821347237, -0.017688535153865814, 0.08157220482826233, 0.019905902445316315, -0.04004697874188423, -0.01908278837800026, -0.010902050882577896, 0.04236513748764992, 0.013346193358302116, -0.04407855495810509, -0.00856709759682417, 0.007638995070010424, 0.014967222698032856, 0.0808330848813057, 0.019250771030783653, 0.0028724973089993, 0.012623869813978672, 0.03275654837489128, 0.007450014818459749, -0.016857024282217026, -0.07028379291296005, -0.05402310565114021, 0.051671355962753296, -0.004264650400727987, -0.01183435320854187, -0.00862589105963707, 0.04518723860383034, -0.013799745589494705, -0.011632774025201797, 0.04377618804574013, 0.01985550858080387, 0.021098576486110687, -0.03816557675600052, 0.027515500783920288, -0.06218704581260681, -0.05519898235797882, -0.04774056747555733, -0.02004028856754303, 0.04058452323079109, 0.0013207608135417104, 0.04122285544872284, -0.015093209221959114, -0.002374849747866392, -0.010154529474675655, 0.05177214369177818, 0.015395577996969223, -0.02324875071644783, 0.02931291051208973, 0.02049384079873562, 0.04229794442653656, -0.0019023995846509933, 0.027834666892886162, 0.035410668700933456, -0.02465980127453804, -0.014748846180737019, -0.05415749177336693, 0.03243738040328026, 0.02172011137008667, -0.046631887555122375, -0.029346507042646408, -0.019905902445316315, 0.030925540253520012, 0.010935647413134575, -0.015681147575378418, -0.009759771637618542, 0.011599177494645119, -0.01893160492181778, 0.024911774322390556, 0.018713228404521942, 0.05375433713197708, -0.00008090709889074787, -0.03030400723218918, 0.0008981803548522294, -0.005178054329007864, 0.024609407410025597, -0.018713228404521942, -0.01400972343981266, 0.027549097314476967, -0.01923397369682789, 0.00043990364065393806, -0.025482915341854095, -0.032538171857595444, 0.05093223229050636, -0.008340321481227875, -0.08493185043334961, 0.0005816387129016221, -0.02088019996881485, -0.035511456429958344, -0.010692073032259941, 0.007739784196019173, -0.002402146812528372, 0.03294133022427559, -0.02405506558716297, -0.02256002277135849, -0.07391221076250076, 0.014186104759573936, 0.04679986834526062, -0.015202398411929607, -0.0338316336274147, 0.010952445678412914, 0.053989510983228683, 0.02313116192817688, -0.05351915955543518, 0.016966212540864944, -0.02652440406382084, 0.011372401379048824, -0.0003296652575954795, 0.003960182890295982, 0.009835363365709782, 0.017923710867762566, 0.0008546099415980279, 0.004846289288252592, 0.007500409614294767, -0.005047868005931377, 0.04921881482005119, -0.004220555070787668, 0.009096241556107998, -0.017856517806649208, -0.006719292141497135, 0.02889295481145382, -0.004657309036701918, 0.017587747424840927, 0.021081779152154922, 0.06752888113260269, 0.00029816856840625405, -0.022845592349767685, -0.006282538175582886, -0.0006761287222616374, 0.0741809830069542, -0.02714593894779682, 0.0081513412296772, -0.05130179226398468, -0.020678620785474777, 0.03971101716160774, -0.0077355848625302315, -0.033226899802684784, 0.04545601084828377, -0.04475048556923866, -0.015319985337555408, 0.021367348730564117, 0.10367867350578308, 0.011607577092945576, -0.011355603113770485, 0.03819917514920235, 0.045556798577308655, 0.011733563616871834, 0.008050551638007164, -0.0565764382481575, 0.021552128717303276, 0.012699461542069912, 0.04401136189699173, 0.070216603577137, 0.0358138270676136, -0.031547077000141144, -0.02225765399634838, -0.063228540122509, 0.005341837182641029, -0.05667722597718239, -0.011372401379048824, 0.027801070362329483, -0.016823427751660347, 0.12034251540899277, 0.016596650704741478, -0.029111333191394806, 0.016537858173251152, -0.06588266044855118, -0.017419764772057533, 0.011867949739098549, -0.018427658826112747, 0.029833655804395676, 0.009726175107061863, -0.013421786017715931, -0.016269085928797722, -0.03789680823683739, 0.03201742470264435, -0.00017362544895149767, 0.017873317003250122, -0.012581873685121536, -0.02405506558716297, 0.0422307513654232, -0.08231132477521896, -0.006282538175582886, -0.04965556785464287, -0.008348720148205757, -0.01668064296245575, 0.008159739896655083, 0.018763622269034386, 0.011977137997746468, 0.052578460425138474, -0.0211153756827116, 0.005946573335677385, -0.005123460199683905, 0.017125794664025307, -0.08271448314189911, -0.018410859629511833, 0.011481589637696743, -0.019721122458577156, 0.021552128717303276, -0.00573659548535943, -0.07928764820098877, -0.06678976118564606, 0.032118216156959534, 0.014748846180737019, -0.08163939416408539, 0.03984539955854416, -0.019284367561340332, 0.014202903024852276, 0.030320804566144943, -0.024223048239946365, 0.060372836887836456, -0.009222228080034256, 0.013908933848142624, -0.01851164922118187, 0.007408019155263901, 0.003878291230648756, 0.012430690228939056, -0.029648875817656517, -0.024038266390562057, 0.016042308881878853, -0.030824752524495125, 0.05009232088923454, 0.04454890638589859, 0.009784968569874763, -0.08439430594444275, 0.02148493565618992, 0.025566905736923218, -0.056173279881477356, -0.036620140075683594, -0.01637827418744564, -0.015009217895567417, -0.003340747905895114, 0.018948404118418694, 0.03924066573381424, -0.006227943580597639, 0.016462264582514763, 0.029900848865509033, -0.009650583378970623, 0.002374849747866392, -0.005127659533172846, 0.03030400723218918, -0.013404987752437592, -0.018377263098955154, -0.04149162769317627, -0.11328726261854172, -0.0012493683025240898, 0.02916172705590725, -0.006013766396790743, -0.060440029948949814, 0.016361474990844727, 0.036015406250953674, -0.009583390317857265, -0.0645052045583725, -0.044985659420490265, 0.05654283985495567, 0.016521058976650238, 0.026255633682012558, -0.015345183201134205, 0.012145119719207287, 0.03141269087791443, -0.005862582009285688, -0.015924721956253052, -0.020477041602134705, 0.010314113460481167, -0.0221064705401659, 0.028187429532408714, 0.017285378649830818, -0.01866283267736435, 0.00022821969469077885, 0.03477233648300171, 0.017990903928875923, 0.08412553369998932, 0.027549097314476967, 0.02615484409034252, -0.04307066276669502, 0.016731036826968193, -0.03477233648300171, -0.01805809698998928, 0.06773046404123306, -0.033613257110118866, 0.017234982922673225, -0.11019638925790787, 0.0341172032058239, -0.033226899802684784, -0.04592635855078697, 0.0019401955651119351, 0.016059108078479767, -0.02534852921962738, -0.04266750440001488, 0.040483735501766205, -0.022089671343564987, -0.053619951009750366, 0.010952445678412914, 0.07653273642063141, -0.05909617245197296, 0.033680450171232224, 0.05325038731098175, 0.023467127233743668, -0.017184589058160782, -0.024441424757242203, -0.01595831848680973, -0.012161917984485626, 0.05073065310716629, -0.06309415400028229, 0.05130179226398468, 0.0538887195289135, 0.015403976663947105, -0.03065676987171173, 0.013237005099654198, 0.0036704132799059153, 0.04031575098633766, -0.04911802336573601, 0.05217530205845833, -0.009742973372340202, -0.052578460425138474, -0.06453879922628403, -0.010465296916663647, -0.026322826743125916, -0.00038110982859507203, 0.056509245187044144, 0.04011417180299759, 0.035780228674411774, 0.04307066276669502, 0.00005843290637130849, 0.008961855433881283, -0.08976974338293076, -0.008520902134478092, -0.03584742173552513, -0.07901887595653534, -0.013337794691324234, -0.018578842282295227, -0.016428668051958084, 0.019452350214123726, -0.0377960167825222, 0.01039810385555029, -0.026558000594377518, -0.02492857351899147, -0.06853678077459335, -0.051402583718299866, 0.01265746634453535, 0.010146130807697773, 0.032538171857595444, -0.04656469449400902, -0.031143918633461, -0.10945726931095123, -0.009415407665073872, 0.015941519290208817, -0.037460051476955414, 0.01782292127609253, 0.032319795340299606, -0.05314959958195686, -0.039677418768405914, 0.001187424873933196, 0.04364180192351341, 0.008844267576932907, 0.03263895958662033, 0.016168296337127686, 0.005224249325692654, 0.00898705329746008, -0.006295136641710997, 0.007811177056282759, 0.031026329845190048, -0.017587747424840927, -0.030505584552884102, -0.0716276541352272, -0.0010057940380647779, -0.00020879674411844462, -0.04508644714951515, -0.0018824515864253044, -0.026087651029229164, 0.027162738144397736, -0.019670726731419563, 0.04535521939396858, -0.03530988097190857, -0.037191279232501984, 0.025667695328593254, -0.025550108402967453, -0.011061633937060833, -0.02324875071644783, -0.004098767880350351, 0.008894662372767925, -0.0021753706969320774, -0.044145748019218445, 0.010356108658015728, -0.10582885146141052, -0.03524268791079521, 0.09084482491016388, 0.005648404825478792, 0.01107003353536129, 0.0006393826333805919, -0.06171669811010361, 0.002950189169496298, 0.0024336434435099363, 0.016395071521401405, 0.02595326490700245, 0.04404496029019356, -0.010129332542419434, -0.018948404118418694, -0.05126819759607315, -0.021232962608337402, 0.006131353788077831, 0.013371391221880913, 0.01511840708553791, -0.024323835968971252, -0.03648575395345688, -0.026087651029229164, 0.0338316336274147, -0.010045341216027737, -0.02637322060763836, -0.03594821318984032, -0.013581369072198868, -0.014631258323788643, 0.07014940679073334, 0.05486301705241203, -0.05378793179988861, 0.013446982949972153, 0.04260031133890152, -0.005669402424246073, -0.02324875071644783, 0.009205429814755917, 0.007328227628022432, -0.0773390531539917, 0.020023489370942116, 0.029749665409326553, -0.08580535650253296, -0.005400631111115217, -0.022492829710245132, -0.09870640188455582, -0.0216361191123724, 0.04095408320426941, -0.0009050046210177243, -0.0108180595561862, 0.009423807263374329, -0.030320804566144943, -0.036284174770116806, 0.0011170823127031326, 0.006979664321988821, 0.005186453461647034, -0.032655760645866394, 0.01192674320191145, -0.03608259931206703, -0.02801944687962532, -0.0019958396442234516, 0.03897189348936081, -0.03981180489063263, 0.026658790186047554, 0.02091379649937153, -0.002192168962210417, 0.0417603999376297, -0.03561224788427353, 0.039979785680770874, 0.04055092856287956, 0.011447994038462639, -0.04784135892987251, 0.042734697461128235, 0.04763977974653244, -0.015336783602833748, 0.03564584255218506, 0.08856026828289032, 0.01702500507235527, 0.018142087385058403, -0.07324028015136719, 0.02324875071644783, 0.0435074158012867, 0.036586545407772064, 0.004627912305295467, 0.04676627367734909, -0.04391057416796684, 0.0355786494910717 ]
9,484
asyncclick.formatting
write_text
Writes re-indented text into the buffer. This rewraps and preserves paragraphs.
def write_text(self, text: str) -> None: """Writes re-indented text into the buffer. This rewraps and preserves paragraphs. """ indent = " " * self.current_indent self.write( wrap_text( text, self.width, initial_indent=indent, subsequent_indent=indent, preserve_paragraphs=True, ) ) self.write("\n")
(self, text: str) -> NoneType
[ -0.0012972415424883366, -0.025042207911610603, -0.011311679147183895, 0.08359260112047195, 0.0492662750184536, -0.05346368998289108, -0.0574832484126091, -0.0011143827578052878, -0.00017605023458600044, 0.011160501278936863, -0.008110260590910912, -0.06932850182056427, 0.0019986634142696857, 0.016140485182404518, -0.02121829055249691, -0.018176943063735962, 0.017581123858690262, -0.04620714113116264, 0.004542012698948383, 0.007776779588311911, 0.0384170226752758, -0.012307676486670971, 0.05787453427910805, 0.028225841000676155, -0.0022654482163488865, 0.01769673079252243, 0.011622928082942963, 0.015900379046797752, 0.005749214440584183, -0.01206756941974163, -0.011124929413199425, -0.09618484228849411, 0.035802531987428665, 0.010609145276248455, -0.022747857496142387, 0.02943526580929756, -0.020471293479204178, -0.08124489337205887, 0.04297015070915222, -0.06520222872495651, -0.00687415711581707, 0.07718975841999054, -0.003465980291366577, -0.025735849514603615, -0.047701139003038406, -0.005589143373072147, 0.0765494778752327, 0.012814567424356937, 0.0004318580322433263, 0.0018441504798829556, 0.003948416095227003, 0.011036001145839691, -0.0018530433299019933, -0.009542006067931652, -0.022267645224928856, 0.009915504604578018, 0.05011998862028122, -0.0174210537225008, 0.037812311202287674, -0.11510878801345825, 0.012192069552838802, -0.0234414990991354, 0.03685188665986061, -0.0010121151572093368, -0.007105370983481407, -0.025131136178970337, -0.021236076951026917, -0.007020888850092888, 0.02100486308336258, 0.028759410604834557, 0.017616694793105125, -0.0075722443871200085, 0.009248542599380016, -0.021093791350722313, -0.03727874159812927, 0.020524650812149048, -0.038843877613544464, 0.07598033547401428, 0.04058687388896942, -0.044677574187517166, 0.0071854060515761375, -0.000047034729504957795, 0.040942586958408356, 0.015606915578246117, 0.004479763098061085, -0.034344106912612915, -0.017465516924858093, -0.013943956233561039, 0.02013336680829525, -0.04969312995672226, 0.009924397803843021, -0.02738991566002369, -0.007207638118416071, 0.008972864598035812, 0.0064250691793859005, -0.006456194445490837, 0.022125359624624252, -0.07583805173635483, -0.07356148213148117, 0.06758550554513931, -0.06175180897116661, 0.06513108313083649, 0.030022192746400833, -0.04698971286416054, 0.015838129445910454, -0.07932403683662415, -0.031249402090907097, -0.0024744297843426466, 0.04851927608251572, 0.017625588923692703, 0.023067999631166458, -0.03283232823014259, -0.0057403212413191795, -0.05947524309158325, 0.0193330105394125, 0.0033192485570907593, -0.06826136261224747, 0.01042239647358656, 0.036674030125141144, -0.03187189996242523, 0.032654471695423126, -0.035482387989759445, 0.05061798542737961, -0.025397920981049538, -0.04823470860719681, 0.02164514735341072, -0.02257000096142292, 0.0527166947722435, 0.056807395070791245, -0.017874587327241898, -0.021129362285137177, 0.008101367391645908, 0.07018221169710159, -0.02603820525109768, 0.05200526863336563, 0.04069358855485916, -0.01477099023759365, 0.042401012033224106, 0.010102254338562489, 0.008626044727861881, 0.028154699131846428, -0.03220982849597931, -0.006718532647937536, 0.01426409836858511, 0.04837699234485626, 0.035749174654483795, 0.016158271580934525, -0.006242766510695219, 0.0012794558424502611, 0.07341919839382172, 0.046847425401210785, 0.026874130591750145, 0.014939953573048115, 0.043752722442150116, -0.0013183619594201446, 0.014699847437441349, -0.022285431623458862, -0.010573574341833591, 0.011880820617079735, 0.02706977352499962, -0.005313465837389231, -0.027051987126469612, 0.01899508386850357, 0.04336143657565117, -0.022907929494976997, 0.035909246653318405, -0.08323688805103302, -0.00687415711581707, 0.005362376105040312, -0.045922569930553436, 0.028919480741024017, -0.01453088317066431, -0.010698073543608189, 0.023530427366495132, -0.029453052207827568, 0.04222315549850464, -0.032601114362478256, 0.01017339713871479, -0.010475752875208855, -0.033472608774900436, -0.01991993747651577, -0.05602482706308365, -0.006087141577154398, 0.04204529896378517, 0.007963528856635094, -0.024561995640397072, -0.004579807166010141, -0.0184081569314003, 0.004215201362967491, -0.009328578598797321, -0.013623815029859543, -0.01970651000738144, 0.014361919835209846, -0.028350340202450752, -0.02722984366118908, 0.003428185824304819, 0.010440181940793991, -0.025202278047800064, -0.006625157780945301, 0.02630499005317688, 0.0009431957150809467, 0.0181413721293211, 0.02792348526418209, -0.02063136361539364, 0.080533467233181, -0.006554015446454287, -0.01491327490657568, -0.03167625889182091, -0.044997718185186386, -0.00550910783931613, 0.027727842330932617, 0.01063582394272089, 0.04481986165046692, -0.031800758093595505, 0.032441042363643646, -0.023512640967965126, 0.007750100921839476, 0.023637140169739723, 0.034877676516771317, -0.0037438811268657446, 0.005024448502808809, 0.004319692030549049, -0.011000430211424828, 0.01133835781365633, -0.021093791350722313, -0.029648693278431892, 0.03188968822360039, 0.000046409455535467714, 0.025131136178970337, 0.015838129445910454, 0.012974638491868973, -0.007883493788540363, -0.0802488923072815, -0.010938180610537529, -0.048839420080184937, -0.10714080929756165, -0.07825689762830734, -0.05342812091112137, -0.05830138921737671, -0.060755811631679535, -0.02776341326534748, 0.012992423959076405, 0.011925284750759602, 0.059830956161022186, -0.04108487069606781, -0.022374359890818596, -0.011711856350302696, 0.027372129261493683, 0.03633610159158707, 0.015304559841752052, -0.012094248086214066, -0.012387711554765701, -0.08088918030261993, -0.01590927131474018, -0.03752774000167847, -0.010511324740946293, -0.027887912467122078, -0.008465973660349846, 0.00040684695704840124, 0.07633604854345322, 0.014513097703456879, -0.025629134848713875, -0.0929834246635437, -0.026447275653481483, 0.10991537570953369, -0.015002203173935413, -0.04638499766588211, -0.007265441585332155, -0.025789204984903336, -0.003763890126720071, 0.047701139003038406, 0.027425486594438553, -0.005931517109274864, -0.021574003621935844, -0.029844336211681366, 0.04585142806172371, 0.017029767856001854, 0.05666511133313179, 0.012814567424356937, -0.06374379992485046, 0.06025781109929085, 0.033152468502521515, 0.011213857680559158, -0.013188065961003304, -0.013997313566505909, -0.025451278313994408, -0.027478843927383423, 0.05300126224756241, 0.014290777035057545, -0.037314314395189285, 0.022605571895837784, 0.06207194924354553, 0.04642057046294212, 0.05947524309158325, 0.08416173607110977, 0.026998629793524742, -0.030875904485583305, -0.0019864358473569155, 0.009639827534556389, -0.08864372223615646, -0.004730985499918461, -0.0034859890583902597, 0.04247215390205383, 0.007967974990606308, 0.02084479294717312, -0.030591333284974098, -0.04126272723078728, 0.00026428376440890133, 0.04350372031331062, -0.031053761020302773, -0.031213831156492233, -0.03806130960583687, -0.0005835919291712344, 0.08914172649383545, -0.0008170286891981959, -0.015420166775584221, 0.02338814176619053, -0.009515327401459217, 0.020417936146259308, 0.0027901253197342157, -0.044570863246917725, -0.08281002938747406, 0.03329475224018097, -0.004217424429953098, 0.004075139295309782, -0.019884366542100906, 0.020595792680978775, 0.01574030891060829, -0.01683412678539753, 0.00030652471468783915, -0.020755864679813385, 0.046135999262332916, 0.015473523177206516, 0.016860805451869965, -0.058159105479717255, -0.0349666066467762, 0.008932847529649734, -0.05581139773130417, 0.014095135033130646, -0.003141392022371292, 0.02169850468635559, -0.009248542599380016, 0.003543792525306344, -0.03706531226634979, 0.008408170193433762, 0.05147169902920723, -0.028937267139554024, 0.01510002464056015, 0.031249402090907097, 0.03873716667294502, 0.0087105268612504, -0.029079552739858627, 0.03560689091682434, -0.029097337275743484, -0.029097337275743484, -0.0450332872569561, 0.027034202590584755, -0.012307676486670971, -0.05570468306541443, -0.0715339183807373, -0.033970609307289124, 0.006794121582061052, 0.004377495497465134, 0.022925714030861855, 0.010867037810385227, 0.006856371648609638, -0.04222315549850464, 0.029844336211681366, 0.03870159387588501, 0.05904838815331459, 0.0402667336165905, -0.06420622766017914, -0.01574030891060829, 0.027318771928548813, 0.054744258522987366, 0.04962198808789253, -0.002992437221109867, 0.002172073582187295, -0.025522420182824135, -0.023530427366495132, -0.0015073346439749002, -0.012592246755957603, 0.03909287974238396, -0.03219204396009445, -0.0487327054142952, -0.002150953048840165, 0.017065340653061867, -0.05467311665415764, 0.003948416095227003, -0.016576234251260757, -0.017243197187781334, 0.002182078082114458, 0.020311223343014717, -0.003995103761553764, -0.05975981429219246, 0.033419255167245865, 0.011116037145256996, 0.00027720615616999567, -0.00901732873171568, 0.05901281535625458, 0.01031568180769682, 0.017118696123361588, 0.0005935963708907366, -0.006042677443474531, -0.008941739797592163, 0.05097369849681854, 0.022232074290513992, 0.029417479410767555, 0.028510412201285362, 0.05872824788093567, -0.02479320950806141, 0.02159179002046585, 0.01991993747651577, 0.01575809344649315, 0.07505548000335693, -0.0066384971141815186, 0.03128497302532196, 0.0028056877199560404, 0.012903495691716671, 0.04069358855485916, 0.0032814540900290012, -0.0057936785742640495, -0.0034059537574648857, 0.05413954704999924, 0.009710969403386116, -0.05652282387018204, -0.007781225722283125, -0.011845248751342297, 0.03160511702299118, -0.009453077800571918, 0.03816802427172661, -0.053392548114061356, -0.012094248086214066, 0.020257866010069847, -0.026696274057030678, -0.010146718472242355, 0.001933078863658011, -0.0007642275304533541, 0.006033784709870815, -0.020969292148947716, 0.10322796553373337, -0.03541124612092972, -0.03763445466756821, 0.014290777035057545, 0.07932403683662415, -0.010538003407418728, 0.016309449449181557, 0.0014717632438987494, 0.009533112868666649, 0.030555762350559235, 0.06730093061923981, 0.08323688805103302, -0.023512640967965126, -0.00246331375092268, -0.06267666071653366, -0.054850973188877106, 0.035855889320373535, -0.053179118782281876, 0.022054217755794525, 0.06402837485074997, -0.03153397515416145, 0.05965309962630272, 0.028510412201285362, 0.011187179945409298, 0.015215631574392319, -0.0391995906829834, -0.05698525160551071, 0.003906175261363387, -0.021396147087216377, -0.02826141193509102, 0.01622941344976425, 0.004939966835081577, -0.03176518529653549, 0.011391714215278625, 0.03477096185088158, 0.005326804704964161, -0.020008865743875504, -0.014842132106423378, -0.03146282956004143, 0.042507726699113846, -0.011231644079089165, 0.015251202508807182, -0.02257000096142292, -0.015019988641142845, -0.030502405017614365, -0.0177500881254673, 0.05260998010635376, -0.016051556915044785, 0.03891502320766449, -0.044464148581027985, 0.003839479060843587, -0.0033370342571288347, 0.030662477016448975, -0.040622446686029434, -0.056807395070791245, -0.005820356775075197, -0.05851481854915619, 0.007069799583405256, -0.04439300671219826, -0.06801235675811768, -0.03642502799630165, 0.007870154455304146, -0.02943526580929756, -0.047060854732990265, 0.04286343976855278, 0.040515732020139694, 0.002312135649845004, 0.015455737709999084, 0.017616694793105125, 0.030769189819693565, -0.036407243460416794, 0.026109347119927406, -0.02738991566002369, 0.018870584666728973, 0.007950189523398876, -0.03870159387588501, -0.03806130960583687, -0.0344330370426178, 0.004717646166682243, -0.034717608243227005, -0.020151151344180107, 0.028510412201285362, -0.006718532647937536, -0.06111152470111847, 0.05061798542737961, -0.00895507913082838, 0.0038883897941559553, 0.0032369899563491344, 0.010511324740946293, 0.006282784044742584, -0.02754998579621315, 0.04987098649144173, 0.026500631123781204, -0.01309913769364357, 0.026162704452872276, -0.0032280972227454185, -0.04275672510266304, 0.014415276236832142, 0.03096483275294304, 0.032939039170742035, 0.017145374789834023, 0.0075722443871200085, -0.05022669956088066, -0.046242713928222656, -0.039377450942993164, 0.020720291882753372, 0.016638483852148056, -0.08081803470849991, 0.04485543072223663, 0.04329029470682144, -0.05520668625831604, -0.05687853693962097, 0.0007319910218939185, 0.023619355633854866, -0.0035971496254205704, 0.03091147541999817, -0.029097337275743484, -0.013196959160268307, 0.027887912467122078, 0.005824803374707699, 0.0022043101489543915, 0.02868826873600483, 0.045709144324064255, -0.04659842699766159, 0.04403729364275932, 0.005798124708235264, 0.027372129261493683, 0.027887912467122078, 0.018390370532870293, -0.010529110208153725, 0.10379710793495178, -0.03606931492686272, 0.020969292148947716, -0.038345880806446075, -0.040835872292518616, -0.025095565244555473, -0.01193417701870203, 0.06790564954280853, -0.010715859942138195, 0.02561134845018387, -0.05698525160551071, 0.01523341704159975, -0.014931060373783112, -0.03167625889182091, -0.013490422628819942, -0.008963972330093384, 0.014619811438024044, -0.010760324075818062, -0.0022854572162032127, 0.030751405283808708, -0.017678944393992424, 0.003394837724044919, 0.047701139003038406, -0.06459751725196838, 0.038132451474666595, 0.05769667774438858, -0.009044007398188114, 0.014050670899450779, -0.026802988722920418, -0.037314314395189285, -0.010929287411272526, 0.03685188665986061, -0.08152946084737778, 0.09419284760951996, 0.005051127169281244, 0.11340136080980301, -0.025700276717543602, 0.024419710040092468, -0.015669165179133415, 0.04272115230560303, -0.06274780631065369, 0.05602482706308365, -0.0015473522944375873, -0.05787453427910805, -0.033045753836631775, 0.029257409274578094, -0.018319228664040565, -0.008261438459157944, 0.04090701416134834, 0.005473536439239979, 0.0327078253030777, 0.05200526863336563, -0.010440181940793991, 0.01732323132455349, -0.0646330863237381, 0.024971066042780876, -0.024899922311306, -0.06431294232606888, 0.005131162703037262, -0.03713645786046982, -0.035055533051490784, 0.028972838073968887, -0.0029546425212174654, -0.015989307314157486, -0.028990624472498894, -0.003752774093300104, -0.09028000384569168, -0.037314314395189285, 0.007301012985408306, -0.056309398263692856, 0.03873716667294502, -0.01212981902062893, -0.020595792680978775, -0.06819021701812744, -0.009568684734404087, -0.015731414780020714, -0.00977321993559599, -0.020097794011235237, -0.023192498832941055, -0.08074688911437988, -0.05108041316270828, -0.021609576418995857, 0.0479501374065876, -0.014699847437441349, 0.04617157205939293, 0.08152946084737778, 0.02884833887219429, -0.01155178528279066, 0.0003926740027964115, 0.0005002216785214841, 0.03477096185088158, 0.007194299250841141, 0.017625588923692703, -0.04471314698457718, 0.015847021713852882, 0.0019797661807388067, -0.03745659813284874, 0.02408178150653839, 0.06413508951663971, -0.024561995640397072, 0.04567357152700424, 0.04937298968434334, -0.004566467832773924, -0.00035182255669496953, 0.01635391265153885, -0.04257886856794357, 0.05157840996980667, -0.026073776185512543, -0.005028895102441311, -0.027051987126469612, -0.04325472190976143, -0.0018708290299400687, -0.001193862408399582, -0.10401053726673126, 0.01082257367670536, 0.05129384249448776, -0.01601598598062992, 0.011231644079089165, 0.0003954530111514032, -0.05196969583630562, -0.026998629793524742, -0.009453077800571918, -0.02235657349228859, -0.012556674890220165, 0.055348969995975494, -0.02842148393392563, 0.02858155407011509, -0.04567357152700424, 0.020222295075654984, -0.014415276236832142, 0.05278783664107323, 0.022054217755794525, 0.003039124421775341, -0.022107575088739395, -0.03626495972275734, 0.005873714108020067, 0.031960830092430115, -0.04023116081953049, -0.00124833092559129, -0.0638505145907402, -0.030182262882590294, 0.061253808438777924, 0.04919513314962387, 0.019831009209156036, 0.06100481003522873, 0.050795841962099075, 0.02717648632824421, -0.06772778928279877, 0.01155178528279066, 0.018692728132009506, -0.05196969583630562, 0.04293458163738251, 0.022712286561727524, -0.12962187826633453, -0.050048843026161194, 0.01301910262554884, -0.036247171461582184, 0.02305021323263645, 0.04257886856794357, -0.0038906128611415625, -0.006171623710542917, -0.007750100921839476, 0.010591359809041023, -0.01607823558151722, -0.002234323415905237, 0.05449526011943817, 0.014281883835792542, -0.017830124124884605, 0.01398842129856348, 0.011240536347031593, -0.030431263148784637, 0.012974638491868973, -0.024206282570958138, -0.04044459015130997, -0.009021775797009468, 0.0067007471807301044, 0.018390370532870293, 0.07092920690774918, -0.009212971664965153, 0.04151172935962677, 0.07569576799869537, 0.01574030891060829, -0.014655383303761482, 0.01353488676249981, 0.03670959919691086, 0.02315692789852619, -0.0012983530759811401, 0.03269004076719284, 0.03356153890490532, 0.025949276983737946, -0.024419710040092468, 0.02468649484217167, 0.03877273574471474, 0.008586026728153229, 0.036247171461582184, 0.02230321615934372, -0.04297015070915222, 0.056309398263692856 ]
9,485
asyncclick.formatting
write_usage
Writes a usage line into the buffer. :param prog: the program name. :param args: whitespace separated list of arguments. :param prefix: The prefix for the first line. Defaults to ``"Usage: "``.
def write_usage( self, prog: str, args: str = "", prefix: t.Optional[str] = None ) -> None: """Writes a usage line into the buffer. :param prog: the program name. :param args: whitespace separated list of arguments. :param prefix: The prefix for the first line. Defaults to ``"Usage: "``. """ if prefix is None: prefix = f"{_('Usage:')} " usage_prefix = f"{prefix:>{self.current_indent}}{prog} " text_width = self.width - self.current_indent if text_width >= (term_len(usage_prefix) + 20): # The arguments will fit to the right of the prefix. indent = " " * term_len(usage_prefix) self.write( wrap_text( args, text_width, initial_indent=usage_prefix, subsequent_indent=indent, ) ) else: # The prefix is too long, put the arguments on the next line. self.write(usage_prefix) self.write("\n") indent = " " * (max(self.current_indent, term_len(prefix)) + 4) self.write( wrap_text( args, text_width, initial_indent=indent, subsequent_indent=indent ) ) self.write("\n")
(self, prog: str, args: str = '', prefix: Optional[str] = None) -> NoneType
[ 0.0031007854267954826, 0.04897560179233551, -0.018224302679300308, -0.0368378609418869, 0.06026405468583107, -0.04695854336023331, -0.012783552519977093, 0.02977815642952919, -0.016791129484772682, -0.05863625183701515, 0.026310231536626816, 0.026274845004081726, 0.000957660551648587, 0.010961121879518032, -0.009890665300190449, 0.03998730331659317, 0.012588923797011375, -0.03673170134425163, -0.015764907002449036, 0.03690863773226738, 0.018666639924049377, 0.008068234659731388, -0.007086245808750391, 0.03338763117790222, -0.014579442329704762, -0.0012739318190142512, 0.054425198584795, -0.032396793365478516, 0.011881183832883835, -0.046321578323841095, 0.034732334315776825, -0.03910262882709503, 0.01723346672952175, 0.0015625570667907596, 0.043242909014225006, -0.02673487551510334, 0.0018124777125194669, -0.015216408297419548, -0.023196175694465637, -0.07551585137844086, 0.04313674569129944, -0.02034752257168293, 0.0014497609809041023, -0.014322886243462563, -0.0009007095941342413, 0.04249978065490723, 0.05587606504559517, 0.024310866370797157, -0.059131670743227005, -0.036590151488780975, 0.044870711863040924, 0.0031715594232082367, -0.011527313850820065, -0.007714365143328905, -0.021002182736992836, 0.04625080153346062, 0.018206609413027763, -0.004472031723707914, -0.003421480068936944, 0.00792668666690588, -0.019250525161623955, 0.040270399302244186, 0.04441067948937416, 0.016278017312288284, -0.01693267747759819, -0.038713373243808746, 0.021692227572202682, -0.04540151357650757, 0.0011545007582753897, 0.008028424344956875, 0.031282104551792145, 0.016410719603300095, 0.004591462668031454, 0.007882453501224518, 0.04136739671230316, -0.0058388542383909225, -0.08478724211454391, 0.0036935177631676197, 0.0066571785137057304, -0.021886857226490974, 0.024788590148091316, -0.03634244576096535, 0.027460308745503426, 0.014544054865837097, 0.038076408207416534, 0.02082524634897709, 0.013898242264986038, -0.017932359129190445, 0.017534255981445312, 0.03156520053744316, -0.03464386984705925, 0.007218947168439627, -0.005193041637539864, -0.0084530683234334, 0.013659380376338959, -0.07735597342252731, -0.005931745283305645, -0.04986027628183365, -0.05134652927517891, 0.00995259266346693, -0.019020510837435722, -0.022187646478414536, -0.000547945499420166, 0.020666005089879036, 0.04150894656777382, -0.015871066600084305, 0.01686190254986286, 0.009377554059028625, 0.01396016962826252, -0.0007984190597198904, 0.02666410058736801, -0.02933581918478012, 0.008647697046399117, -0.023567739874124527, 0.02717721275985241, 0.036147814244031906, -0.02869885414838791, -0.02004673331975937, 0.0035099475644528866, 0.0058034672401845455, 0.009819891303777695, 0.0026252728421241045, -0.0011622416786849499, -0.016039155423641205, 0.02038290910422802, -0.05729154497385025, -0.04472916200757027, 0.004945332650095224, 0.046392351388931274, 0.018312770873308182, 0.0008802515221759677, 0.017551949247717857, 0.047701671719551086, -0.0282211285084486, 0.06238727271556854, 0.009917205199599266, -0.02896425500512123, 0.02947736717760563, -0.02057753875851631, 0.042605943977832794, 0.023249255493283272, -0.006480243522673845, -0.0024837248492985964, -0.00011894730414496735, 0.014375966973602772, -0.01380977500230074, 0.013190502300858498, 0.002835382940247655, 0.04688777029514313, -0.018949735909700394, 0.036590151488780975, 0.0255140233784914, 0.031140556558966637, 0.021692227572202682, 0.021957630291581154, -0.015181020833551884, -0.0337945818901062, -0.0736757218837738, 0.041119687259197235, -0.009704883210361004, -0.006382929161190987, -0.04140278324484825, 0.052514299750328064, -0.008851172402501106, -0.024417025968432426, 0.0050161066465079784, -0.005847700871527195, 0.05856547877192497, -0.019250525161623955, -0.04352600499987602, -0.022099178284406662, -0.061431825160980225, 0.05853009223937988, 0.04221668466925621, -0.01686190254986286, 0.04345523193478584, -0.010244535282254219, -0.047737058252096176, -0.030025865882635117, -0.07459578663110733, -0.03393612802028656, 0.001163347507826984, 0.020630618557333946, -0.03630705922842026, -0.01281009241938591, -0.006144067272543907, 0.06256420910358429, -0.003620531875640154, 0.04274749010801315, -0.013685920275747776, -0.03404229134321213, 0.022559208795428276, -0.020170588046312332, 0.04465838894248009, 0.0001422391360392794, -0.005458443891257048, 0.007351648528128862, 0.000581673753913492, 0.039668820798397064, -0.05431903898715973, -0.004653390031307936, 0.05530987307429314, 0.004693200346082449, -0.011014202609658241, 0.04840940982103348, 0.07024318724870682, 0.05725615844130516, 0.0028862517792731524, -0.05400055646896362, -0.026451779529452324, 0.05028492212295532, -0.077072873711586, 0.012288134545087814, 0.0053168958984315395, -0.016649581491947174, 0.035033125430345535, 0.03754560276865959, 0.046427737921476364, -0.02531939558684826, 0.005378823261708021, 0.021515293046832085, -0.024859365075826645, 0.012544689700007439, -0.003514370881021023, 0.004763974342495203, -0.027354147285223007, 0.09448327869176865, 0.03600626811385155, -0.004306154791265726, -0.0003381116839591414, 0.027672629803419113, -0.017481176182627678, 0.022470742464065552, 0.0402350127696991, -0.05223120376467705, 0.053151268512010574, -0.0321136973798275, 0.01407517772167921, -0.00919177196919918, -0.01750771515071392, -0.06362581998109818, -0.04352600499987602, 0.04844479635357857, 0.03563470393419266, 0.023337723687291145, 0.028911175206303596, 0.006705835461616516, -0.008355754427611828, 0.00006583225331269205, -0.03526313975453377, -0.05216043069958687, 0.11316761374473572, -0.019763637334108353, -0.027637243270874023, -0.006754492875188589, 0.04579077288508415, -0.021886857226490974, -0.05134652927517891, -0.006126373540610075, 0.029618915170431137, -0.06620907038450241, 0.026310231536626816, -0.0021364898420870304, -0.04377371445298195, 0.09066148102283478, 0.03775792568922043, 0.01446443423628807, -0.027354147285223007, -0.0412258505821228, 0.021479906514286995, 0.041862815618515015, 0.044127583503723145, -0.015623358078300953, 0.02057753875851631, -0.023638512939214706, -0.0017969958717003465, 0.03697941079735756, 0.04603848233819008, 0.0034104217775166035, -0.015012932941317558, 0.023974688723683357, -0.041792042553424835, 0.000581673753913492, 0.021515293046832085, 0.01700345054268837, 0.019445154815912247, 0.02034752257168293, 0.04685238376259804, 0.02268306352198124, -0.011819256469607353, 0.044623002409935, 0.028787320479750633, 0.008240746334195137, -0.01743694208562374, -0.005945015233010054, 0.06787225604057312, -0.003083091927692294, 0.029194271191954613, 0.0019783542957156897, -0.014446740970015526, -0.005878664553165436, -0.0192682184278965, 0.013393977656960487, -0.04759550839662552, 0.011385765857994556, -0.01054532453417778, 0.0037067877128720284, -0.04989566281437874, 0.043313682079315186, -0.0170742254704237, -0.023532351478934288, -0.04671083390712738, 0.054743681102991104, 0.031246716156601906, -0.04433990642428398, 0.06744761019945145, -0.037262506783008575, -0.009811044670641422, 0.014800610952079296, -0.006316578481346369, -0.018985122442245483, 0.0054009403102099895, 0.04249978065490723, -0.010925734415650368, -0.024080850183963776, 0.013730154372751713, -0.03319300338625908, 0.052266594022512436, 0.01845431886613369, -0.028114967048168182, -0.008523842319846153, -0.017516562715172768, -0.020701391622424126, 0.030945926904678345, -0.023921608924865723, 0.03356456384062767, 0.01342051848769188, -0.06472281366586685, -0.053257428109645844, 0.012288134545087814, 0.045472290366888046, 0.01760503090918064, -0.02264767698943615, 0.0655721053481102, 0.030875153839588165, -0.021302971988916397, -0.018843574449419975, -0.0074931965209543705, 0.04522458091378212, -0.015481810085475445, -0.0007967603160068393, 0.033281467854976654, 0.00012164279905846342, -0.04685238376259804, 0.0716586634516716, -0.006480243522673845, 0.03007894568145275, -0.05063879117369652, -0.009227159433066845, 0.01841893047094345, -0.04954179376363754, -0.06596136093139648, 0.068933866918087, -0.004958602599799633, -0.05506216362118721, -0.029229657724499702, 0.01856047846376896, -0.014729836955666542, -0.006073293276131153, 0.04458761587738991, 0.024363946169614792, -0.00634754216298461, 0.019834410399198532, -0.013712461106479168, -0.03821795433759689, 0.017481176182627678, 0.014897924847900867, 0.019728250801563263, -0.1014191284775734, -0.11543238162994385, 0.00040142121724784374, 0.02216995321214199, 0.01919744536280632, 0.00643158657476306, -0.026717182248830795, -0.0062192645855247974, -0.04993104934692383, 0.014225572347640991, -0.02680564858019352, -0.006121950224041939, -0.0129251005128026, 0.017419248819351196, 0.021550679579377174, -0.04288903996348381, -0.05106343328952789, 0.01568528637290001, -0.02666410058736801, -0.0035099475644528866, -0.09929590672254562, 0.019834410399198532, -0.005706152878701687, -0.07862990349531174, -0.023585433140397072, 0.031246716156601906, -0.023337723687291145, -0.01815352961421013, 0.03835950419306755, 0.0044410680420696735, -0.01342051848769188, 0.08492878824472427, -0.05527448654174805, -0.006369659211486578, -0.0490109883248806, 0.07919609546661377, 0.03452001512050629, 0.021745309233665466, -0.0659259706735611, -0.08422105014324188, 0.02977815642952919, 0.02751338854432106, 0.008709624409675598, -0.0031206905841827393, 0.003383881412446499, 0.06189185380935669, 0.05502677708864212, -0.03981037065386772, -0.034555401653051376, -0.04579077288508415, 0.0648997500538826, -0.010226842015981674, 0.02866346575319767, -0.034661561250686646, 0.011429999954998493, 0.0015824622241780162, 0.0018268536077812314, -0.016419565305113792, 0.00007485179230570793, 0.0025500752963125706, 0.027354147285223007, -0.02365620620548725, 0.031759828329086304, -0.047064702957868576, 0.0483386367559433, 0.05665457993745804, -0.024664735421538353, -0.0013988921418786049, -0.007798409089446068, -0.03697941079735756, 0.004394622519612312, 0.0015935206320136786, 0.0632011741399765, 0.046286191791296005, -0.06688141822814941, -0.023850835859775543, -0.006148490589112043, -0.11882953345775604, -0.003660342423245311, -0.04373832792043686, -0.0429244264960289, 0.01683536358177662, 0.001676458865404129, 0.07891300320625305, 0.015039472840726376, -0.02220533974468708, -0.0358293317258358, 0.020223667845129967, 0.06465204060077667, 0.01004105992615223, -0.0733218565583229, -0.01451751496642828, 0.019763637334108353, -0.004653390031307936, -0.02383314073085785, 0.04203975200653076, -0.008745010942220688, -0.006166183855384588, -0.023266948759555817, 0.03567009046673775, -0.09016606211662292, -0.010235688649117947, 0.033847659826278687, -0.0018744049593806267, 0.06189185380935669, 0.07438346743583679, 0.028451144695281982, 0.039668820798397064, 0.008218629285693169, -0.03821795433759689, -0.02011750638484955, 0.016569960862398148, 0.017932359129190445, -0.03981037065386772, -0.03225524723529816, -0.012288134545087814, -0.010067599825561047, 0.020329829305410385, 0.003994307015091181, 0.044623002409935, -0.11394612491130829, 0.006316578481346369, -0.003383881412446499, -0.014959852211177349, 0.014296346344053745, -0.02521323412656784, 0.018702026456594467, -0.012544689700007439, 0.018949735909700394, 0.022399967536330223, -0.025531716644763947, 0.026894116774201393, -0.041013527661561966, 0.010828420519828796, 0.014703297056257725, 0.014712143689393997, 0.03221986070275307, 0.05113421007990837, -0.017047684639692307, -0.03333454951643944, -0.0024107389617711306, -0.00995259266346693, 0.026168683543801308, 0.023567739874124527, 0.031653668731451035, -0.023744674399495125, -0.04625080153346062, -0.007913417182862759, 0.04228746145963669, 0.0014453375479206443, 0.01994057185947895, -0.002806631149724126, -0.01652572676539421, 0.030025865882635117, 0.028309596702456474, -0.03846566379070282, 0.010023366659879684, -0.0035895684268325567, 0.017366167157888412, -0.028734240680933, 0.05591145157814026, 0.053186655044555664, 0.02041829563677311, 0.02487705834209919, -0.018613560125231743, -0.08082389831542969, 0.0031450192909687757, 0.005259392317384481, 0.0202767476439476, -0.02528400905430317, 0.03184829652309418, -0.037368666380643845, -0.060511764138936996, -0.06511206924915314, 0.03390074148774147, 0.05594683811068535, -0.01875510811805725, 0.08860903978347778, 0.004538382403552532, -0.0005382693489082158, 0.0022503917571157217, -0.017702344805002213, -0.0075285835191607475, 0.002976930933073163, -0.06815535575151443, 0.011368072591722012, -0.0030388582963496447, -0.016791129484772682, 0.02707105129957199, -0.0932801216840744, -0.0017969958717003465, 0.035103898495435715, -0.041721269488334656, 0.014322886243462563, -0.00807708129286766, -0.026787955313920975, -0.0638735294342041, -0.07229562848806381, 0.005706152878701687, 0.07211869955062866, 0.03903185576200485, -0.0024549728259444237, -0.07006625086069107, 0.043419841676950455, -0.0632011741399765, 0.012765858322381973, 0.06436894834041595, 0.06670448929071426, 0.0005449044401757419, -0.012801245786249638, 0.027725711464881897, -0.02443472109735012, 0.0117484824731946, -0.06182108074426651, 0.004759551025927067, -0.08075312525033951, 0.04975411668419838, 0.07466655969619751, -0.0233200304210186, -0.08676891028881073, 0.018312770873308182, 0.05863625183701515, -0.06649216264486313, 0.022559208795428276, -0.015977228060364723, -0.008324790745973587, 0.057043835520744324, 0.03082207217812538, -0.021957630291581154, -0.01511024683713913, -0.0533989779651165, 0.0378640852868557, -0.01575605943799019, 0.08521188795566559, -0.03850105032324791, 0.0037112112622708082, -0.05131114274263382, 0.00012026049080304801, 0.014535208232700825, -0.04579077288508415, 0.01933899335563183, 0.035581622272729874, -0.043349068611860275, 0.044127583503723145, -0.008638850413262844, -0.009421787224709988, -0.018472012132406235, -0.009147537872195244, -0.01834815740585327, -0.004560498986393213, 0.0059759789146482944, -0.03156520053744316, -0.016065696254372597, -0.02588558755815029, 0.028751933947205544, -0.003255603602156043, 0.02301924116909504, -0.09809274971485138, -0.06992470473051071, -0.02024136111140251, -0.04235823452472687, -0.03329916298389435, -0.04667544737458229, -0.03160058706998825, -0.012279286980628967, 0.0046489667147397995, -0.02216995321214199, 0.010731106624007225, -0.050143372267484665, -0.008426528424024582, 0.018295075744390488, -0.037333279848098755, 0.044941484928131104, -0.0025920975022017956, 0.023107707500457764, 0.05131114274263382, 0.026274845004081726, 0.02903502993285656, -0.0024063156452029943, -0.0223115012049675, -0.008616733364760876, 0.03444923833012581, -0.017835045233368874, -0.08457492291927338, 0.08167318254709244, -0.01841893047094345, 0.014411353506147861, 0.026451779529452324, -0.01852509193122387, -0.013969016261398792, -0.006113103590905666, 0.03825334087014198, -0.03903185576200485, 0.08252247422933578, 0.021709920838475227, -0.0016244843136519194, -0.041721269488334656, -0.023479271680116653, 0.0577869638800621, 0.02149759978055954, -0.059202443808317184, -0.04126123711466789, -0.042605943977832794, -0.030574364587664604, 0.022364581003785133, -0.05676073953509331, -0.012872019782662392, 0.09342166781425476, 0.015216408297419548, 0.02416931837797165, -0.018295075744390488, -0.07452501356601715, -0.025460943579673767, -0.017330780625343323, -0.003293202258646488, -0.0038881460204720497, 0.010465703904628754, 0.0035475462209433317, 0.012181973084807396, 0.020188281312584877, 0.040411949157714844, -0.04073043167591095, 0.035581622272729874, 0.0069712381809949875, 0.037333279848098755, 0.0003118478925898671, -0.011766175739467144, 0.04607386887073517, -0.040411949157714844, -0.044623002409935, -0.0879012942314148, 0.027354147285223007, 0.018365850672125816, 0.04816170036792755, 0.005029376596212387, 0.013332050293684006, 0.014561749063432217, -0.0351569801568985, 0.03680247440934181, 0.01260661706328392, 0.01720692589879036, -0.01466790959239006, -0.0337945818901062, 0.03981037065386772, 0.024045463651418686, -0.06684603542089462, 0.0022094754967838526, -0.013464751653373241, -0.06362581998109818, -0.03441385179758072, -0.04508303105831146, -0.01595068909227848, 0.022523822262883186, -0.013677073642611504, -0.006679295562207699, -0.011721942573785782, 0.008360177278518677, 0.035475462675094604, 0.00010083911183755845, 0.011438846588134766, 0.07664823532104492, 0.025744039565324783, -0.011182290501892567, 0.053929779678583145, -0.02342619188129902, -0.00765686109662056, 0.024151625111699104, -0.006281191483139992, -0.02457626909017563, 0.030875153839588165, 0.020029040053486824, 0.03623628243803978, 0.02264767698943615, 0.0282211285084486, -0.03498004376888275, 0.04957718029618263, 0.059945572167634964, -0.070313960313797, 0.05492061749100685, -0.019409766420722008, 0.015800293534994125, -0.053080491721630096, -0.0682969018816948, 0.044623002409935, 0.01997595839202404, -0.005927321966737509, 0.054531361907720566, 0.004653390031307936, -0.0469939298927784, -0.00725875748321414 ]
9,486
asyncclick.types
IntRange
Restrict an :data:`click.INT` value to a range of accepted values. See :ref:`ranges`. If ``min`` or ``max`` are not passed, any value is accepted in that direction. If ``min_open`` or ``max_open`` are enabled, the corresponding boundary is not included in the range. If ``clamp`` is enabled, a value outside the range is clamped to the boundary instead of failing. .. versionchanged:: 8.0 Added the ``min_open`` and ``max_open`` parameters.
class IntRange(_NumberRangeBase, IntParamType): """Restrict an :data:`click.INT` value to a range of accepted values. See :ref:`ranges`. If ``min`` or ``max`` are not passed, any value is accepted in that direction. If ``min_open`` or ``max_open`` are enabled, the corresponding boundary is not included in the range. If ``clamp`` is enabled, a value outside the range is clamped to the boundary instead of failing. .. versionchanged:: 8.0 Added the ``min_open`` and ``max_open`` parameters. """ name = "integer range" def _clamp( # type: ignore self, bound: int, dir: "te.Literal[1, -1]", open: bool ) -> int: if not open: return bound return bound + dir
(min: Optional[float] = None, max: Optional[float] = None, min_open: bool = False, max_open: bool = False, clamp: bool = False) -> None
[ -0.007012404967099428, -0.024353833869099617, -0.020989274606108665, -0.006315086502581835, 0.02036168798804283, 0.019646937027573586, 0.03378506004810333, -0.054460540413856506, -0.07070805132389069, -0.08158621191978455, -0.0026149428449571133, 0.03925900533795357, 0.027090806514024734, 0.0019078186014667153, -0.03467414155602455, 0.034987933933734894, 0.00808453094214201, -0.030002109706401825, 0.027544062584638596, 0.022680269554257393, 0.043582379817962646, -0.013894062489271164, 0.007326197810471058, -0.014478066004812717, -0.020100193098187447, 0.03251245617866516, 0.008903879672288895, 0.00712136086076498, 0.008969253860414028, -0.06886015832424164, -0.07775096595287323, -0.006445833947509527, 0.04539540410041809, -0.02259310521185398, -0.020030461251735687, -0.06882528960704803, 0.01775546185672283, 0.05704061686992645, -0.07837855070829391, 0.008280651643872261, -0.03863142058253288, -0.032547321170568466, -0.010930460877716541, 0.01371101662516594, -0.01113965641707182, -0.01788620837032795, 0.02921762689948082, -0.06286322325468063, -0.006925240159034729, -0.03538889065384865, 0.041246362030506134, 0.018444063141942024, 0.010285441763699055, -0.013257759623229504, -0.04717356711626053, 0.0625842958688736, 0.009901916608214378, 0.04302452504634857, -0.017938507720828056, -0.018095403909683228, -0.04780115187168121, 0.05330996587872505, 0.013850480318069458, -0.07419463992118835, 0.029165327548980713, 0.016421839594841003, -0.03294827789068222, 0.0021181036718189716, -0.021198468282818794, 0.04033984988927841, -0.026567818596959114, 0.006027442868798971, 0.011479598470032215, 0.030612263828516006, 0.042745597660541534, -0.02527778036892414, -0.016875097528100014, 0.0678490474820137, 0.006315086502581835, -0.01487030740827322, 0.0737762525677681, 0.017554981634020805, 0.05529732257127762, 0.005957711022347212, -0.02302892878651619, -0.034238316118717194, -0.042083144187927246, -0.002482016570866108, 0.0581214614212513, 0.0014196960255503654, -0.055576249957084656, 0.062200769782066345, -0.043931037187576294, -0.021721458062529564, 0.01460881344974041, 0.07063832134008408, -0.01699712686240673, 0.005330124869942665, -0.07768122851848602, -0.01274348795413971, -0.012020019814372063, 0.05330996587872505, 0.0012965757632628083, -0.022331610321998596, -0.009344061836600304, -0.041246362030506134, -0.003209842136129737, -0.010947893373668194, -0.02712567336857319, 0.01633467525243759, 0.007966859266161919, -0.0017770715057849884, 0.013772031292319298, 0.020814944058656693, -0.068546362221241, 0.07872720807790756, -0.003970354795455933, -0.0056352014653384686, 0.03390708938241005, -0.003042049938812852, -0.0027326152194291353, -0.015480460599064827, 0.0041403258219361305, 0.00038325253990478814, 0.05686628818511963, 0.09037242084741592, -0.017851341515779495, 0.032895978540182114, -0.06380460411310196, -0.001516666729003191, 0.0033536639530211687, -0.07252107560634613, -0.002033117925748229, 0.056308433413505554, 0.0048114946112036705, 0.002436254872009158, -0.025138316676020622, 0.09497471898794174, -0.003314439905807376, 0.05547165125608444, -0.03490076959133148, 0.05543678626418114, -0.03136188164353371, 0.022174714133143425, -0.01968180201947689, -0.005844397004693747, 0.02988007850944996, 0.0425015352666378, 0.009832184761762619, 0.02280230075120926, -0.04257126897573471, -0.033122606575489044, 0.01908908225595951, 0.03392452374100685, 0.068546362221241, 0.03315747529268265, 0.00936149526387453, -0.06621035188436508, 0.044767819344997406, -0.0019263410940766335, -0.01594243384897709, 0.02252337336540222, 0.04298966005444527, 0.013353641144931316, 0.013353641144931316, 0.010302874259650707, -0.027544062584638596, 0.01457394752651453, -0.0033907091710716486, 0.04414023458957672, 0.024615326896309853, -0.0025778976269066334, 0.05731954425573349, -0.008620594628155231, 0.02489425428211689, 0.011470882222056389, 0.0011113507207483053, 0.015288698486983776, 0.0043909247033298016, 0.02182605490088463, 0.012028736993670464, 0.010581801645457745, 0.00004582959445542656, -0.011191954836249352, 0.0253475122153759, -0.014687261544167995, -0.008951820433139801, -0.0031749762129038572, -0.026707282289862633, -0.03517969697713852, -0.015114368870854378, 0.009405077435076237, 0.04197854921221733, -0.046545982360839844, -0.09337089210748672, 0.003979071043431759, -0.06837203353643417, -0.023046361282467842, 0.06568735837936401, 0.008080173283815384, -0.006014368496835232, 0.037968967109918594, 0.06805824488401413, 0.01072998158633709, 0.037306517362594604, 0.011836973950266838, 0.014661111868917942, -0.027491765096783638, 0.01133141852915287, -0.04257126897573471, -0.061747513711452484, -0.008886447176337242, -0.01692739687860012, 0.003804741660133004, 0.007317481562495232, 0.03315747529268265, -0.004654597956687212, -0.0057615903206169605, -0.0096927210688591, 0.03622567281126976, 0.0775417685508728, 0.010738697834312916, 0.0253475122153759, -0.04808007925748825, 0.10459771007299423, -0.006602730602025986, -0.007069061975926161, -0.028799235820770264, 0.03420345112681389, 0.03263448551297188, 0.02764866128563881, -0.039537932723760605, -0.032460156828165054, 0.0018903856398537755, -0.05582031235098839, 0.01371101662516594, -0.019803833216428757, -0.020919542759656906, -0.03456954285502434, -0.005473946686834097, -0.014565231278538704, 0.084933340549469, -0.03375019505620003, 0.045465137809515, -0.014547797851264477, -0.012717338278889656, -0.037899237126111984, 0.023604216054081917, -0.005439080763608217, 0.014783143065869808, -0.017903640866279602, -0.06621035188436508, -0.07182376086711884, 0.01256044115871191, 0.014042242430150509, 0.09560230374336243, -0.06624521315097809, -0.01982126571238041, -0.03807356581091881, 0.006916523445397615, -0.006275862455368042, -0.07907586544752121, -0.04166475310921669, 0.013493104837834835, 0.02466762624680996, -0.014434483833611012, -0.009004119783639908, -0.03601647913455963, 0.036121074110269547, 0.04389617219567299, 0.051392342895269394, -0.02034425362944603, 0.007326197810471058, -0.003419037675485015, 0.010215709917247295, 0.023447319865226746, 0.07510115206241608, 0.0006875120452605188, -0.010285441763699055, -0.03294827789068222, 0.0016833693953230977, 0.016378257423639297, -0.051775865256786346, 0.009291763417422771, 0.007949425838887691, 0.008136830292642117, 0.00865110196173191, 0.03303544223308563, -0.01676178351044655, -0.007975575514137745, 0.005735441111028194, 0.01788620837032795, 0.039328739047050476, -0.0357724167406559, 0.06994099915027618, 0.01826973259449005, 0.03971226513385773, -0.01931571029126644, -0.01494003925472498, -0.0312921479344368, 0.04748735949397087, -0.08507280051708221, -0.04717356711626053, 0.018810154870152473, 0.00421223696321249, 0.010930460877716541, -0.018165135756134987, -0.01453908160328865, -0.015018487349152565, -0.00046796578681096435, -0.013615135103464127, 0.0023795978631824255, -0.025922799482941628, -0.08556092530488968, 0.02334272302687168, 0.0067683435045182705, 0.04466322064399719, 0.01811283640563488, -0.0417344868183136, 0.013318775221705437, -0.022035250440239906, 0.02369138039648533, 0.024929121136665344, -0.018670691177248955, -0.026131995022296906, 0.014329886063933372, 0.00523424381390214, 0.03859655559062958, -0.00938764400780201, -0.0335584320127964, -0.052508048713207245, 0.059899620711803436, 0.0529264397919178, -0.011845690198242664, 0.03338410332798958, 0.008590087294578552, 0.03706245496869087, 0.05969042703509331, -0.009814751334488392, -0.021930653601884842, 0.035144831985235214, -0.002209626603871584, 0.042815327644348145, 0.048045214265584946, 0.040444448590278625, 0.013780748471617699, 0.009675288572907448, 0.038491956889629364, 0.07942453026771545, -0.02696877531707287, 0.025242913514375687, 0.02416207082569599, 0.019943296909332275, -0.05718008056282997, -0.006389176938682795, -0.007339272648096085, 0.0752406194806099, -0.08542146533727646, 0.028084484860301018, -0.026219159364700317, 0.07649578899145126, -0.06425786018371582, 0.0037524427752941847, 0.013065997511148453, -0.044907283037900925, 0.02944425493478775, 0.0008607519557699561, -0.07314866781234741, 0.030368201434612274, 0.052438318729400635, 0.018130268901586533, -0.05777280032634735, -0.031954601407051086, -0.005351915955543518, -0.034255750477313995, 0.011871839873492718, -0.03510996326804161, 0.015829119831323624, -0.048114947974681854, 0.03310517594218254, 0.05153180658817291, -0.024388698861002922, 0.004550000187009573, -0.00489865941926837, -0.02705594152212143, -0.03988659381866455, 0.0387708842754364, -0.04107203334569931, -0.0219829510897398, 0.02520804852247238, 0.07363678514957428, -0.01595115102827549, -0.022697702050209045, 0.02170402556657791, -0.047208432108163834, -0.03517969697713852, 0.04204827919602394, -0.011836973950266838, 0.07956399023532867, 0.0008765506208874285, -0.0005396043416112661, 0.06910421699285507, 0.015480460599064827, 0.03183256834745407, 0.04584866389632225, 0.016796648502349854, 0.04605785757303238, -0.016116764396429062, 0.02116360329091549, -0.013135729357600212, -0.05397241935133934, -0.008245785720646381, 0.0064109680242836475, 0.020152492448687553, 0.05163640156388283, -0.04734789580106735, -0.04570920020341873, -0.013179311528801918, -0.07210268825292587, -0.06669846922159195, 0.013667434453964233, -0.08458468317985535, 0.021895786747336388, 0.007391571532934904, -0.005068630445748568, -0.0514272078871727, 0.08137701451778412, -0.017607280984520912, 0.0028633621986955404, 0.044384293258190155, -0.037167053669691086, 0.00831551756709814, -0.05487893149256706, -0.06899962574243546, 0.011383716948330402, 0.006602730602025986, -0.046406518667936325, 0.01260402426123619, 0.058853644877672195, -0.014399617910385132, 0.0581214614212513, 0.0002849198062904179, 0.08060996979475021, 0.01759856380522251, 0.012237931601703167, -0.08716475963592529, -0.02302892878651619, 0.034238316118717194, -0.02020479179918766, -0.041699621826410294, 0.005351915955543518, 0.03361073136329651, 0.046476248651742935, -0.010895594954490662, 0.004567433148622513, -0.07182376086711884, -0.14727357029914856, 0.030472800135612488, 0.002721719676628709, -0.025835635140538216, 0.029775481671094894, 0.011122222989797592, -0.06593142449855804, -0.07663525640964508, -0.021041572093963623, 0.03378506004810333, 0.00033040891867130995, -0.02831111289560795, -0.04630191996693611, -0.010119828395545483, -0.01006752997636795, -0.023272991180419922, 0.02050115168094635, 0.015044637024402618, 0.024998852983117104, 0.04515134543180466, -0.001308560953475535, 0.03406398743391037, 0.030246170237660408, -0.002169312909245491, 0.08514253795146942, -0.039851728826761246, 0.018967051059007645, 0.05201992765069008, -0.09002376347780228, 0.03538889065384865, -0.06349080801010132, 0.03406398743391037, -0.06757012009620667, 0.012891667895019054, -0.0015711447922512889, -0.018130268901586533, -0.009771169163286686, -0.000747437821701169, -0.02757892943918705, -0.02550440840423107, 0.028816668316721916, 0.0010977311758324504, 0.015297414734959602, 0.018234867602586746, -0.01684894785284996, 0.02288946509361267, -0.02475479058921337, -0.016439273953437805, 0.05540192127227783, 0.016378257423639297, -0.0030246172100305557, -0.01103505864739418, -0.030751725658774376, -0.0212507676333189, 0.02287203259766102, -0.028345979750156403, 0.04190881550312042, 0.012098468840122223, 0.04009578749537468, -0.026201726868748665, 0.04518621042370796, 0.03526686131954193, 0.002164954785257578, -0.06293295323848724, -0.016195211559534073, -0.005465230438858271, -0.005090421997010708, -0.018688123673200607, 0.027003642171621323, -0.0409674346446991, -0.010581801645457745, -0.05871418118476868, -0.023429887369275093, 0.049683913588523865, 0.06833717226982117, 0.007500527426600456, 0.0693482831120491, 0.0036282329820096493, -0.01879272237420082, 0.04257126897573471, -0.06966207176446915, -0.01136628445237875, -0.0005916308145970106, 0.05313563719391823, -0.04616245627403259, 0.03413371741771698, 0.044314563274383545, 0.07405517995357513, 0.03988659381866455, 0.009867050684988499, -0.050799619406461716, 0.04679004102945328, 0.01730220392346382, -0.0015068607171997428, 0.009849617257714272, 0.017493966966867447, 0.03035076893866062, -0.008659819141030312, -0.03524942696094513, -0.0051688700914382935, -0.0016768319765105844, -0.03943333774805069, 0.020675480365753174, 0.04337318241596222, -0.016151629388332367, 0.00014600096619687974, 0.02757892943918705, -0.049544449895620346, -0.05756360664963722, 0.01357155293226242, 0.032686784863471985, -0.040514178574085236, 0.0036151583772152662, -0.0068511501885950565, 0.025068584829568863, -0.02362164855003357, -0.01072998158633709, 0.026794446632266045, -0.011488314718008041, 0.004284147638827562, -0.0022030891850590706, -0.04881226271390915, -0.0035628594923764467, -0.012516858987510204, -0.003735009813681245, 0.019263410940766335, -0.0573892779648304, -0.10906054824590683, 0.03303544223308563, 0.04574406519532204, -0.03699272498488426, 0.01267375610768795, -0.01797337271273136, -0.023743679746985435, 0.0663498118519783, 0.020971840247511864, -0.04644138365983963, -0.016378257423639297, -0.005630843341350555, 0.016055747866630554, -0.07398544996976852, -0.019838698208332062, 0.009492241777479649, 0.00421223696321249, -0.015445594675838947, 0.041629888117313385, -0.056901153177022934, 0.036121074110269547, -0.006498132832348347, 0.017171457409858704, 0.020745212212204933, -0.06474598497152328, -0.03115268424153328, -0.03474387153983116, 0.009004119783639908, -0.039468202739953995, -0.02728256955742836, 0.003007184248417616, -0.06324674934148788, 0.017467817291617393, 0.0031684390269219875, 0.026933910325169563, 0.02817164920270443, 0.005443439353257418, -0.03308774158358574, -0.010241858661174774, 0.005134004168212414, -0.02473735809326172, 0.046476248651742935, 0.0006782507989555597, 0.018653258681297302, -0.0002211805694969371, -0.016055747866630554, 0.03340153396129608, 0.03017643839120865, 0.02750919759273529, 0.052368585020303726, -0.02541724406182766, -0.038352493196725845, 0.014329886063933372, 0.013388507068157196, 0.006733477581292391, -0.0015700551448389888, 0.018130268901586533, -0.00902155227959156, 0.019420307129621506, -0.0034844111651182175, 0.03554578870534897, 0.024388698861002922, -0.022645404562354088, -0.026480654254555702, -0.011165805160999298, -0.029391955584287643, -0.06722146272659302, 0.014713411219418049, 0.06920881569385529, -0.003506202483549714, -0.04487241804599762, -0.03622567281126976, 0.001136410515755415, -0.015253832563757896, 0.008812356740236282, 0.02712567336857319, -0.008446265012025833, -0.0499279722571373, 0.04679004102945328, 0.027613794431090355, 0.009405077435076237, -0.03565038740634918, 0.01009367872029543, 0.011235537007451057, -0.049370117485523224, 0.03122241608798504, 0.02041398547589779, 0.03296571224927902, -0.011348851025104523, -0.01102634146809578, 0.02766609378159046, 0.006101532839238644, -0.01267375610768795, 0.029862646013498306, -0.014974905177950859, -0.0357724167406559, -0.023011496290564537, -0.04518621042370796, -0.045430272817611694, -0.060422610491514206, 0.04013065621256828, 0.049230653792619705, -0.02093697525560856, -0.05327510088682175, 0.0035868298728019, 0.0048114946112036705, 0.03174540400505066, 0.028206516057252884, 0.0013652179623022676, -0.056308433413505554, -0.026654982939362526, -0.008712117560207844, -0.054983530193567276, -0.049614179879426956, -0.005151437129825354, 0.02050115168094635, -0.010520786046981812, 0.05756360664963722, -0.04560460150241852, -0.02675957977771759, 0.02252337336540222, -0.05006743595004082, -0.04731303080916405, 0.01870555616915226, -0.015515326522290707, 0.1050858348608017, -0.016953544691205025, 0.018304599449038506, 0.0633164793252945, -0.04755709320306778, -0.02668984793126583, 0.006245355121791363, 0.010808429680764675, -0.018949618563055992, 0.044523756951093674, -0.023307856172323227, -0.01367615070194006, 0.02900843136012554, 0.0010083873057737947, -0.01431245356798172, -0.05024176463484764, 0.010843295603990555, -0.0008841775124892592, -0.0010677683167159557, 0.008659819141030312, -0.013127012178301811, -0.037167053669691086, -0.004380029160529375, -0.018008239567279816, -0.006014368496835232, -0.01480057556182146, 0.028206516057252884, -0.0070211212150752544, 0.014547797851264477, -0.014207855798304081, -0.018600959330797195, -0.05257778242230415, 0.03497049957513809, -0.025242913514375687, 0.013667434453964233, -0.07656552642583847, -0.006458908785134554, 0.0033100817818194628, 0.03167567402124405, 0.00846369843930006, 0.017014561221003532, -0.027544062584638596, -0.005696217063814402, 0.03681839257478714, 0.03476130589842796, -0.0387708842754364, 0.05916743725538254, -0.015837837010622025, -0.028049619868397713, 0.026707282289862633, -0.00027565855998545885, 0.0029766764491796494, -0.027857856824994087, 0.058853644877672195, 0.0021856562234461308, -0.01654387079179287, 0.006607088726013899, 0.04825441166758537, 0.0012606203090399504, 0.046406518667936325 ]
9,490
asyncclick.types
_clamp
null
def _clamp( # type: ignore self, bound: int, dir: "te.Literal[1, -1]", open: bool ) -> int: if not open: return bound return bound + dir
(self, bound: int, dir: 'te.Literal[1, -1]', open: bool) -> int
[ 0.003719165688380599, 0.018427645787596703, 0.011785519309341908, 0.008664570748806, 0.012611526995897293, 0.0074766515754163265, 0.04492803290486336, 0.0009228725684806705, -0.07282496988773346, -0.06308317929506302, -0.01788265071809292, -0.011155368760228157, 0.03845621645450592, -0.003678716951981187, -0.03162674605846405, 0.056849800050258636, 0.055112630128860474, -0.018393583595752716, 0.007608642335981131, 0.01078068371862173, 0.0957147628068924, 0.03719591349363327, 0.03453906252980232, -0.030128009617328644, -0.04588177427649498, 0.03944401815533638, 0.017831558361649513, 0.04411054030060768, -0.023894628509879112, -0.09019669145345688, -0.045438967645168304, 0.00889023207128048, 0.06332162022590637, -0.041147127747535706, -0.015736732631921768, -0.022293705493211746, 0.04043182358145714, 0.04363366961479187, -0.0750049501657486, -0.03377266600728035, -0.02168058604001999, -0.011794034391641617, 0.008089770562946796, 0.013744095340371132, -0.034113287925720215, -0.03767278417944908, 0.018666081130504608, -0.07480057328939438, 0.024661028757691383, 0.04666520655155182, 0.03300626575946808, -0.011666301637887955, 0.01724398508667946, -0.012483794242143631, -0.05180859565734863, 0.04697176441550255, 0.011036151088774204, 0.0500033013522625, -0.0073361448012292385, -0.022957919165492058, -0.034215472638607025, 0.014714867807924747, -0.037945281714200974, -0.0489814355969429, 0.047482699155807495, -0.00627170130610466, -0.023554006591439247, 0.007842820137739182, -0.008660312741994858, 0.02890177071094513, -0.028067247942090034, 0.02207230217754841, -0.012560433708131313, 0.030604880303144455, -0.01122349314391613, -0.037877157330513, -0.001181532279588282, 0.03309142217040062, 0.05531700327992439, -0.04714207723736763, 0.03917152062058449, -0.011581146158277988, 0.05916602909564972, 0.022583235055208206, -0.011163883842527866, -0.022719483822584152, -0.010073893703520298, 0.012168718501925468, 0.015055489726364613, -0.0009276625351049006, -0.05170641094446182, 0.04530271887779236, -0.03934183344244957, -0.03252939507365227, 0.010320844128727913, 0.05116141587495804, -0.015310956165194511, 0.054022639989852905, -0.03583342581987381, 0.030128009617328644, -0.002042667241767049, 0.07561806589365005, -0.01092544849961996, 0.028646305203437805, -0.003940570168197155, 0.0020288294181227684, 0.01479150727391243, -0.02088012360036373, -0.047482699155807495, -0.018717175349593163, -0.05201296880841255, -0.03716185316443443, -0.027488190680742264, 0.016179541125893593, -0.041147127747535706, 0.08025052398443222, -0.03613998740911484, 0.01689484715461731, 0.0542951375246048, 0.042816177010536194, 0.03380672633647919, -0.0266366358846426, -0.03579936549067497, -0.0640028640627861, 0.02273651398718357, 0.0722118467092514, 0.0068124388344585896, 0.045438967645168304, -0.021731680259108543, -0.004247129894793034, 0.00967366248369217, -0.010942479595541954, -0.010542248375713825, 0.016511648893356323, 0.006855016574263573, 0.038626525551080704, -0.040261510759592056, 0.06522910296916962, -0.03624217212200165, 0.03242720663547516, -0.016801176592707634, 0.007246731780469418, -0.007370206993073225, 0.0120580168440938, 0.016469070687890053, 0.045915838330984116, 0.01743132807314396, 0.048674874007701874, 0.011402319185435772, 0.04901549592614174, -0.04302055016160011, -0.04550709202885628, 0.012211296707391739, 0.04121525213122368, 0.03658279404044151, 0.013880344107747078, -0.018035931512713432, -0.05116141587495804, 0.043872106820344925, 0.00011502642882987857, 0.0048666358925402164, -0.04005713760852814, -0.017150314524769783, 0.0035126637667417526, -0.00846871268004179, -0.037059664726257324, -0.05753104388713837, -0.03075816109776497, -0.011513021774590015, 0.01854686439037323, 0.08856170624494553, -0.0024652511347085238, 0.05211515724658966, -0.010320844128727913, -0.013148006983101368, -0.011700363829731941, -0.02694319561123848, 0.024831339716911316, -0.027948029339313507, -0.02060762606561184, 0.02919130027294159, 0.01933029480278492, 0.04302055016160011, -0.02116965316236019, 0.00029378640465438366, 0.033449072390794754, -0.022498078644275665, -0.009298978373408318, -0.012126141227781773, -0.018597956746816635, -0.05068454518914223, 0.015140645205974579, 0.024252282455563545, -0.10395781695842743, -0.07568619400262833, 0.014076201245188713, 0.008502774871885777, -0.007021069526672363, 0.06553565710783005, -0.023894628509879112, -0.05293264985084534, 0.0878804624080658, 0.038115594536066055, -0.0029953441116958857, 0.010218657553195953, -0.0009532091789878905, -0.013803703710436821, 0.013803703710436821, -0.024337437003850937, 0.006190803833305836, -0.025836173444986343, -0.011989892460405827, -0.007025327533483505, -0.023162292316555977, -0.011036151088774204, 0.011836612597107887, -0.034811560064554214, 0.02021591179072857, 0.024661028757691383, 0.055691685527563095, 0.025206023827195168, -0.05984727293252945, 0.05807603895664215, -0.021731680259108543, 0.03801340609788895, -0.009043511934578419, -0.003751099109649658, -0.03542467951774597, 0.013216131366789341, 0.04230524227023125, 0.0006652771844528615, -0.037945281714200974, -0.03644654527306557, -0.017439842224121094, -0.02110152877867222, 0.005701159592717886, -0.021646523848176003, -0.02529117837548256, -0.0284078698605299, 0.002539762295782566, -0.01924513839185238, 0.04424678906798363, -0.016724536195397377, 0.10940776765346527, 0.034113287925720215, -0.01677563041448593, -0.015353533439338207, -0.014093232341110706, -0.0017552673816680908, 0.06948687136173248, -0.03631029650568962, 0.003397703869268298, -0.053852327167987823, -0.004960306920111179, 0.04734645038843155, 0.04949236661195755, -0.07139435410499573, -0.023162292316555977, -0.06911218911409378, -0.013880344107747078, -0.06001758575439453, -0.09135480225086212, -0.033619385212659836, -0.02859521098434925, 0.008426135405898094, 0.030179103836417198, -0.005824635270982981, -0.05964289978146553, 0.03668498247861862, 0.009111636318266392, 0.002658979967236519, 0.018478740006685257, 0.0033019038382917643, -0.0027377489022910595, 0.010090924799442291, 0.03075816109776497, 0.05974508821964264, 0.015728218480944633, 0.02449071779847145, -0.03239314630627632, 0.02185089699923992, 0.02275354601442814, -0.07643555849790573, 0.04220305755734444, -0.04227118194103241, 0.04949236661195755, 0.015668608248233795, -0.020147787407040596, -0.02626195177435875, -0.009724755771458149, 0.0035105347633361816, 0.03522030636668205, 0.07582244277000427, 0.0241160336881876, 0.06342380493879318, -0.05875728279352188, 0.009486320428550243, -0.011598177254199982, 0.032563455402851105, -0.040397759526968, -0.008907263167202473, -0.08413361757993698, -0.055385127663612366, 0.015915559604763985, 0.012236842885613441, -0.019551698118448257, -0.04744863510131836, -0.015004396438598633, 0.016026262193918228, 0.01745687425136566, -0.029736295342445374, -0.0033934460952878, 0.009145698510110378, -0.07187122851610184, 0.09162729978561401, 0.03435172140598297, 0.006182288285344839, 0.039103396236896515, -0.030962534248828888, 0.048163942992687225, -0.007749149110168219, 0.005053977947682142, -0.020352160558104515, -0.01817218028008938, -0.054227013140916824, -0.009758817963302135, 0.015140645205974579, 0.030996596440672874, 0.031780026853084564, -0.01644352450966835, -0.04019338637590408, 0.04649489372968674, 0.020658720284700394, -0.05320514738559723, 0.03045160137116909, 0.002277909079566598, 0.05749698355793953, 0.03702560439705849, 0.035969674587249756, -0.02450774796307087, 0.050309859216213226, -0.00042950297938659787, 0.006263185758143663, 0.027164598926901817, 0.06022195890545845, 0.035015933215618134, 0.05347764492034912, 0.020829031243920326, 0.048674874007701874, -0.01757609099149704, -0.0035254370886832476, -0.008847654797136784, -0.043190859258174896, -0.0876079648733139, -0.024422593414783478, 0.01571970246732235, 0.026091640815138817, -0.02908911369740963, 0.017158830538392067, 0.008413361385464668, 0.016383914276957512, -0.04145368933677673, -0.003167784074321389, 0.02488243207335472, -0.028918802738189697, -0.006850758567452431, -0.020352160558104515, -0.060392268002033234, 0.017090706154704094, 0.05552137643098831, -0.02675585262477398, -0.06512691080570221, 0.014621196314692497, -0.010763652622699738, -0.05163828656077385, 0.03532249480485916, -0.024473685771226883, 0.028748491778969765, -0.02919130027294159, 0.02450774796307087, 0.030383476987481117, -0.003478601574897766, 0.03699154034256935, 0.030298320576548576, -0.02575101889669895, -0.012040985748171806, 0.0029123176354914904, -0.03508405759930611, -0.01709922030568123, 0.024848369881510735, 0.051195476204156876, -0.03094550222158432, 0.009401164948940277, 0.0486067496240139, -0.04673333093523979, 0.022106364369392395, 0.016469070687890053, -0.029940668493509293, 0.06618284434080124, 0.031081750988960266, 0.03631029650568962, 0.05279640108346939, -0.028271621093153954, 0.04414460435509682, 0.018291397020220757, 0.02060762606561184, 0.0532732717692852, 0.03849027678370476, -0.02139105647802353, 0.01186215877532959, -0.07916053384542465, 0.023162292316555977, 0.0203862227499485, 0.017933744937181473, 0.02820349670946598, -0.07255247235298157, -0.040363699197769165, 0.015600484795868397, -0.014723382890224457, -0.04332710802555084, -0.023758379742503166, -0.11444897204637527, 0.034402813762426376, -0.019057797268033028, -0.021254807710647583, -0.0339600071310997, 0.03658279404044151, -0.03559499233961105, -0.0332617312669754, 0.03934183344244957, -0.02634710632264614, -0.0031720418483018875, -0.0005540428683161736, -0.0593363419175148, 0.021459180861711502, -0.0020330871921032667, -0.002891028765588999, 0.013829250819981098, 0.022974949330091476, -0.007906686514616013, 0.09230854362249374, 0.0056458087638020515, 0.04101087898015976, 0.030792223289608955, -0.0051391334272921085, -0.04196462035179138, -0.002565308939665556, 0.0003052291867788881, -0.03624217212200165, -0.02731787972152233, -0.005109328776597977, 0.027743656188249588, 0.007434073835611343, 0.011615208350121975, 0.007527744863182306, -0.0722118467092514, -0.1365893930196762, 0.0005048123421147466, -0.019449511542916298, 0.0008329270640388131, 0.01634133793413639, 0.04441710188984871, -0.030826285481452942, -0.034607186913490295, -0.0435655452311039, 0.035731241106987, 0.013752610422670841, -0.038217779248952866, -0.054329197853803635, -0.02820349670946598, 0.016809692606329918, -0.040942754596471786, 0.0234177578240633, -0.011155368760228157, 0.04526865482330322, 0.018768267706036568, -0.0056670974008738995, 0.05262608826160431, 0.05586199834942818, 0.00015540875028818846, 0.0007413849234580994, -0.05528293922543526, -0.007425558287650347, 0.0021799802780151367, -0.031286124140024185, 0.05163828656077385, -0.115130215883255, 0.05974508821964264, -0.026381168514490128, 0.004904955625534058, 0.013701517134904861, 0.05436326190829277, -0.02207230217754841, -0.035697177052497864, -0.016085870563983917, 0.01621360331773758, 0.00624615466222167, -0.034811560064554214, 0.04513240605592728, -0.020352160558104515, -0.02139105647802353, -0.009699209593236446, -0.013948468491435051, -0.007825789041817188, 0.021442150697112083, -0.00001686477662588004, -0.0241160336881876, 0.014748929999768734, -0.0653994083404541, -0.012202780693769455, 0.06860125809907913, -0.002920833183452487, -0.02529117837548256, 0.02001153863966465, 0.01416135672479868, 0.0073404028080403805, -0.010014284402132034, 0.05729261040687561, 0.06921437382698059, -0.06526315957307816, -0.01196434535086155, -0.021118558943271637, -0.033227670937776566, -0.04370179399847984, -0.004687809385359287, -0.07922866195440292, 0.02937864139676094, -0.03767278417944908, -0.01405065506696701, 0.03726403787732124, 0.054806068539619446, -0.011104275472462177, 0.03634436056017876, 0.014765961095690727, 0.042611803859472275, 0.04840237647294998, -0.05484013259410858, -0.01673305220901966, -0.008898748084902763, 0.043293047696352005, -0.01600923016667366, -0.04945830628275871, 0.0724843442440033, 0.0035211793147027493, -0.002512086648494005, 0.024814307689666748, -0.05398857593536377, 0.02646632492542267, 0.055214814841747284, 0.03160971403121948, -0.01795077510178089, -0.00605455506592989, -0.04009120166301727, 0.006493105553090572, -0.005594715476036072, 0.006156741641461849, -0.038251843303442, -0.026296013966202736, 0.0024865400046110153, 0.024643996730446815, 0.013846281915903091, 0.03869464993476868, 0.06338974088430405, -0.03278486058115959, -0.044757723808288574, -0.056849800050258636, 0.020743874832987785, -0.018223272636532784, 0.05078672990202904, 0.04530271887779236, 0.018478740006685257, 0.031098783016204834, -0.014280574396252632, -0.013454566709697247, 0.014135810546576977, 0.009869520552456379, 0.008907263167202473, -0.03923964500427246, -0.024064939469099045, 0.026909133419394493, 0.007957779802381992, -0.008272855542600155, -0.028952864930033684, -0.023741349577903748, 0.014519009739160538, 0.014604165218770504, -0.02675585262477398, 0.01190473698079586, -0.006748571991920471, -0.04482584819197655, 0.009375618770718575, 0.009707724675536156, 0.020181849598884583, -0.02764146961271763, 0.02517196163535118, 0.0009830136550590396, -0.07629930973052979, -0.01951763592660427, 0.01258598081767559, 0.02956598438322544, 0.00035206470056436956, -0.01805296167731285, -0.09121855348348618, 0.09121855348348618, -0.015813373029232025, -0.0064718169160187244, 0.050922978669404984, -0.06928250193595886, -0.11662895232439041, -0.00034541194327175617, 0.028237558901309967, -0.010457092896103859, -0.019773103296756744, -0.007604384794831276, -0.05964289978146553, -0.006748571991920471, -0.0016254052752628922, -0.02849302440881729, 0.050309859216213226, 0.0016541453078389168, -0.03075816109776497, -0.02978738769888878, -0.016026262193918228, -0.039989013224840164, 0.040942754596471786, 0.04441710188984871, 0.05620262026786804, 0.012713713571429253, -0.02060762606561184, 0.0015775053761899471, -0.004615426994860172, 0.053137023001909256, 0.03934183344244957, -0.0171417985111475, -0.09333041310310364, 0.056475117802619934, 0.008898748084902763, -0.033449072390794754, 0.020352160558104515, 0.0067868921905756, 0.017899682745337486, -0.02673882246017456, 0.011691847816109657, -0.014374245889484882, -0.012066531926393509, -0.018904516473412514, 0.009401164948940277, 0.0478573814034462, -0.057633232325315475, -0.048845186829566956, -0.0032146195881068707, 0.037740908563137054, -0.01405917014926672, -0.021339964121580124, 0.024831339716911316, -0.011938799172639847, 0.01854686439037323, 0.009724755771458149, 0.046597082167863846, -0.03486265614628792, -0.024320406839251518, -0.008898748084902763, 0.036650918424129486, -0.0020086050499230623, -0.03515218198299408, -0.03310845047235489, 0.013880344107747078, -0.052455779165029526, 0.03525437042117119, -0.05231953039765358, -0.0015413142973557115, -0.06189100444316864, -0.055112630128860474, -0.013199100270867348, -0.004743160214275122, -0.013795188628137112, 0.03736622631549835, 0.01844467781484127, 0.019994506612420082, -0.008191957138478756, -0.05565762519836426, -0.020284036174416542, -0.041555874049663544, 0.028033185750246048, 0.08420173823833466, 0.05664542689919472, -0.034113287925720215, 0.03995495289564133, 0.03026425838470459, 0.06505879014730453, 0.01273926068097353, -0.007293567061424255, -0.036957480013370514, 0.014757445082068443, -0.0055776843801140785, -0.062231626361608505, -0.00967366248369217, 0.0068379854783415794, 0.00027382810367271304, -0.003597819246351719, 0.07684430480003357, -0.031371280550956726, -0.03804747015237808, -0.021714648231863976, -0.028561148792505264, -0.05300077423453331, 0.06114163622260094, 0.020232941955327988, 0.0029655396938323975, 0.02489946410059929, 0.019006703048944473, 0.05494231730699539, -0.009648116305470467, -0.010465608909726143, 0.005330733023583889, 0.0024311889428645372, -0.036650918424129486, 0.024133063852787018, 0.005811861716210842, -0.019790133461356163, 0.017073674127459526, 0.004221583250910044, 0.026602573692798615, -0.04043182358145714, 0.027181630954146385, -0.023979784920811653, 0.006944429595023394, 0.0023417756892740726, -0.08059114962816238, 0.01122349314391613, -0.0489814355969429, -0.0028186466079205275, 0.0008574092644266784, 0.008187700062990189, 0.04322492331266403, 0.053852327167987823, 0.002959153149276972, 0.022583235055208206, -0.023451820015907288, -0.02362213097512722, 0.030911440029740334, 0.007489424664527178, 0.020062630996108055, -0.04830019176006317, -0.03278486058115959, 0.019057797268033028, 0.00014050654135644436, 0.011666301637887955, -0.02207230217754841, -0.008464454673230648, 0.05487419292330742, 0.01951763592660427, 0.03201846033334732, -0.0015104453777894378, 0.02236182987689972, -0.042713988572359085, -0.0047729648649692535, 0.035356555134058, 0.013863313011825085, 0.012509340420365334, -0.0007658671238459647, 0.024320406839251518, 0.0058033461682498455, 0.06451379507780075, -0.016818208619952202, 0.05667949095368385, -0.008323948830366135, 0.03658279404044151 ]
9,499
asyncclick.exceptions
MissingParameter
Raised if click required an option or argument but it was not provided when invoking the script. .. versionadded:: 4.0 :param param_type: a string that indicates the type of the parameter. The default is to inherit the parameter type from the given `param`. Valid values are ``'parameter'``, ``'option'`` or ``'argument'``.
class MissingParameter(BadParameter): """Raised if click required an option or argument but it was not provided when invoking the script. .. versionadded:: 4.0 :param param_type: a string that indicates the type of the parameter. The default is to inherit the parameter type from the given `param`. Valid values are ``'parameter'``, ``'option'`` or ``'argument'``. """ def __init__( self, message: t.Optional[str] = None, ctx: t.Optional["Context"] = None, param: t.Optional["Parameter"] = None, param_hint: t.Optional[str] = None, param_type: t.Optional[str] = None, ) -> None: super().__init__(message or "", ctx, param, param_hint) self.param_type = param_type def format_message(self) -> str: if self.param_hint is not None: param_hint: t.Optional[str] = self.param_hint elif self.param is not None: param_hint = self.param.get_error_hint(self.ctx) # type: ignore else: param_hint = None param_hint = _join_param_hints(param_hint) param_hint = f" {param_hint}" if param_hint else "" param_type = self.param_type if param_type is None and self.param is not None: param_type = self.param.param_type_name msg = self.message if self.param is not None: msg_extra = self.param.type.get_missing_message(self.param) if msg_extra: if msg: msg += f". {msg_extra}" else: msg = msg_extra msg = f" {msg}" if msg else "" # Translate param_type for known types. if param_type == "argument": missing = _("Missing argument") elif param_type == "option": missing = _("Missing option") elif param_type == "parameter": missing = _("Missing parameter") else: missing = _("Missing {param_type}").format(param_type=param_type) return f"{missing}{param_hint}.{msg}" def __str__(self) -> str: if not self.message: param_name = self.param.name if self.param else None return _("Missing parameter: {param_name}").format(param_name=param_name) else: return self.message
(message: Optional[str] = None, ctx: Optional[ForwardRef('Context')] = None, param: Optional[ForwardRef('Parameter')] = None, param_hint: Optional[str] = None, param_type: Optional[str] = None) -> None
[ 0.029546169564127922, -0.019715582951903343, 0.06050707399845123, 0.014546364545822144, 0.06906802207231522, -0.07352987676858902, 0.02513873018324375, 0.029600583016872406, 0.008833017200231552, -0.053941257297992706, 0.011735035106539726, 0.018273644149303436, -0.014101993292570114, -0.03571295738220215, -0.06467872112989426, 0.05804035812616348, 0.042405735701322556, 0.031124141067266464, 0.01966117136180401, -0.04062825068831444, 0.0520186685025692, 0.010138925164937973, -0.00990313570946455, -0.00006496949208667502, 0.008950911462306976, -0.021837685257196426, 0.022835252806544304, -0.02071315236389637, -0.0068877581506967545, -0.03972136974334717, -0.04258711263537407, -0.040700800716876984, -0.02744220569729805, 0.06275613605976105, -0.022962216287851334, 0.020132748410105705, -0.011172768659889698, 0.048354871571063995, -0.016441745683550835, -0.056371696293354034, -0.024667151272296906, 0.03739975392818451, 0.028566738590598106, -0.04258711263537407, -0.008443058468401432, -0.03545903041958809, -0.0123698515817523, 0.06174042820930481, -0.1552579551935196, 0.0015167577657848597, 0.053143203258514404, -0.004001610446721315, 0.02368772029876709, -0.0017752187559381127, -0.05473931133747101, 0.02341565676033497, 0.04186160862445831, 0.01864546537399292, -0.004670435097068548, 0.041607681661844254, 0.03339134156703949, 0.09794310480356216, 0.010973255150020123, 0.005740554071962833, 0.0083115603774786, -0.034642837941646576, 0.005745088681578636, -0.020114611834287643, -0.0059944805689156055, 0.03906841576099396, 0.03362713009119034, -0.0024939216673374176, -0.053796157240867615, 0.04791957139968872, 0.05064021050930023, -0.038125257939100266, -0.013965960592031479, 0.00038457405753433704, 0.04984215646982193, 0.029310381039977074, 0.05622659623622894, -0.022726427763700485, -0.03105159103870392, -0.03413498401641846, 0.0014963529538363218, 0.0027478481642901897, -0.027859371155500412, -0.01966117136180401, 0.053034376353025436, -0.01879056543111801, -0.042006708681583405, -0.046033259481191635, 0.0034733526408672333, 0.03794388473033905, 0.0012957056751474738, -0.04204298555850983, 0.02004205994307995, -0.05448538437485695, -0.03507814183831215, -0.02058618888258934, 0.04650483652949333, -0.014999805018305779, 0.07389263063669205, -0.032049160450696945, 0.0730220228433609, -0.0445459745824337, -0.006076099816709757, 0.012623777613043785, 0.03783505782485008, 0.007948808372020721, 0.004756588488817215, -0.024685289710760117, -0.08466637134552002, -0.024939216673374176, -0.018219230696558952, 0.008093909360468388, -0.022454362362623215, -0.039431165903806686, -0.027913784608244896, 0.022672014310956, 0.005332457832992077, 0.015117699280381203, -0.05502951517701149, -0.08706053346395493, 0.021293556317687035, -0.014709603041410446, -0.04490872472524643, -0.014002236537635326, 0.003781692124903202, -0.0072051663883030415, 0.0299089215695858, -0.019733721390366554, -0.040338046848773956, -0.023506345227360725, -0.04465480148792267, 0.020640602335333824, 0.0053007169626653194, 0.05891096219420433, -0.007626865524798632, 0.06565815210342407, 0.018400607630610466, 0.037109553813934326, -0.01915331743657589, -0.009395282715559006, 0.025574032217264175, -0.04737544059753418, 0.024522051215171814, -0.03779878094792366, -0.020223436877131462, 0.035531580448150635, 0.02577354572713375, -0.03654728829860687, -0.04541657865047455, -0.01567089557647705, 0.04131747782230377, -0.020930804312229156, -0.005754157435148954, -0.05336085334420204, -0.008737794123589993, -0.02923782914876938, 0.03924979269504547, -0.07857213169336319, 0.06359046697616577, 0.020223436877131462, 0.030598150566220284, 0.06224828213453293, 0.015915753319859505, 0.0664924830198288, -0.005078531336039305, 0.026172572746872902, -0.026988765224814415, 0.0015711706364527345, -0.007586055900901556, 0.023379381746053696, 0.04211553558707237, 0.08067609369754791, -0.03311927989125252, -0.029491756111383438, 0.026480913162231445, -0.08031334728002548, 0.014936323277652264, -0.03299231454730034, -0.001695866696536541, -0.013693897053599358, 0.04781074449419975, -0.037472303956747055, 0.020223436877131462, 0.006661037914454937, -0.0474117174744606, -0.025846095755696297, -0.001623316202312708, 0.006992049049586058, 0.03428008779883385, 0.0663473829627037, -0.053904980421066284, 0.018863115459680557, -0.023216143250465393, -0.01953420788049698, 0.042913589626550674, -0.026172572746872902, 0.011336007155478, 0.011472038924694061, 0.026898078620433807, -0.0014918185770511627, 0.0034325430169701576, 0.034388910979032516, 0.04403812065720558, -0.017901822924613953, -0.02561030723154545, -0.02279897779226303, -0.014664258807897568, -0.03186778351664543, 0.024449501186609268, 0.015362557023763657, -0.014283369295299053, -0.02004205994307995, 0.020259711891412735, 0.012378919869661331, -0.024014197289943695, 0.041244927793741226, 0.08640757948160172, -0.005255373194813728, 0.0758877694606781, 0.03188592195510864, 0.07207886874675751, -0.0033803973346948624, 0.08923704922199249, -0.00754524627700448, -0.013149768114089966, 0.01229730062186718, -0.01982440985739231, -0.021910235285758972, 0.0001363154879072681, 0.028439775109291077, -0.08981744945049286, -0.021311692893505096, 0.008071237243711948, -0.05386870726943016, -0.012514951638877392, -0.027025042101740837, 0.000997568597085774, 0.035785507410764694, -0.034388910979032516, 0.06972097605466843, -0.018473157659173012, -0.04262338578701019, 0.008610831573605537, 0.02548334375023842, -0.007699416019022465, -0.0032874420285224915, 0.017575345933437347, 0.04864507541060448, -0.04273221269249916, -0.012650984339416027, -0.021438656374812126, -0.017729515209794044, -0.034914903342723846, -0.009304595179855824, 0.009894067421555519, 0.029455481097102165, -0.05477558821439743, -0.0064207143150269985, -0.03440704941749573, 0.09678229689598083, 0.04113610461354256, -0.029201554134488106, -0.00976710394024849, -0.007808241993188858, 0.0018001579446718097, 0.030453050509095192, 0.05053138732910156, 0.00012398758553899825, 0.013322075828909874, 0.028566738590598106, 0.0061441161669790745, 0.018001578748226166, -0.013684827834367752, 0.025846095755696297, -0.002663961611688137, 0.016441745683550835, 0.04258711263537407, -0.024268124252557755, 0.037980157881975174, 0.05230887234210968, -0.03856056183576584, 0.06319143623113632, 0.009857791475951672, -0.022835252806544304, -0.04055570065975189, 0.06152277812361717, 0.0061305128037929535, 0.06257475912570953, 0.03638404980301857, 0.011263457126915455, -0.011263457126915455, 0.03689190372824669, -0.005327923223376274, 0.0035118949599564075, 0.01584320329129696, -0.03794388473033905, 0.0280770231038332, 0.01891752891242504, 0.018001578748226166, -0.03018098510801792, -0.03591247275471687, -0.03257514908909798, 0.009830585680902004, -0.06413459777832031, 0.029473619535565376, -0.036692388355731964, 0.003273838898167014, 0.035295791923999786, 0.03326437994837761, -0.015045149251818657, 0.03389919549226761, 0.04773819446563721, 0.03932234272360802, -0.049660779535770416, 0.01190734189003706, 0.02423184923827648, 0.013031873852014542, 0.009422489441931248, 0.03250259906053543, -0.03257514908909798, -0.03409871086478233, 0.008533746004104614, -0.02602747268974781, 0.016396401450037956, 0.013512521050870419, 0.0001684814051259309, -0.0011301998747512698, 0.042260635644197464, -0.040338046848773956, -0.04955195635557175, -0.054050084203481674, -0.0017332754796370864, -0.014011304825544357, 0.0020790237467736006, 0.046142082661390305, -0.011970823630690575, 0.026843665167689323, -0.02470342628657818, -0.040338046848773956, 0.011054874397814274, 0.005518368445336819, 0.014782153069972992, 0.017303282395005226, 0.046432286500930786, 0.08626247942447662, -0.011544589884579182, -0.005341526586562395, -0.011481108143925667, -0.011290662921965122, -0.01953420788049698, 0.022708289325237274, -0.04287731274962425, 0.02510245516896248, -0.04697641357779503, 0.017393968999385834, -0.0006863952148705721, 0.06449734419584274, -0.035422757267951965, 0.0028861474711447954, 0.01274167187511921, -0.005636262707412243, -0.013829928822815418, 0.052490249276161194, -0.04001156985759735, 0.0021493069361895323, 0.007966945879161358, 0.007119012530893087, -0.06123257800936699, 0.01086442917585373, -0.030217260122299194, 0.010093580931425095, -0.010220544412732124, 0.02639022469520569, 0.0071915630251169205, -0.046686213463544846, -0.02900204062461853, 0.04349399358034134, -0.014727740548551083, -0.028040748089551926, 0.027551032602787018, -0.035404618829488754, -0.016060855239629745, 0.011236250400543213, 0.007753829006105661, 0.0016040450427681208, -0.012179406359791756, -0.0028816130943596363, -0.024159299209713936, 0.06119630113244057, 0.03375409543514252, 0.00010159896191908047, -0.028820665553212166, 0.0024123024195432663, -0.014609846286475658, -0.030326087027788162, 0.012787016108632088, 0.012796085327863693, -0.020549913868308067, -0.016668464988470078, -0.030833939090371132, 0.01966117136180401, 0.024032335728406906, -0.004135375376790762, 0.013721102848649025, -0.03667424991726875, -0.0020268780644983053, -0.038379184901714325, -0.004591083154082298, -0.04897155240178108, -0.02343379333615303, 0.019987648352980614, -0.014863772317767143, -0.04363909363746643, 0.012796085327863693, -0.04349399358034134, -0.016378263011574745, 0.006375370547175407, -0.04625090956687927, 0.04436459764838219, 0.035531580448150635, 0.06881409883499146, 0.04516265168786049, -0.06953960657119751, 0.009939410723745823, 0.0520186685025692, -0.011263457126915455, -0.054557934403419495, 0.0326114259660244, -0.013167905621230602, -0.049261752516031265, -0.052889276295900345, -0.01112742442637682, -0.007817310281097889, -0.028802527114748955, 0.02045922540128231, 0.057278577238321304, -0.013829928822815418, 0.012360782362520695, 0.012360782362520695, 0.04683131352066994, 0.018046922981739044, -0.031414344906806946, -0.02138424478471279, 0.04233318567276001, -0.0006852616206742823, -0.03805270791053772, 0.02604561112821102, 0.08169180154800415, 0.03212171047925949, -0.07581521570682526, -0.047194063663482666, -0.08648013323545456, -0.11840233206748962, 0.022599464282393456, -0.01456450205296278, 0.03705514222383499, 0.018527571111917496, 0.04929802939295769, -0.05346968024969101, -0.015163043513894081, 0.0292741060256958, -0.0024712495505809784, 0.04737544059753418, -0.023125454783439636, -0.061958082020282745, 0.02822212316095829, -0.014736809767782688, 0.009830585680902004, 0.026444638147950172, 0.04324006661772728, -0.005559178069233894, 0.023742133751511574, 0.021982785314321518, 0.006053427699953318, -0.024503912776708603, 0.016269437968730927, 0.051075514405965805, -0.010973255150020123, 0.017901822924613953, 0.002654892858117819, -0.03081580251455307, 0.009395282715559006, -0.014836566522717476, 0.026644151657819748, 0.0023782942444086075, -0.015553002245724201, -0.059999220073223114, -0.009576658718287945, 0.017711378633975983, 0.007645003497600555, -0.0020268780644983053, -0.01481842901557684, 0.014147337526082993, -0.01321324985474348, -0.010710259899497032, -0.004078695550560951, 0.017140043899416924, -0.016233162954449654, 0.03415312245488167, -0.03393547236919403, 0.04585188254714012, -0.11426695436239243, 0.04440087452530861, 0.07450930774211884, 0.04342144355177879, -0.008248078636825085, -0.04178905859589577, 0.015280937775969505, 0.09670974314212799, -0.007826379500329494, 0.010356576181948185, -0.02874811366200447, -0.0130046671256423, 0.007363870274275541, 0.06957587599754333, -0.005640797317028046, -0.017194455489516258, -0.0024735168553888798, 0.014863772317767143, -0.06417086720466614, 0.024376949295401573, -0.012850497849285603, -0.03935861587524414, -0.04516265168786049, 0.023597031831741333, 0.030380498617887497, 0.027677996084094048, 0.01904449239373207, 0.06119630113244057, -0.0059355334378778934, -0.010837223380804062, 0.06036197021603584, -0.07799173146486282, 0.061958082020282745, -0.07980549335479736, 0.011490177363157272, 0.023143593221902847, 0.038887038826942444, -0.024376949295401573, 0.028058884665369987, 0.0318133719265461, -0.019606757909059525, -0.00180355878546834, 0.02889321558177471, -0.008166459389030933, -0.03174082189798355, -0.02758730761706829, 0.03972136974334717, -0.014401263557374477, 0.00022105214884504676, -0.027931921184062958, 0.006352698430418968, 0.05005980655550957, 0.027152003720402718, 0.04385674372315407, 0.0126872593536973, -0.035422757267951965, 0.0104200579226017, -0.002033679746091366, -0.07777407765388489, 0.004026549868285656, 0.016795428469777107, 0.026517188176512718, -0.012179406359791756, -0.022327400743961334, -0.035023726522922516, -0.013258594088256359, -0.02317986823618412, 0.0007532776799052954, -0.007490833755582571, -0.009912204928696156, 0.03906841576099396, 0.029110867530107498, 0.007291319780051708, -0.017765790224075317, 0.025827959179878235, 0.002902017906308174, -0.00976710394024849, -0.04342144355177879, 0.006153184920549393, -0.03248446062207222, 0.05735112726688385, 0.009957549162209034, -0.034515876322984695, -0.0053596640937030315, 0.005541040562093258, -0.05259907245635986, -0.012179406359791756, 0.052635349333286285, -0.03805270791053772, 0.05687955021858215, 0.0739651769399643, 0.054956961423158646, -0.014156405813992023, 0.009703622199594975, -0.02486666478216648, -0.03161385655403137, -0.0024463103618472815, -0.0040877643041312695, 0.04646855965256691, 0.05270789936184883, 0.022962216287851334, -0.04400184750556946, -0.01164434663951397, -0.05473931133747101, 0.062066905200481415, 0.01592482253909111, -0.026063747704029083, -0.035676680505275726, -0.017520932480692863, -0.03701886534690857, -0.008343301713466644, -0.017919959500432014, 0.017049355432391167, 0.08880174905061722, -0.0014566769823431969, -0.0704827606678009, 0.005033187102526426, -0.016858909279108047, -0.0007583788828924298, -0.05459421128034592, 0.006692778784781694, -0.05245397239923477, -0.017584415152668953, -0.08560952544212341, -0.03288349136710167, -0.011290662921965122, -0.013158837333321571, 0.002228659112006426, -0.02134796977043152, 0.011816654354333878, -0.022490639239549637, -0.006815207656472921, -0.039576269686222076, -0.008270750753581524, 0.07287692278623581, 0.02771427109837532, -0.024286262691020966, -0.08800369501113892, 0.03155944496393204, -0.012514951638877392, 0.07806427776813507, -0.04244201257824898, -0.06591208279132843, 0.04672248661518097, -0.028639288619160652, 0.02033226191997528, 0.04701269045472145, -0.02510245516896248, -0.02461273968219757, 0.021456794813275337, 0.015616483986377716, -0.04955195635557175, 0.021202867850661278, -0.0010752202942967415, -0.00708727166056633, 0.00022842054022476077, -0.010147993452847004, 0.02160189487040043, 0.012995598837733269, -0.021003354340791702, -0.017983442172408104, 0.0028022609185427427, -0.06551305204629898, 0.04055570065975189, -0.007658606395125389, -0.016060855239629745, -0.059237439185380936, 0.03393547236919403, -0.02290780283510685, -0.031378068029880524, 0.01224288810044527, -0.037363480776548386, 0.015054217539727688, -0.018681740388274193, -0.026353949680924416, -0.004956102464348078, -0.03224867209792137, -0.07371125370264053, 0.039576269686222076, -0.005046790465712547, 0.03253887593746185, 0.011871066875755787, -0.013666690327227116, -0.0063118888065218925, -0.08372321724891663, -0.03823408484458923, -0.014791222289204597, -0.050676487386226654, 0.05343340337276459, -0.02526569366455078, -0.07900743931531906, -0.018718015402555466, -0.07338477671146393, -0.02201906032860279, 0.018255505710840225, 0.045779332518577576, -0.024449501186609268, 0.003251166781410575, 0.033083003014326096, -0.04998725652694702, 0.03224867209792137, 0.01579785905778408, -0.052127495408058167, 0.02889321558177471, -0.007481765002012253, 0.007753829006105661, 0.007966945879161358, 0.0006501200259663165, -0.07091806083917618, -0.003944930620491505, 0.007236907258629799, 0.004595617298036814, 0.0029541635885834694, -0.055464815348386765, -0.016904253512620926, -0.0006297152140177786, 0.0149544607847929, 0.017838340252637863, -0.022835252806544304, 0.04762936756014824, 0.03906841576099396, -0.03393547236919403, -0.07661326974630356, 0.094170480966568, -0.028058884665369987, 0.008978118188679218, 0.0018727084388956428, -0.0396125428378582, 0.05136571452021599, 0.0688866525888443, -0.015743447467684746, 0.033463891595602036, 0.011345076374709606, -0.005708813201636076, -0.0022025862708687782, -0.03701886534690857, 0.07871723175048828, -0.02575540915131569, -0.03841546177864075, 0.046940140426158905, 0.0663473829627037, -0.008896498940885067, -0.009894067421555519, 0.04585188254714012, -0.02279897779226303, 0.04414694756269455, -0.04269593954086304, -0.04617835953831673, 0.044872451573610306, 0.048209771513938904, -0.01649615727365017, 0.02394164726138115, 0.07131709158420563, -0.006964842788875103, -0.00521002896130085, -0.052127495408058167, 0.017638826742768288, 0.035803645849227905, -0.01282329112291336, 0.024050472304224968, 0.029092729091644287, -0.0332462415099144, 0.04353026673197746 ]
9,500
asyncclick.exceptions
__init__
null
def __init__( self, message: t.Optional[str] = None, ctx: t.Optional["Context"] = None, param: t.Optional["Parameter"] = None, param_hint: t.Optional[str] = None, param_type: t.Optional[str] = None, ) -> None: super().__init__(message or "", ctx, param, param_hint) self.param_type = param_type
(self, message: Optional[str] = None, ctx: Optional[ForwardRef('Context')] = None, param: Optional[ForwardRef('Parameter')] = None, param_hint: Optional[str] = None, param_type: Optional[str] = None) -> None
[ 0.0034560190979391336, -0.021847713738679886, 0.033704765141010284, 0.005727248266339302, 0.028471559286117554, -0.051783107221126556, -0.0021660160273313522, 0.043000105768442154, -0.0005706663359887898, -0.0489286333322525, 0.018654726445674896, 0.048343099653720856, -0.034546468406915665, 0.012698754668235779, -0.02916688099503517, 0.043183084577322006, 0.023348143324255943, 0.017062807455658913, 0.008389594964683056, -0.05112438276410103, 0.013567905873060226, 0.011061090975999832, -0.00030791963217779994, 0.0653967559337616, 0.019359197467565536, 0.030923480167984962, -0.007492997217923403, -0.021975798532366753, 0.010374919511377811, -0.04376861825585365, -0.019834943115711212, -0.03123454563319683, -0.024189846590161324, 0.08307254314422607, -0.011600879952311516, 0.015461740083992481, -0.04530564323067665, 0.03835243731737137, -0.10385897755622864, -0.03222263231873512, -0.006857144646346569, 0.041499678045511246, -0.031252842396497726, -0.008645766414701939, 0.020127709954977036, -0.014089396223425865, 0.004485276993364096, 0.05639418214559555, -0.07396018505096436, 0.026623470708727837, -0.0036824559792876244, -0.008883639238774776, 0.005503098946064711, -0.002077957382425666, -0.04859926924109459, 0.021536648273468018, 0.04464691877365112, 0.013137904927134514, 0.0027492621447890997, 0.05039246380329132, -0.009139809757471085, 0.054052047431468964, 0.023311547935009003, 0.02722730115056038, 0.005224055610597134, -0.03357667848467827, -0.006651293020695448, -0.0007873822469264269, 0.007396933156996965, 0.04801373556256294, 0.08673212677240372, -0.02898390218615532, -0.05738227069377899, 0.039669886231422424, 0.03959669545292854, -0.008005338720977306, -0.038864776492118835, 0.03941371291875839, 0.02351282350718975, 0.05031927302479744, 0.053429920226335526, -0.0010898697655647993, -0.05284438654780388, -0.027007726952433586, 0.01631259359419346, -0.021006008610129356, -0.03868179768323898, -0.06506739556789398, -0.013375777751207352, 0.013330033048987389, -0.042158402502536774, -0.02148175612092018, -0.039779674261808395, 0.004071286879479885, 0.03996265307068825, -0.06671420484781265, 0.012625562958419323, -0.03042943775653839, -0.006020015105605125, 0.017959406599402428, -0.000506337673868984, 0.0049358634278178215, -0.012250456027686596, -0.042194999754428864, 0.02565368078649044, -0.05321034416556358, 0.017986852675676346, -0.008984277956187725, 0.03646774962544441, -0.009487470611929893, 0.005141715053468943, 0.002005909336730838, -0.08080360293388367, 0.023037077859044075, -0.04252436012029648, 0.04501287639141083, -0.0005080531118437648, -0.01785876788198948, 0.007383209653198719, 0.02034728415310383, 0.02214048057794571, 0.011344708502292633, -0.05101459473371506, -0.05917546525597572, 0.0010801489697769284, 0.019377494230866432, -0.022927291691303253, -0.07052017748355865, 0.011317262426018715, -0.058516740798950195, 0.015168974176049232, -0.026092831045389175, -0.011134282685816288, -0.022488141432404518, -0.032826464623212814, -0.01074087806046009, -0.013320883736014366, 0.030758799985051155, -0.01961536705493927, 0.05858993157744408, 0.03762051835656166, 0.06620186567306519, 0.006806825287640095, -0.06711675971746445, 0.01613876409828663, -0.003911179956048727, 0.03540647029876709, -0.04859926924109459, -0.02080473303794861, 0.029203476384282112, 0.011802156455814838, -0.02719070576131344, -0.03456476703286171, 0.008604595437645912, 0.020621752366423607, -0.013384927064180374, 0.03820605203509331, -0.03740094229578972, 0.018435152247548103, -0.013018968515098095, 0.010429813526570797, -0.04442734271287918, 0.03838903084397316, -0.024116655811667442, 0.03220433369278908, 0.011902795173227787, -0.0078040617518126965, -0.003087773686274886, -0.017904512584209442, -0.002710378961637616, -0.045817986130714417, -0.0401456318795681, -0.015608123503625393, 0.01154598593711853, 0.09009894728660583, 0.05833376199007034, -0.036412857472896576, 0.015086633153259754, -0.00988087523728609, -0.05346651375293732, 0.04977033659815788, 0.011363007128238678, 0.0030420287512242794, 0.006687888875603676, 0.05031927302479744, 0.02049366757273674, 0.0382426492869854, 0.04076775908470154, -0.012021731585264206, -0.016962170600891113, 0.005384162068367004, 0.022799205034971237, 0.004407511092722416, 0.009505768306553364, -0.00453559635207057, 0.03820605203509331, 0.027520067989826202, -0.038791585713624954, -0.0010241115232929587, 0.03719966486096382, 0.014116843231022358, 0.02764815278351307, -0.0034171361476182938, -0.027739644050598145, -0.012790244072675705, 0.029185179620981216, 0.050721827894449234, 0.05646737292408943, -0.06437207758426666, -0.040657974779605865, -0.015077483840286732, -0.04464691877365112, 0.05789460986852646, 0.02225026860833168, 0.010923856869339943, -0.046513307839632034, -0.008975128643214703, 0.01556237880140543, 0.00628990912809968, 0.018865153193473816, 0.16146083176136017, 0.02596474438905716, 0.02428133599460125, -0.025379212573170662, 0.03610179200768471, 0.013046415522694588, 0.04515926167368889, -0.07216698676347733, -0.06166398152709007, 0.016330892220139503, -0.04691586270928383, -0.01286343578249216, 0.015260463580489159, 0.04940437898039818, -0.08058402687311172, -0.03853541612625122, 0.014693227596580982, -0.016779189929366112, -0.09163597226142883, -0.07183762639760971, 0.043256279081106186, 0.02206728793680668, -0.025452403351664543, 0.049001824110746384, -0.0036207004450261593, -0.05361289903521538, 0.005471077281981707, 0.04881884530186653, 0.024116655811667442, 0.026641767472028732, 0.0006638713530264795, 0.024500912055373192, -0.07948615401983261, -0.0290570929646492, -0.03242390975356102, -0.002694368362426758, -0.036266472190618515, -0.035534556955099106, 0.0055900136940181255, -0.0019933294970542192, -0.04691586270928383, 0.012488328851759434, -0.03418051078915596, 0.08578063547611237, 0.025434104725718498, -0.03599200397729874, -0.04600096493959427, -0.007822359912097454, -0.0005563710583373904, 0.0015313070034608245, 0.14652971923351288, 0.0023901655804365873, 0.06572612375020981, 0.050795018672943115, -0.020585156977176666, -0.058626528829336166, -0.03996265307068825, -0.001499285688623786, -0.0005683790659531951, 0.0443541519343853, 0.028617942705750465, -0.05097799748182297, 0.053320132195949554, 0.0174013189971447, 0.0019281430868431926, 0.02358601614832878, 0.022726014256477356, 0.02733708918094635, -0.07216698676347733, 0.002964262617751956, -0.036266472190618515, 0.08387765288352966, -0.004023254849016666, 0.06858059763908386, 0.009377682581543922, -0.029002198949456215, -0.015470889396965504, 0.07139847427606583, 0.029606031253933907, -0.05833376199007034, 0.041353292763233185, 0.013430671766400337, 0.004547032527625561, -0.024665592238307, -0.0000734775749151595, -0.013522161170840263, -0.009816832840442657, -0.01673344522714615, 0.02446431666612625, 0.0017485948046669364, 0.043183084577322006, 0.09353895485401154, -0.025671979412436485, 0.013577055186033249, 0.03956009820103645, 0.10356621444225311, 0.055991627275943756, -0.040511589497327805, 0.035040512681007385, 0.06850740313529968, 0.042121805250644684, -0.05057544633746147, 0.051709916442632675, -0.011994285508990288, -0.04420777037739754, 0.012653009966015816, -0.0006930336239747703, -0.03207625076174736, 0.018901748582720757, 0.020713243633508682, -0.013668544590473175, 0.04706224426627159, -0.019066430628299713, -0.10349301993846893, -0.06448186188936234, -0.03754732757806778, -0.018444301560521126, 0.026550278067588806, -0.00854512769728899, -0.0233298446983099, 0.026660066097974777, -0.0642622858285904, -0.006774804089218378, 0.0378400944173336, 0.0022552183363586664, -0.03418051078915596, 0.00038597171078436077, -0.03529668226838112, 0.08658574521541595, -0.007021825760602951, -0.03004518151283264, -0.05127076432108879, 0.015598975121974945, 0.007099592126905918, 0.06700697541236877, -0.0261843204498291, -0.008741830475628376, -0.0013391788816079497, 0.004533309023827314, 0.013156202621757984, 0.033777955919504166, -0.0034011255484074354, 0.029276669025421143, -0.005086821038275957, -0.03948690742254257, 0.007460976019501686, 0.05310055613517761, -0.002195750130340457, 0.010329174809157848, 0.05035587027668953, 0.0022266278974711895, -0.05921206250786781, -0.04530564323067665, 0.004062137566506863, 0.006170972716063261, -0.031326036900281906, -0.04936778172850609, 0.018755365163087845, -0.034509871155023575, -0.010759175755083561, 0.0028704858850687742, -0.00024988094810396433, 0.024336230009794235, 0.019780049100518227, -0.058553338050842285, 0.010320025496184826, 0.02596474438905716, 0.032899655401706696, 0.024848572909832, 0.029240071773529053, -0.02947794459760189, -0.014190034940838814, 0.023293249309062958, -0.03919414058327675, -0.012524924241006374, 0.009432576596736908, 0.0010555611224845052, 0.004345755558460951, -0.038132861256599426, -0.0018000575946643949, 0.026934534311294556, -0.061920154839754105, 0.013988758437335491, -0.0000794101069914177, 0.0006873155361972749, 0.018261322751641273, -0.010695132426917553, 0.04417117312550545, 0.007319167256355286, 0.02488516829907894, -0.0027309642173349857, -0.02228686399757862, -0.04179244488477707, -0.004624798893928528, -0.00870523415505886, -0.03688860312104225, 0.020091112703084946, 0.00819289218634367, -0.008883639238774776, -0.002184313954785466, -0.00038425627280957997, -0.007255124393850565, 0.03368646651506424, 0.013339182361960411, 0.057748228311538696, 0.06331079453229904, -0.027904324233531952, -0.0090345973148942, 0.055955033749341965, -0.05035587027668953, -0.0638597309589386, 0.026440491899847984, -0.02305537648499012, -0.041499678045511246, -0.009318214841187, 0.018691323697566986, -0.0027515494730323553, -0.03758392110466957, -0.0013860672479495406, 0.032826464623212814, -0.01298237219452858, -0.006436292547732592, 0.052551619708538055, 0.04043839871883392, 0.024610700085759163, -0.020292390137910843, -0.06748271733522415, 0.03520519286394119, -0.030026882886886597, -0.011957689188420773, 0.07008102536201477, 0.05412524193525314, 0.022122181951999664, -0.03868179768323898, -0.05485715717077255, -0.10232195258140564, -0.05485715717077255, 0.03919414058327675, 0.021079201251268387, -0.0008742974023334682, -0.0009240448707714677, 0.029496243223547935, -0.05643077939748764, -0.037913285195827484, -0.02375069633126259, 0.055881839245557785, 0.0401456318795681, -0.018636429682374, -0.01489450503140688, -0.011765561066567898, -0.011372155509889126, 0.044829897582530975, -0.018572386354207993, 0.01103364396840334, 0.01038406789302826, 0.019103026017546654, 0.012717052362859249, -0.020255794748663902, -0.0028521879576146603, 0.01772153377532959, 0.021975798532366753, -0.004110169596970081, 0.044866494834423065, 0.013577055186033249, -0.006102355662733316, -0.03999924659729004, -0.012945776805281639, -0.012881734408438206, 0.015470889396965504, 0.011857050471007824, -0.067665696144104, 0.08475595712661743, 0.01464748289436102, 0.007181932684034109, 0.0019475845620036125, 0.02446431666612625, -0.026861343532800674, 0.007460976019501686, -0.0046934159472584724, 0.0041147442534565926, 0.010173642076551914, -0.02684304490685463, -0.024592401459813118, -0.05211247131228447, 0.01796855591237545, -0.07999849319458008, -0.02806900627911091, 0.03354008495807648, 0.007547891233116388, -0.004050701390951872, -0.027135811746120453, 0.016157060861587524, 0.016962170600891113, -0.008783000521361828, -0.015415995381772518, -0.01867302507162094, -0.031527310609817505, -0.007497571874409914, -0.01477556861937046, -0.030154967680573463, 0.02080473303794861, 0.0466596893966198, 0.03740094229578972, -0.025854958221316338, 0.04376861825585365, -0.031216247007250786, -0.029111986979842186, -0.04373202472925186, 0.05127076432108879, 0.038901373744010925, 0.0311613529920578, -0.018554087728261948, -0.004981608130037785, 0.028306879103183746, 0.012405987828969955, 0.03827924281358719, -0.0317285880446434, 0.018508343026041985, -0.03835243731737137, -0.011024495586752892, -0.0005006195860914886, -0.011088537983596325, -0.024665592238307, -0.006024589296430349, -0.029459647834300995, -0.03663242980837822, 0.03571753576397896, 0.06038312986493111, -0.04750139266252518, -0.03820605203509331, -0.036303069442510605, -0.0588826984167099, -0.092514269053936, 0.023311547935009003, -0.021188989281654358, 0.00558086484670639, 0.017081106081604958, -0.02278090827167034, 0.011271517723798752, 0.031252842396497726, -0.009318214841187, 0.04622054100036621, -0.028325175866484642, 0.02691623754799366, 0.0035818174947053194, 0.017666639760136604, 0.011244070716202259, 0.00856342539191246, -0.05661375820636749, 0.01571791060268879, 0.00998151395469904, -0.029752414673566818, 0.013915566727519035, 0.021536648273468018, 0.0008268371457234025, 0.029386455193161964, 0.012552371248602867, 0.056796737015247345, -0.003289050655439496, -0.014135141856968403, -0.018828557804226875, 0.02916688099503517, -0.05968780815601349, -0.01493110042065382, -0.007424380164593458, -0.006692463532090187, -0.008243211545050144, -0.02375069633126259, -0.0027950068470090628, 0.018627280369400978, -0.03035624511539936, -0.03996265307068825, 0.04453713074326515, 0.008000764064490795, -0.010018110275268555, 0.012351094745099545, 0.02916688099503517, -0.04018222540616989, 0.0026303257327526808, -0.015361102297902107, -0.040657974779605865, 0.04541543126106262, -0.02592814899981022, 0.03275327384471893, 0.035351578146219254, -0.011628326959908009, -0.04340266063809395, 0.08153551816940308, -0.03831584006547928, 0.06847080588340759, 0.043073296546936035, 0.010201089084148407, -0.02182941511273384, -0.0063127814792096615, -0.012012583203613758, -0.03688860312104225, -0.0669337809085846, 0.061078447848558426, 0.0833653137087822, -0.014555993489921093, -0.012900032103061676, -0.007204805035144091, -0.024226443842053413, 0.0466596893966198, -0.061810366809368134, 0.03959669545292854, -0.01021023839712143, -0.10071174055337906, -0.066128671169281, -0.019597070291638374, 0.011344708502292633, 0.010814069770276546, -0.030447734519839287, -0.012835989706218243, 0.017501957714557648, -0.020640050992369652, -0.026166021823883057, -0.01926770806312561, 0.04519585520029068, 0.05639418214559555, -0.019871538504958153, 0.0067885275930166245, -0.010676834732294083, -0.03655923902988434, -0.04845288768410683, 0.03915754333138466, -0.021701330319046974, -0.057565249502658844, 0.05368608981370926, 0.00256628287024796, 0.04021882265806198, 0.05174650996923447, 0.0023181175347417593, 0.003876871196553111, 0.03524179011583328, 0.033668167889118195, -0.07216698676347733, 0.03143582120537758, 0.038754988461732864, -0.02140856347978115, -0.012927479110658169, -0.008348424918949604, 0.07352103292942047, 0.019322600215673447, -0.05306396260857582, -0.012232158333063126, 0.004423521459102631, -0.03831584006547928, 0.012872585095465183, -0.009505768306553364, 0.00805565807968378, 0.00025088159600272775, -0.006546080112457275, -0.024921763688325882, -0.012945776805281639, -0.010301727801561356, -0.02080473303794861, -0.006930336356163025, -0.00006858145206933841, 0.015434294007718563, 0.025013253092765808, -0.01999962329864502, -0.032515399158000946, -0.0006026876508258283, -0.005031927488744259, 0.043951597064733505, -0.01579110324382782, 0.01838940754532814, -0.007310017943382263, -0.09419768303632736, -0.005850759334862232, -0.04691586270928383, -0.022012395784258842, -0.018535790964961052, -0.010667686350643635, -0.039669886231422424, -0.0749482735991478, -0.11988795548677444, 0.008320977911353111, 0.016184508800506592, 0.008609170094132423, -0.008115126751363277, -0.04153627157211304, 0.015745358541607857, -0.03414391353726387, 0.02014600671827793, 0.012900032103061676, -0.03491242602467537, 0.039779674261808395, -0.006367675494402647, 0.00996321626007557, -0.015571528114378452, 0.03150901570916176, -0.07180102914571762, -0.02656857669353485, 0.049331184476614, 0.03330221027135849, 0.0546741783618927, -0.0470256470143795, -0.02034728415310383, 0.017291532829403877, -0.002313542878255248, 0.02645878866314888, -0.017666639760136604, 0.061151642352342606, -0.011619177646934986, -0.023915378376841545, -0.0261843204498291, 0.06521377712488174, -0.055955033749341965, 0.036376260221004486, -0.006902889348566532, -0.05968780815601349, -0.0033942637965083122, 0.05291757732629776, -0.02764815278351307, 0.05284438654780388, -0.0008411324233748019, 0.00321585894562304, 0.01384237501770258, -0.040621377527713776, 0.03031964972615242, -0.003106071613729, -0.01575450785458088, 0.007950445637106895, 0.054052047431468964, 0.04424436390399933, -0.024500912055373192, 0.05229545012116432, -0.004981608130037785, 0.021591542288661003, -0.02726389653980732, -0.007781189400702715, 0.02320175990462303, -0.011701518669724464, -0.04841629043221474, 0.00252739991992712, 0.027812834829092026, -0.0435856394469738, -0.019523877650499344, -0.04428096115589142, -0.007900126278400421, 0.056833330541849136, -0.05039246380329132, 0.0045287348330020905, 0.049111612141132355, 0.01687982864677906, 0.06122483313083649 ]
9,501
asyncclick.exceptions
__str__
null
def __str__(self) -> str: if not self.message: param_name = self.param.name if self.param else None return _("Missing parameter: {param_name}").format(param_name=param_name) else: return self.message
(self) -> str
[ 0.01559524703770876, -0.004343891516327858, 0.06370750069618225, 0.01719229854643345, 0.04182004556059837, -0.06831538677215576, 0.06259043514728546, -0.014827266335487366, 0.069292813539505, -0.04436834529042244, -0.0037220888771116734, -0.006754740606993437, -0.04223894327878952, -0.01893770880997181, 0.00479551637545228, 0.03885284811258316, 0.012724045664072037, -0.07135239988565445, -0.0045293415896594524, -0.012741499580442905, 0.005882035009562969, -0.0031788297928869724, 0.0024872105568647385, 0.023231420665979385, -0.01055973581969738, 0.012575685977935791, 0.030352696776390076, -0.03585074096918106, -0.0026573881041258574, -0.017139935865998268, -0.016363227739930153, -0.037386704236269, 0.012383691035211086, 0.030928682535886765, -0.04063316807150841, 0.057284388691186905, -0.03263918310403824, -0.012444780208170414, -0.06744267791509628, -0.07226001471281052, 0.01068191509693861, 0.03714234381914139, -0.006837647408246994, -0.021678004413843155, -0.016337046399712563, -0.02087511494755745, 0.012287693098187447, 0.09858080744743347, -0.05372374877333641, 0.06297443062067032, 0.017209751531481743, 0.06911827623844147, -0.0403888076543808, -0.034908220171928406, -0.08336082845926285, -0.0028930185362696648, 0.035623837262392044, -0.01460909005254507, 0.01659013144671917, 0.008727055042982101, -0.022952154278755188, 0.017558833584189415, 0.0030915590468794107, 0.005903852637857199, -0.013238942250609398, -0.031033406034111977, 0.020752936601638794, -0.0006741649704053998, 0.045799583196640015, 0.055189892649650574, 0.08985375612974167, -0.03319771587848663, -0.07519230246543884, 0.05201324447989464, 0.04450798034667969, -0.01967078074812889, -0.03377370163798332, -0.01302949246019125, 0.022690342739224434, -0.0029279268346726894, 0.02881673537194729, -0.017637377604842186, -0.04157568886876106, -0.034803494811058044, 0.0032617368269711733, -0.06513873487710953, -0.04862714931368828, -0.046777013689279556, -0.006820193491876125, 0.00703400606289506, -0.013666567392647266, -0.02790912054479122, -0.008670329116284847, 0.036793261766433716, -0.004926422610878944, -0.01116190291941166, 0.01395456027239561, -0.05246705189347267, 0.033407166600227356, -0.0055242255330085754, 0.028956368565559387, -0.000853615056257695, 0.0111182676628232, -0.020718028768897057, 0.02857237681746483, -0.054282281547784805, -0.0029017457272857428, -0.009442673064768314, 0.0564814992249012, 0.02722841128706932, 0.008517605252563953, 0.01346584502607584, -0.06897863745689392, 0.008037617430090904, -0.016406862065196037, -0.029095999896526337, -0.03763106092810631, 0.007937256246805191, -0.004830424673855305, -0.01844899356365204, 0.018379177898168564, -0.0058471267111599445, -0.08315137773752213, -0.08796871453523636, 0.017305750399827957, 0.011615710332989693, -0.04618357494473457, -0.04963948577642441, 0.052676502615213394, -0.08063798397779465, 0.0031351943034678698, -0.012741499580442905, -0.0062442077323794365, -0.04995366185903549, -0.0018337724031880498, -0.025168826803565025, 0.026408066973090172, 0.030195608735084534, 0.055294618010520935, 0.132022887468338, 0.029759256169199944, 0.04932531341910362, -0.0282407496124506, 0.0010396103607490659, 0.047405362129211426, -0.04513632878661156, 0.044682521373033524, 0.018867893144488335, 0.008884142152965069, -0.0006785285077057779, 0.041540779173374176, 0.012628048658370972, -0.019007524475455284, -0.04024917632341385, 0.011039724573493004, 0.018222089856863022, 0.039167020469903946, -0.027978938072919846, 0.007413633167743683, -0.04377490654587746, 0.016738491132855415, -0.06859464943408966, 0.014329823665320873, 0.009721939451992512, 0.045939214527606964, 0.03773578628897667, 0.01928679086267948, 0.03759615123271942, 0.04136623814702034, 0.008120524697005749, -0.043111652135849, -0.049534764140844345, -0.06978152692317963, 0.006030394695699215, 0.02122419700026512, 0.08412880450487137, -0.00654965452849865, 0.02815347909927368, -0.015394524671137333, -0.03489076346158981, 0.0007521630031988025, -0.01860608160495758, -0.01302949246019125, 0.01124044694006443, 0.06646525114774704, -0.028589831665158272, 0.017768284305930138, 0.010062294080853462, -0.011126995086669922, -0.012505869381129742, 0.0007396179134957492, 0.005410774145275354, 0.012881132774055004, 0.07407524436712265, -0.056167323142290115, 0.00579040078446269, 0.05393319949507713, -0.06995607167482376, 0.07784532755613327, -0.0006774376379325986, 0.0020944932475686073, 0.02190490812063217, -0.037665966898202896, 0.03225519508123398, -0.013570570386946201, 0.0007330725784413517, 0.01645049825310707, 0.012462234124541283, 0.007112549617886543, -0.006410021800547838, -0.004625339061021805, 0.004258802626281977, -0.0007248909678310156, 0.003466822439804673, 0.0222365353256464, -0.015778515487909317, 0.01672976464033127, 0.01756756193935871, -0.03345952928066254, 0.03857358172535896, 0.038678307086229324, -0.044752337038517, 0.0684899240732193, -0.03749142587184906, 0.00425662100315094, 0.03508276119828224, 0.07875294238328934, -0.015507976524531841, -0.046532656997442245, 0.027839304879307747, -0.004463888704776764, -0.012706591747701168, -0.011886248365044594, 0.045799583196640015, -0.060042135417461395, 0.0030195608269423246, -0.05326994135975838, -0.02600662223994732, -0.06513873487710953, -0.012889860197901726, -0.0034166418481618166, -0.02474992722272873, -0.009756847284734249, 0.09613723307847977, 0.07637917995452881, -0.08252303302288055, -0.010297924280166626, 0.04709118604660034, -0.019269336014986038, 0.02872946485877037, 0.012191695161163807, 0.048941321671009064, -0.06451039016246796, -0.03146975859999657, 0.01356184296309948, -0.07351671159267426, -0.027961483225226402, 0.0027141140308231115, 0.0250990092754364, 0.00654965452849865, -0.06321878731250763, 0.005484953988343477, -0.04073788970708847, 0.07463376969099045, 0.03347698226571083, -0.011938611045479774, -0.06311406195163727, 0.027961483225226402, 0.0474751777946949, 0.023371051996946335, 0.08440807461738586, 0.00043689817539416254, -0.01634577289223671, 0.014059285633265972, 0.015001807361841202, -0.017907915636897087, 0.003909720573574305, 0.001901407027617097, -0.02422630414366722, 0.007893620990216732, 0.021486008539795876, -0.04946494475007057, 0.04276257008314133, 0.015778515487909317, 0.017393020913004875, 0.013762565329670906, 0.051035817712545395, -0.0414709635078907, -0.022271443158388138, 0.03517002984881401, 0.0042893472127616405, 0.038294315338134766, -0.02368522621691227, 0.03195847570896149, 0.01409419346600771, -0.03391333296895027, 0.024767382070422173, 0.014172736555337906, 0.020805299282073975, -0.005951851140707731, 0.003979537170380354, 0.02359795570373535, 0.04524105042219162, -0.05222269520163536, -0.050442375242710114, -0.028712010011076927, -0.03658381476998329, 0.0019504966912791133, 0.016930487006902695, -0.01563015580177307, -0.01932169869542122, 0.05222269520163536, 0.045171234756708145, 0.05875053256750107, 0.03366897627711296, 0.07226001471281052, 0.03588565066456795, -0.04098225012421608, 0.029270540922880173, 0.04552031680941582, 0.052117969840765, -0.018134819343686104, -0.022550709545612335, 0.003002106910571456, -0.014521819539368153, -0.011423714458942413, -0.05026783421635628, 0.0056551313027739525, 0.03658381476998329, 0.01874571293592453, -0.02485465258359909, -0.022533254697918892, -0.03440205007791519, -0.06915318220853806, -0.023388506844639778, -0.01465272530913353, 0.028223294764757156, 0.00103197421412915, 0.006396931130439043, 0.01565633714199066, 0.04195968061685562, -0.05005838721990585, -0.048173341900110245, 0.022096902132034302, -0.0012806953163817525, 0.01956605724990368, -0.04332109913229942, -0.020089680328965187, 0.032098107039928436, -0.0316442996263504, -0.04984893649816513, -0.01932169869542122, 0.0010892455466091633, 0.005402046721428633, 0.0252386424690485, 0.024331029504537582, -0.013858563266694546, 0.03934156149625778, 0.021206742152571678, 0.054666269570589066, 0.040284086018800735, -0.018832983449101448, 0.032726455479860306, 0.033110447227954865, -0.04000481963157654, 0.02406921610236168, 0.024837197735905647, 0.013230214826762676, 0.020840207114815712, -0.030247971415519714, -0.020613303408026695, -0.017558833584189415, -0.028834188356995583, -0.034227509051561356, -0.034471865743398666, 0.07096841186285019, 0.029829073697328568, 0.017471563071012497, -0.013622932136058807, -0.07547157257795334, 0.040528442710638046, -0.02529100514948368, -0.01158080156892538, 0.03777069225907326, -0.01165061816573143, 0.037945233285427094, -0.0066238343715667725, 0.0023999400436878204, 0.01912970468401909, 0.009573578834533691, -0.011606982909142971, -0.014722540974617004, 0.04646284133195877, 0.010594644583761692, -0.032534461468458176, -0.018518811091780663, 0.03304062783718109, -0.013291303999722004, -0.053688839077949524, -0.0056289504282176495, 0.00007786168862367049, -0.04384472221136093, -0.08824797719717026, 0.008779416792094707, -0.012418598867952824, 0.0023890312295407057, 0.003002106910571456, 0.04806861653923988, -0.002711932174861431, 0.02073548175394535, -0.001365784090012312, -0.06444057077169418, -0.04695155471563339, -0.025465546175837517, 0.0477544441819191, 0.000557713326998055, -0.05630695819854736, 0.0030130157247185707, -0.030003614723682404, 0.0032988267485052347, -0.048836600035429, -0.0015065078623592854, 0.049534764140844345, 0.03201083838939667, 0.0034559136256575584, 0.07051460444927216, -0.022707795724272728, 0.010926272720098495, 0.07519230246543884, -0.007055823691189289, -0.07163166254758835, 0.0031853748951107264, -0.003017379203811288, -0.024837197735905647, -0.004490069579333067, -0.04133133217692375, -0.014155282638967037, -0.006540927570313215, -0.04681192338466644, 0.009381583891808987, 0.01874571293592453, -0.022358713671565056, 0.023371051996946335, 0.10004695504903793, -0.006868191994726658, 0.012532050721347332, -0.048312973231077194, -0.016118871048092842, -0.0023803042713552713, 0.012470961548388004, 0.03134758025407791, 0.044787246733903885, -0.02188745327293873, -0.04796389117836952, 0.028938913717865944, -0.05197833850979805, -0.053304851055145264, -0.01888534612953663, -0.024976830929517746, -0.021136926487088203, -0.03283118084073067, 0.06733795255422592, -0.07330726087093353, 0.06293951719999313, 0.019251883029937744, 0.0016941395588219166, 0.037665966898202896, 0.04307674244046211, -0.06608125567436218, -0.040528442710638046, -0.019059887155890465, 0.006357659585773945, -0.03658381476998329, 0.0026137528475373983, -0.0261986181139946, 0.02450557053089142, 0.006798375863581896, 0.038049958646297455, 0.0145305460318923, 0.0013756019761785865, -0.008360518142580986, -0.013474572449922562, 0.006898736581206322, 0.013230214826762676, 0.005930033512413502, 0.007413633167743683, -0.004620975349098444, 0.03318026289343834, -0.016546495258808136, -0.000782162300311029, 0.007147457916289568, 0.00428280234336853, -0.017017757520079613, 0.018536264076828957, -0.03839904069900513, 0.003890084568411112, -0.014774903655052185, -0.04126151651144028, -0.054282281547784805, 0.03749142587184906, -0.0006141664925962687, -0.036164913326501846, 0.04098225012421608, -0.0051707797683775425, 0.02707132324576378, -0.11729161441326141, 0.026024077087640762, 0.053793564438819885, 0.05557388439774513, -0.0011023361003026366, 0.005489317234605551, -0.015350889414548874, 0.02853746898472309, -0.0096870306879282, 0.003791905241087079, -0.028362927958369255, -0.009442673064768314, -0.00364572717808187, 0.016659947112202644, 0.03290099650621414, 0.00798089150339365, 0.01203460805118084, -0.010725550353527069, -0.036932896822690964, -0.002096674870699644, 0.02660006284713745, -0.009721939451992512, -0.027961483225226402, -0.0592043399810791, 0.06014686077833176, -0.008735781535506248, -0.01061209850013256, 0.04244839400053024, 0.03468131646513939, -0.019216975197196007, 0.043181467801332474, -0.09020283818244934, 0.008321247063577175, -0.09236714988946915, -0.004682064987719059, 0.014347277581691742, 0.005690039601176977, -0.010978634469211102, -0.04244839400053024, 0.0035999100655317307, -0.025064101442694664, -0.0013014220166951418, 0.04852242395281792, -0.0013548752758651972, -0.03003852255642414, -0.030108338221907616, -0.0360252819955349, -0.06594162434339523, -0.04936022311449051, -0.004738790914416313, 0.04332109913229942, -0.005938760936260223, 0.04384472221136093, 0.04482215270400047, 0.04297201707959175, -0.018326815217733383, 0.0052144150249660015, 0.047928985208272934, -0.009730665944516659, 0.002687932923436165, 0.006257298402488232, 0.00242175767198205, -0.03091122768819332, -0.012296420522034168, -0.006532200612127781, -0.003292281413450837, -0.06370750069618225, -0.0059343972243368626, 0.041296422481536865, -0.0354667492210865, 0.0030261061619967222, 0.06681433320045471, 0.030823957175016403, -0.015970509499311447, 0.08042853325605392, -0.01756756193935871, 0.004930785857141018, 0.02960216999053955, -0.013238942250609398, -0.03798014298081398, 0.04059825837612152, -0.045415591448545456, -0.020648211240768433, 0.01666867546737194, -0.011205538176000118, -0.04422871395945549, -0.04398435726761818, 0.03290099650621414, -0.011807705275714397, 0.054910629987716675, 0.04297201707959175, 0.03944628685712814, -0.04922058805823326, 0.002522118855267763, 0.009564852342009544, -0.006388204172253609, 0.02125910483300686, 0.023039424791932106, 0.07330726087093353, 0.06416130810976028, 0.006187481805682182, -0.012479688040912151, 0.05002347752451897, -0.057179663330316544, 0.07156185060739517, 0.007413633167743683, -0.009844117797911167, -0.053165215998888016, -0.008862324059009552, -0.0474751777946949, -0.01414655614644289, 0.021102018654346466, 0.00803325418382883, 0.012610593810677528, 0.02900872938334942, -0.015813423320651054, 0.027263319119811058, -0.06032140180468559, 0.033407166600227356, -0.022166719660162926, 0.018344268202781677, -0.00482169771566987, -0.0532001256942749, -0.04164550453424454, -0.04768462851643562, -0.036932896822690964, 0.03906229883432388, 0.0021097655408084393, -0.02204453945159912, -0.04513632878661156, 0.012750227004289627, 0.039027389138936996, 0.0244183000177145, -0.016686128452420235, 0.013570570386946201, -0.0050835092552006245, -0.017419200390577316, -0.07281854748725891, -0.018274452537298203, -0.04681192338466644, 0.09097082167863846, -0.05162925645709038, -0.039795368909835815, 0.03770087659358978, -0.03944628685712814, -0.006266025360673666, -0.00978302862495184, -0.010079747997224331, 0.014984353445470333, 0.04314655810594559, 0.010411376133561134, -0.03986518457531929, 0.04363527521491051, -0.020316584035754204, -0.015071623958647251, -0.008452152833342552, -0.0739356055855751, -0.010533555410802364, -0.03230755776166916, 0.007226001471281052, 0.0034711859188973904, -0.024907013401389122, -0.05218778923153877, 0.000655074545647949, -0.04286729171872139, -0.031085768714547157, 0.0012490596855059266, 0.012654229067265987, -0.02262052521109581, -0.016031598672270775, 0.028502561151981354, -0.020840207114815712, 0.004970057867467403, 0.015246164985001087, -0.02504664659500122, 0.035239845514297485, -0.01208697073161602, -0.04094734042882919, 0.019339153543114662, 0.031993381679058075, 0.057179663330316544, -0.018152274191379547, 0.004865332972258329, 0.014059285633265972, -0.020473670214414597, -0.04059825837612152, -0.06321878731250763, -0.03372133895754814, 0.007361270487308502, 0.03962082788348198, -0.02406921610236168, -0.0017781374044716358, -0.02853746898472309, -0.013352394104003906, -0.009163407608866692, 0.003844267688691616, 0.019461331889033318, -0.008260156959295273, 0.007321998942643404, -0.0518387034535408, 0.005777310114353895, 0.05644658952951431, -0.03993500396609306, -0.04349564015865326, -0.050302743911743164, 0.018588626757264137, 0.012741499580442905, -0.007863076403737068, -0.06527836620807648, -0.0351874865591526, -0.024592841044068336, 0.03923683986067772, 0.023772496730089188, -0.005663858726620674, -0.01547306776046753, -0.0016570495208725333, 0.004151896107941866, -0.007409269455820322, -0.035484205931425095, 0.08391936123371124, 0.05899488925933838, -0.0017301385523751378, -0.07609991729259491, 0.052781227976083755, -0.017366839572787285, 0.028345473110675812, 0.05410774052143097, -0.04499669373035431, 0.05313031002879143, 0.10863437503576279, -0.019443878903985023, 0.03351189196109772, 0.0311032235622406, 0.014015650376677513, 0.046427931636571884, 0.012758954428136349, 0.048801690340042114, 0.03424496203660965, -0.016031598672270775, 0.019827868789434433, 0.06866446882486343, 0.017061391845345497, -0.010367740876972675, -0.03284863382577896, -0.00851324200630188, 0.038154684007167816, -0.034663859754800797, 0.006916190963238478, 0.02262052521109581, 0.016092689707875252, -0.0622064471244812, 0.009407765232026577, 0.05232742056250572, 0.012305147014558315, 0.02504664659500122, -0.04681192338466644, 0.0030130157247185707, 0.04136623814702034, 0.045031603425741196, -0.053409576416015625, 0.09816191345453262, -0.029514899477362633, 0.0215558260679245 ]
9,502
asyncclick.exceptions
format_message
null
def format_message(self) -> str: if self.param_hint is not None: param_hint: t.Optional[str] = self.param_hint elif self.param is not None: param_hint = self.param.get_error_hint(self.ctx) # type: ignore else: param_hint = None param_hint = _join_param_hints(param_hint) param_hint = f" {param_hint}" if param_hint else "" param_type = self.param_type if param_type is None and self.param is not None: param_type = self.param.param_type_name msg = self.message if self.param is not None: msg_extra = self.param.type.get_missing_message(self.param) if msg_extra: if msg: msg += f". {msg_extra}" else: msg = msg_extra msg = f" {msg}" if msg else "" # Translate param_type for known types. if param_type == "argument": missing = _("Missing argument") elif param_type == "option": missing = _("Missing option") elif param_type == "parameter": missing = _("Missing parameter") else: missing = _("Missing {param_type}").format(param_type=param_type) return f"{missing}{param_hint}.{msg}"
(self) -> str
[ 0.03335489705204964, -0.011848809197545052, 0.060671720653772354, 0.032627418637275696, 0.01217617467045784, -0.08438752591609955, 0.033336710184812546, -0.014522292651236057, 0.015977250412106514, -0.060889966785907745, 0.02738957293331623, -0.010011925362050533, -0.049032062292099, -0.028753595426678658, 0.0009309453889727592, 0.05954413115978241, 0.008438752964138985, -0.066055066883564, 0.011348667554557323, -0.025716371834278107, 0.029899373650550842, -0.0008218235452659428, -0.02331569232046604, -0.01378572080284357, 0.0068064723163843155, -0.0037374217063188553, 0.03595563396811485, -0.020114785060286522, -0.0015458922134712338, -0.036155689507722855, -0.026698468253016472, -0.03264560550451279, 0.003778342390432954, 0.05154186487197876, -0.04208464175462723, 0.05219659581780434, -0.022315409034490585, -0.011048582382500172, -0.0603807307779789, -0.06791013479232788, -0.02311563491821289, 0.01956917718052864, -0.027862433344125748, -0.035810139030218124, 0.003205452812835574, -0.016277335584163666, 0.017577704042196274, 0.09639092534780502, -0.09348101168870926, 0.03957483917474747, 0.02506164088845253, 0.0008957081008702517, -0.030881470069289207, -0.020114785060286522, -0.07733098417520523, -0.03273653984069824, 0.025843679904937744, -0.013130989857017994, 0.021606117486953735, 0.00235748547129333, 0.012285295873880386, 0.04484906047582626, 0.0011003115214407444, 0.03541002422571182, -0.04030231758952141, -0.0575435645878315, 0.02648022398352623, -0.00020460337691474706, 0.01815059222280979, 0.004494454246014357, 0.08627896755933762, -0.03255467116832733, -0.0561249814927578, 0.03230005130171776, 0.02062402106821537, -0.019460054114460945, -0.03924747556447983, -0.007784022018313408, 0.02326112985610962, 0.017777759581804276, 0.03535546362400055, -0.03148163855075836, -0.04888656735420227, -0.061071835458278656, 0.05939863249659538, -0.062454044818878174, -0.05830741673707962, -0.018323369324207306, 0.006629149429500103, -0.03228186443448067, -0.002164249075576663, -0.06951058655977249, 0.015768099576234818, 0.054633647203445435, -0.025807306170463562, -0.006647336296737194, -0.0050650704652071, -0.07209313660860062, 0.021060507744550705, 0.008656996302306652, 0.01641373708844185, -0.007397548761218786, -0.007938611321151257, -0.026352914050221443, 0.045976653695106506, -0.0569252073764801, -0.001527705229818821, -0.0031577120535075665, 0.02347937412559986, 0.007265693042427301, 0.00182097009383142, -0.026389289647340775, -0.09006185829639435, -0.012167081236839294, 0.023552121594548225, 0.0023188383784145117, -0.008270523510873318, -0.002582549350336194, 0.001228756969794631, 0.014285862445831299, -0.006510934326797724, -0.025370819494128227, -0.06147194653749466, -0.11756055057048798, -0.0277533121407032, 0.005010509397834539, -0.03379138559103012, -0.04102979600429535, 0.03699228912591934, -0.07231137901544571, -0.023406626656651497, -0.0028894543647766113, -0.005792548879981041, -0.040629684925079346, -0.015195210464298725, -0.007606698665767908, 0.013412888161838055, 0.03570101410150528, 0.045394670218229294, 0.1422220766544342, 0.04921393096446991, 0.06125370413064957, -0.009284446947276592, -0.052487585693597794, 0.026934897527098656, -0.050741638988256454, 0.06587319076061249, 0.00040380749851465225, -0.01582266204059124, -0.001609546598047018, 0.02397042140364647, -0.00497868238016963, 0.007483936846256256, -0.013458355329930782, 0.03837449848651886, -0.0007820395985618234, 0.021278752014040947, -0.05194197595119476, 0.005960778333246708, -0.0204603374004364, 0.026443850249052048, -0.07878594100475311, 0.033845946192741394, 0.009393568150699139, 0.051250871270895004, 0.03731965646147728, 0.01655014045536518, 0.018768949434161186, 0.011475975625216961, 0.0147405369207263, -0.026371102780103683, -0.007688540033996105, -0.016340989619493484, 0.027244076132774353, 0.04142991080880165, 0.07016532123088837, -0.03782889246940613, -0.006460919976234436, -0.0028076129965484142, -0.06649155169725418, 0.003230459988117218, -0.00626086350530386, 0.038119882345199585, 0.006060806568711996, 0.015777193009853363, -0.031881753355264664, 0.020496711134910583, 0.00027294657775200903, -0.03310028091073036, -0.015195210464298725, -0.010521160438656807, -0.003935204818844795, 0.005174192134290934, 0.07674899697303772, -0.05685245990753174, 0.020187532529234886, 0.03435518220067024, -0.05274220556020737, 0.059980615973472595, -0.02471608854830265, -0.017577704042196274, 0.03248192369937897, -0.01760498434305191, 0.02064220793545246, -0.00284398696385324, -0.007374815177172422, 0.02378855273127556, 0.0047377049922943115, -0.07849495112895966, -0.013149176724255085, -0.026061924174427986, -0.015940876677632332, -0.0096754664555192, 0.005310594104230404, 0.015713538974523544, -0.013985777273774147, 0.07463931292295456, 0.05419716238975525, -0.024752462282776833, 0.040811553597450256, 0.04128441587090492, -0.0494321770966053, 0.07016532123088837, -0.008656996302306652, 0.033136654645204544, 0.034937161952257156, 0.05663421377539635, 0.01253991387784481, -0.036355745047330856, 0.00813412107527256, -0.014485918916761875, -0.03997495397925377, 0.023333879187703133, 0.05525200441479683, -0.09297177195549011, 0.008902519941329956, -0.018714388832449913, -0.04284849390387535, -0.020351216197013855, -0.015668071806430817, -0.00047797622391954064, 0.0028599004726856947, -0.005778908729553223, 0.06056259945034981, 0.04303036257624626, -0.10708486288785934, -0.004185275640338659, 0.022606398910284042, 0.03055410459637642, 0.027989741414785385, -0.046995121985673904, 0.09893710166215897, -0.045431043952703476, -0.025643622502684593, -0.0000663184910081327, -0.034027814865112305, -0.03195450082421303, 0.0011577140539884567, 0.0129673071205616, 0.019314559176564217, -0.045976653695106506, -0.006524574477225542, -0.042375631630420685, 0.06296327710151672, 0.017523143440485, -0.008247789926826954, -0.05914401635527611, 0.01584084890782833, 0.029735689982771873, 0.012940026819705963, 0.10024656355381012, 0.005624319426715374, 0.017905069515109062, 0.008947988040745258, 0.015422548167407513, -0.010275635868310928, -0.000867291004396975, 0.02433416247367859, 0.004574022255837917, 0.01882351003587246, 0.0017061647959053516, -0.04015682265162468, 0.036846794188022614, 0.028498977422714233, 0.05888940021395683, 0.07391183078289032, 0.03731965646147728, -0.016113651916384697, -0.037046849727630615, 0.06187206134200096, -0.01667744852602482, 0.005233299918472767, -0.026443850249052048, 0.03290022164583206, -0.0036965010222047567, -0.042011894285678864, 0.026953084394335747, -0.0024825208820402622, 0.022642774507403374, -0.0437578409910202, -0.006542761344462633, 0.07784021645784378, 0.06430911272764206, -0.018750762566924095, -0.023934047669172287, -0.02609829790890217, -0.04463081806898117, -0.05710707604885101, 0.03248192369937897, -0.014249488711357117, -0.022006230428814888, 0.04499455541372299, 0.05772543326020241, 0.008661543019115925, 0.08256883174180984, 0.07573053240776062, 0.001902811462059617, -0.007638526149094105, 0.028935464099049568, 0.02788062021136284, 0.05292407423257828, -0.012639941647648811, -0.005346968304365873, 0.0084069250151515, -0.01829608902335167, -0.00471497094258666, -0.07082004845142365, 0.024970704689621925, 0.03004486858844757, 0.016813850030303, -0.008261430077254772, -0.020042037591338158, -0.05379704758524895, -0.0678737610578537, -0.024115918204188347, 0.0011486206203699112, 0.011348667554557323, -0.005110537633299828, -0.0004899114137515426, 0.00554702477529645, 0.042921241372823715, -0.03644668310880661, -0.010093766264617443, 0.03693772852420807, -0.022242659702897072, 0.0016186400316655636, -0.023515747860074043, -0.0003623184747993946, 0.020205719396471977, 0.00041119594243355095, -0.05183285474777222, -0.03942934423685074, -0.0005319687770679593, 0.007015622686594725, 0.029535634443163872, -0.0034714373759925365, -0.017977816984057426, -0.0002593063691165298, 0.01689569279551506, 0.06871036440134048, 0.042230136692523956, -0.028844529762864113, 0.07329347729682922, 0.01402215100824833, -0.01413127314299345, 0.0328274741768837, 0.02240634337067604, 0.015440735034644604, 0.010603001341223717, 0.004617216065526009, -0.024079544469714165, -0.04550379142165184, -0.000408638414228335, -0.03588288649916649, -0.05459727346897125, 0.060489851981401443, 0.01092127338051796, 0.04004770144820213, -0.0245160311460495, -0.0703108161687851, 0.03997495397925377, -0.01244897861033678, -0.012803624384105206, 0.027444133535027504, -0.008325084112584591, 0.030081242322921753, 0.0004319404542911798, -0.02257002517580986, -0.008261430077254772, 0.030081242322921753, -0.03288203477859497, -0.03913835436105728, 0.054488152265548706, -0.013476542197167873, -0.035810139030218124, 0.01815059222280979, 0.0088115856051445, 0.004955948330461979, -0.0280624907463789, -0.011703313328325748, 0.024570591747760773, -0.07231137901544571, -0.00742028234526515, -0.015040621161460876, -0.028135238215327263, -0.011257732287049294, 0.0072247725911438465, 0.0848967581987381, -0.020205719396471977, 0.05867115408182144, -0.004937761463224888, -0.02648022398352623, -0.04746798425912857, 0.025025267153978348, 0.04550379142165184, 0.00022151156736072153, -0.05885302647948265, 0.009393568150699139, -0.0593622587621212, 0.025661809369921684, -0.016377363353967667, -0.03290022164583206, 0.02220628596842289, 0.02344300039112568, 0.00856151431798935, 0.03932022303342819, -0.05939863249659538, 0.008097747340798378, 0.05808917060494423, -0.017013907432556152, -0.05150549113750458, 0.010721216909587383, 0.007924971170723438, -0.011530537158250809, -0.021806173026561737, -0.018550707027316093, 0.024243226274847984, 0.008520593866705894, -0.01145778875797987, -0.013358327560126781, 0.03468254581093788, 0.004210283048450947, 0.016650168225169182, 0.06758277118206024, -0.01902356743812561, -0.023715805262327194, -0.05230571702122688, -0.040411438792943954, -0.021933481097221375, 0.016040904447436333, 0.094426728785038, 0.05095988139510155, -0.02329750545322895, -0.015668071806430817, 0.01973285898566246, -0.07300248742103577, -0.03644668310880661, -0.018468864262104034, -0.024261413142085075, -0.01038475800305605, -0.007092916872352362, 0.05539749935269356, -0.02988118678331375, 0.06700078397989273, 0.005842563230544329, -0.04572203382849693, 0.04055693745613098, -0.006542761344462633, -0.060853589326143265, -0.03193631395697594, 0.01447682548314333, -0.02504345402121544, -0.033627700060606, 0.05630685016512871, -0.005328781437128782, 0.026443850249052048, 0.043976087123155594, 0.020187532529234886, -0.0038942843675613403, 0.014986060559749603, 0.026789402589201927, -0.03595563396811485, -0.014213114976882935, 0.015949970111250877, 0.025825493037700653, 0.029008211567997932, 0.01953280158340931, 0.02877178229391575, -0.043648719787597656, -0.03144526481628418, -0.01936911977827549, 0.040775179862976074, 0.02717132866382599, 0.01865982823073864, -0.0022301767021417618, -0.006965608336031437, -0.014013057574629784, -0.06590956449508667, -0.03428243100643158, 0.01118498481810093, 0.022824643179774284, -0.04197552055120468, 0.012912746518850327, -0.018350649625062943, 0.030990591272711754, -0.07994990795850754, 0.0447763130068779, 0.05739806592464447, 0.05899852141737938, 0.015222491696476936, -0.011766967363655567, -0.001946005504578352, 0.023952234536409378, -0.01819606125354767, -0.007342987693846226, -0.019441867247223854, -0.013194644823670387, -0.002587096067145467, 0.04750435799360275, 0.015768099576234818, -0.021915294229984283, 0.02418866567313671, -0.02700764499604702, -0.02737138420343399, 0.019787419587373734, 0.01744130067527294, 0.02520713582634926, -0.019114501774311066, -0.02949926070868969, 0.0023733992129564285, 0.017050281167030334, 0.030335860326886177, 0.056816086173057556, 0.02398861013352871, -0.02397042140364647, 0.028298920020461082, -0.06427273899316788, 0.022879203781485558, -0.11479613184928894, -0.01880532316863537, 0.01918724924325943, 0.03942934423685074, -0.0405205637216568, -0.05739806592464447, -0.001889171195216477, -0.010821245610713959, 0.045576538890600204, 0.018077844753861427, 0.00326910731382668, -0.036883167922496796, -0.037792518734931946, 0.004696784075349569, -0.06110820919275284, 0.006724630948156118, -0.020405776798725128, -0.0030895110685378313, 0.010348384268581867, 0.013340139761567116, 0.03815625607967377, 0.040811553597450256, -0.032791100442409515, 0.019296372309327126, 0.0348462276160717, -0.011612378060817719, -0.0338277593255043, 0.03133614361286163, 0.010684843175113201, 0.02184254676103592, -0.04055693745613098, 0.02453421801328659, -0.0058471099473536015, -0.02098776027560234, 0.0342460572719574, -0.015322519466280937, -0.0049059344455599785, 0.011366854421794415, 0.016722915694117546, 0.04408520832657814, -0.0034146029502153397, 0.08846140652894974, -0.0004521166265476495, 0.004073880612850189, 0.02524350956082344, -0.00872065033763647, -0.02878996916115284, 0.06227217614650726, -0.020114785060286522, -0.024315975606441498, 0.003703321097418666, 0.03928384929895401, -0.03782889246940613, -0.04997778311371803, 0.08744293451309204, 0.003298661205917597, 0.0597623735666275, 0.06769189238548279, 0.022879203781485558, -0.02471608854830265, -0.00045240079634822905, 0.00764761958271265, -0.005146911833435297, 0.022315409034490585, -0.005206019151955843, 0.07438469678163528, 0.0820595920085907, 0.007688540033996105, 0.02006022445857525, 0.03233642876148224, -0.059653252363204956, 0.053942542523145676, 0.0028735408559441566, 0.007511217147111893, -0.06805562973022461, -0.03395506739616394, -0.012785437516868114, 0.0068246591836214066, -0.00813412107527256, 0.016422830522060394, 0.03519178181886673, -0.02238815650343895, -0.020824076607823372, 0.019259998574852943, -0.04430345073342323, 0.018341556191444397, 0.003953392151743174, 0.015177023597061634, -0.028862716630101204, -0.039902206510305405, -0.08125936985015869, -0.07140202820301056, -0.017368553206324577, 0.06125370413064957, -0.0134219815954566, -0.01918724924325943, -0.033154841512441635, 0.01466778852045536, -0.013949403539299965, 0.006192662287503481, -0.03721053525805473, 0.012594474479556084, 0.03335489705204964, -0.027244076132774353, -0.07100191712379456, -0.04197552055120468, -0.03353676572442055, 0.0532878115773201, -0.02471608854830265, -0.05077801272273064, 0.014822377823293209, -0.0005848246510140598, -0.01880532316863537, 0.0031395251862704754, -0.03215455636382103, -0.017941443249583244, 0.03553733229637146, 0.022788269445300102, -0.05918039008975029, 0.025989174842834473, -0.004353505093604326, -0.019296372309327126, -0.0034509769175201654, -0.03659217804670334, -0.00235748547129333, -0.005410622805356979, -0.045394670218229294, -0.036355745047330856, -0.04215738922357559, -0.016650168225169182, 0.06136282533407211, -0.031245209276676178, -0.04303036257624626, -0.01991472952067852, 0.018568893894553185, -0.007661259733140469, -0.03149982541799545, 0.019641924649477005, 0.011494163423776627, 0.0033077546395361423, -0.011539630591869354, -0.008156854659318924, 0.0656549483537674, -0.02344300039112568, -0.06136282533407211, 0.04604940116405487, 0.04390333965420723, 0.034937161952257156, 0.010712123475968838, -0.001128160278312862, 0.000014448337424255442, -0.01991472952067852, -0.031354330480098724, -0.06267228722572327, -0.04710424318909645, -0.010603001341223717, 0.021915294229984283, -0.02842622995376587, -0.0202602818608284, -0.016722915694117546, 0.001527705229818821, -0.026971271261572838, 0.010584814473986626, -0.004526281263679266, -0.01669563539326191, 0.01394031010568142, -0.037574272602796555, 0.0216788649559021, 0.053906168788671494, -0.03641030937433243, -0.028699032962322235, -0.02737138420343399, 0.0021551556419581175, 0.01754133030772209, 0.022679148241877556, -0.05008690804243088, -0.01527705229818821, -0.0038624571170657873, 0.05048701912164688, 0.018023284152150154, 0.021787986159324646, -0.03837449848651886, -0.003198632737621665, 0.015477108769118786, -0.009102577343583107, -0.04663138464093208, 0.019114501774311066, 0.0405205637216568, 0.00941175501793623, -0.06569132208824158, 0.031899940222501755, -0.016395550221204758, 0.010312010534107685, 0.048086341470479965, -0.04608577489852905, 0.031227022409439087, 0.10672111809253693, 0.0027053114026784897, 0.02455240488052368, 0.04794084280729294, -0.013321952894330025, 0.02311563491821289, -0.03284566104412079, 0.07944066822528839, -0.02166067808866501, 0.005478823557496071, 0.034755293279886246, 0.06776463985443115, 0.009284446947276592, -0.011876089498400688, -0.011921556666493416, -0.03641030937433243, 0.03731965646147728, -0.041684526950120926, -0.02098776027560234, 0.00019266818708274513, 0.027771499007940292, -0.05379704758524895, 0.007211132440716028, 0.03553733229637146, -0.006647336296737194, 0.007683993317186832, -0.021224189549684525, 0.00255754217505455, 0.07009257376194, 0.016013624146580696, -0.0684921145439148, 0.05117812380194664, -0.03199087455868721, 0.032627418637275696 ]
9,504
asyncclick.core
MultiCommand
A multi command is the basic implementation of a command that dispatches to subcommands. The most common version is the :class:`Group`. :param invoke_without_command: this controls how the multi command itself is invoked. By default it's only invoked if a subcommand is provided. :param no_args_is_help: this controls what happens if no arguments are provided. This option is enabled by default if `invoke_without_command` is disabled or disabled if it's enabled. If enabled this will add ``--help`` as argument if no arguments are passed. :param subcommand_metavar: the string that is used in the documentation to indicate the subcommand place. :param chain: if this is set to `True` chaining of multiple subcommands is enabled. This restricts the form of commands in that they cannot have optional arguments but it allows multiple commands to be chained together. :param result_callback: The result callback to attach to this multi command. This can be set or changed later with the :meth:`result_callback` decorator. :param attrs: Other command arguments described in :class:`Command`.
class MultiCommand(Command): """A multi command is the basic implementation of a command that dispatches to subcommands. The most common version is the :class:`Group`. :param invoke_without_command: this controls how the multi command itself is invoked. By default it's only invoked if a subcommand is provided. :param no_args_is_help: this controls what happens if no arguments are provided. This option is enabled by default if `invoke_without_command` is disabled or disabled if it's enabled. If enabled this will add ``--help`` as argument if no arguments are passed. :param subcommand_metavar: the string that is used in the documentation to indicate the subcommand place. :param chain: if this is set to `True` chaining of multiple subcommands is enabled. This restricts the form of commands in that they cannot have optional arguments but it allows multiple commands to be chained together. :param result_callback: The result callback to attach to this multi command. This can be set or changed later with the :meth:`result_callback` decorator. :param attrs: Other command arguments described in :class:`Command`. """ allow_extra_args = True allow_interspersed_args = False def __init__( self, name: t.Optional[str] = None, invoke_without_command: bool = False, no_args_is_help: t.Optional[bool] = None, subcommand_metavar: t.Optional[str] = None, chain: bool = False, result_callback: t.Optional[t.Callable[..., t.Any]] = None, **attrs: t.Any, ) -> None: super().__init__(name, **attrs) if no_args_is_help is None: no_args_is_help = not invoke_without_command self.no_args_is_help = no_args_is_help self.invoke_without_command = invoke_without_command if subcommand_metavar is None: if chain: subcommand_metavar = "COMMAND1 [ARGS]... [COMMAND2 [ARGS]...]..." else: subcommand_metavar = "COMMAND [ARGS]..." self.subcommand_metavar = subcommand_metavar self.chain = chain # The result callback that is stored. This can be set or # overridden with the :func:`result_callback` decorator. self._result_callback = result_callback if self.chain: for param in self.params: if isinstance(param, Argument) and not param.required: raise RuntimeError( "Multi commands in chain mode cannot have" " optional arguments." ) async def to_info_dict(self, ctx: Context) -> t.Dict[str, t.Any]: info_dict = await super().to_info_dict(ctx) commands = {} for name in self.list_commands(ctx): command = self.get_command(ctx, name) if command is None: continue sub_ctx = ctx._make_sub_context(command) async with sub_ctx.scope(cleanup=False): commands[name] = await command.to_info_dict(sub_ctx) info_dict.update(commands=commands, chain=self.chain) return info_dict def collect_usage_pieces(self, ctx: Context) -> t.List[str]: rv = super().collect_usage_pieces(ctx) rv.append(self.subcommand_metavar) return rv def format_options(self, ctx: Context, formatter: HelpFormatter) -> None: super().format_options(ctx, formatter) self.format_commands(ctx, formatter) def result_callback(self, replace: bool = False) -> t.Callable[[F], F]: """Adds a result callback to the command. By default if a result callback is already registered this will chain them but this can be disabled with the `replace` parameter. The result callback is invoked with the return value of the subcommand (or the list of return values from all subcommands if chaining is enabled) as well as the parameters as they would be passed to the main callback. Example:: @click.group() @click.option('-i', '--input', default=23) def cli(input): return 42 @cli.result_callback() def process_result(result, input): return result + input :param replace: if set to `True` an already existing result callback will be removed. .. versionchanged:: 8.0 Renamed from ``resultcallback``. .. versionadded:: 3.0 """ def decorator(f: F) -> F: old_callback = self._result_callback if old_callback is None or replace: self._result_callback = f return f def function(__value, *args, **kwargs): # type: ignore inner = old_callback(__value, *args, **kwargs) return f(inner, *args, **kwargs) self._result_callback = rv = update_wrapper(t.cast(F, function), f) return rv return decorator def format_commands(self, ctx: Context, formatter: HelpFormatter) -> None: """Extra format methods for multi methods that adds all the commands after the options. """ commands = [] for subcommand in self.list_commands(ctx): cmd = self.get_command(ctx, subcommand) # What is this, the tool lied about a command. Ignore it if cmd is None: continue if cmd.hidden: continue commands.append((subcommand, cmd)) # allow for 3 times the default spacing if len(commands): limit = formatter.width - 6 - max(len(cmd[0]) for cmd in commands) rows = [] for subcommand, cmd in commands: help = cmd.get_short_help_str(limit) rows.append((subcommand, help)) if rows: with formatter.section(_("Commands")): formatter.write_dl(rows) async def parse_args(self, ctx: Context, args: t.List[str]) -> t.List[str]: if not args and self.no_args_is_help and not ctx.resilient_parsing: echo(ctx.get_help(), color=ctx.color) ctx.exit() rest = await super().parse_args(ctx, args) if self.chain: ctx.protected_args = rest ctx.args = [] elif rest: ctx.protected_args, ctx.args = rest[:1], rest[1:] return ctx.args async def invoke(self, ctx: Context) -> t.Any: async def _process_result(value: t.Any) -> t.Any: if self._result_callback is not None: value = await ctx.invoke(self._result_callback, value, **ctx.params) return value if not ctx.protected_args: if self.invoke_without_command: # No subcommand was invoked, so the result callback is # invoked with the group return value for regular # groups, or an empty list for chained groups. async with ctx: rv = await super().invoke(ctx) return await _process_result([] if self.chain else rv) ctx.fail(_("Missing command.")) # Fetch args back out args = [*ctx.protected_args, *ctx.args] ctx.args = [] ctx.protected_args = [] # If we're not in chain mode, we only allow the invocation of a # single command but we also inform the current context about the # name of the command to invoke. if not self.chain: # Make sure the context is entered so we do not clean up # resources until the result processor has worked. async with ctx: cmd_name, cmd, args = await self.resolve_command(ctx, args
(name: Optional[str] = None, invoke_without_command: bool = False, no_args_is_help: Optional[bool] = None, subcommand_metavar: Optional[str] = None, chain: bool = False, result_callback: Optional[Callable[..., Any]] = None, **attrs: Any) -> None
[ 0.01209102850407362, -0.028029201552271843, -0.007098899222910404, -0.005633319728076458, 0.04885263741016388, 0.001707297982648015, -0.011958719231188297, 0.008371103554964066, 0.04335671663284302, -0.04897477105259895, 0.039550282061100006, 0.003401873866096139, -0.0019579222425818443, -0.01438099518418312, -0.019581766799092293, 0.030247924849390984, 0.058134641498327255, -0.030532898381352425, 0.03295517712831497, 0.032079897820949554, 0.03140817582607269, 0.05320866405963898, 0.038390032947063446, -0.05223161354660988, -0.017261264845728874, 0.019439280033111572, 0.021352674812078476, -0.032792333513498306, 0.03885820135474205, -0.022289017215371132, -0.06049584969878197, -0.03452252969145775, -0.0006558212335221469, 0.041199058294296265, -0.011734810657799244, -0.00719049759209156, -0.023184647783637047, 0.09615828096866608, 0.002111858921125531, 0.012111383490264416, -0.023876726627349854, -0.04649142920970917, 0.01998887211084366, -0.011592323891818523, 0.04653213918209076, 0.0067121488973498344, -0.005287280306220055, 0.054552111774683, -0.06656172126531601, -0.08150248229503632, 0.07356393337249756, -0.034095071256160736, 0.008727320469915867, 0.0033229971304535866, -0.023225359618663788, 0.02823275327682495, 0.04763132333755493, 0.027622096240520477, 0.009943547658622265, -0.026380425319075584, 0.00565876392647624, 0.05805321782827377, -0.00219073542393744, 0.02770351804792881, -0.012660975567996502, -0.056302666664123535, -0.008793475106358528, -0.0018230684800073504, -0.014910232275724411, 0.055244192481040955, -0.031021425500512123, 0.0030940005090087652, 0.022044753655791283, -0.060414429754018784, 0.01483898889273405, -0.02108805626630783, -0.041443321853876114, -0.012691508047282696, 0.06668385118246078, 0.04130083695054054, -0.0400591641664505, 0.014421706087887287, 0.0012664792593568563, 0.03340299054980278, 0.022797897458076477, 0.02910803072154522, 0.01723073236644268, -0.010223432444036007, 0.005409412086009979, -0.006096402183175087, -0.06236853450536728, -0.02485378086566925, -0.002410826738923788, 0.06301990151405334, -0.03541816398501396, -0.028110623359680176, -0.018553825095295906, -0.013190212659537792, -0.0289655439555645, -0.017892278730869293, -0.061757877469062805, 0.007409316953271627, 0.08459648489952087, -0.021352674812078476, 0.028497371822595596, -0.016162080690264702, -0.05776824429631233, 0.037860795855522156, 0.012803462333977222, 0.0036817588843405247, -0.0357031375169754, -0.0004506783152464777, -0.00284719280898571, -0.032649848610162735, -0.022757187485694885, 0.0024120991583913565, -0.06884150952100754, -0.05141740292310715, -0.01402477826923132, -0.02066059596836567, 0.002763227326795459, -0.0005009303567931056, 0.023103227838873863, -0.04351956024765968, -0.009816327132284641, 0.027337122708559036, -0.02330677956342697, 0.021637648344039917, 0.020579174160957336, -0.00892578437924385, 0.008747675456106663, 0.033179085701704025, -0.006605283822864294, -0.011999429203569889, 0.04034413769841194, 0.025851188227534294, -0.01877773366868496, 0.0031118113547563553, -0.06012945622205734, 0.07954838126897812, 0.029189452528953552, 0.00030691924621351063, 0.00043223134707659483, 0.00863572210073471, -0.02693001739680767, -0.05829748138785362, 0.06448548287153244, -0.05377861484885216, -0.009801060892641544, 0.00337897427380085, 0.00668670516461134, -0.005735096056014299, 0.014014600776135921, 0.027296412736177444, 0.03244629502296448, 0.04697995260357857, -0.03262948989868164, -0.0313878208398819, 0.0010820096358656883, -0.040038809180259705, 0.0005925290752202272, -0.059640929102897644, -0.004134663380682468, 0.01221315935254097, 0.014442061074078083, 0.019683541730046272, 0.03527567535638809, -0.045880768448114395, -0.020925214514136314, 0.07209835201501846, 0.018014410510659218, 0.038980334997177124, 0.03828825429081917, 0.023143937811255455, -0.0569540336728096, 0.08378227800130844, -0.03128604590892792, 0.0006217897753231227, -0.007958909496665001, -0.09200580418109894, -0.024405963718891144, -0.019286613911390305, 0.021250898018479347, -0.01612137071788311, 0.001207321765832603, 0.020538464188575745, 0.08268309384584427, 0.006366109475493431, -0.0023497610818594694, -0.03399329632520676, -0.0661546140909195, -0.030085083097219467, 0.07502951472997665, 0.006539129186421633, -0.008121751248836517, -0.006493330001831055, -0.045880768448114395, -0.0025825744960457087, 0.06261280179023743, -0.03142853081226349, -0.04987040162086487, -0.03847145289182663, 0.056302666664123535, -0.0009726000716909766, 0.019337503239512444, 0.049504008144140244, 0.014034955762326717, 0.04073088616132736, -0.0012779290555045009, -0.026034384965896606, -0.010890067555010319, -0.032894108444452286, 0.025688346475362778, 0.0878533273935318, 0.030716096982359886, -0.04547366499900818, 0.07690219581127167, 0.025036977604031563, 0.02175978012382984, 0.03804399073123932, 0.0738489031791687, 0.00817772839218378, 0.04093443974852562, 0.05723900720477104, -0.03220203146338463, 0.01781085878610611, 0.0530865341424942, 0.005582431796938181, 0.06037371978163719, 0.03118426725268364, -0.012925594113767147, -0.05618053302168846, -0.04966684803366661, 0.028212398290634155, -0.09599543362855911, -0.05699474364519119, 0.029209807515144348, 0.025016622617840767, 0.006320310290902853, 0.023917438462376595, -0.005521365907043219, 0.02432454377412796, 0.011958719231188297, -0.0036334150936454535, -0.02365281991660595, -0.027581386268138885, 0.021556226536631584, -0.0036105152685195208, 0.013465008698403835, 0.0038547785952687263, -0.0025838466826826334, 0.0014808456180617213, 0.01506289653480053, 0.005872494075447321, -0.058663878589868546, -0.03867500647902489, -0.048771217465400696, -0.04233895242214203, 0.005648586433380842, -0.008589922450482845, -0.008559389039874077, -0.0046333675272762775, -0.05227232351899147, 0.05727972090244293, 0.007597602903842926, -0.013963712379336357, 0.024874135851860046, -0.05410429835319519, -0.03663947805762291, 0.05141740292310715, 0.017729436978697777, 0.022024398669600487, -0.05516277253627777, 0.025423727929592133, -0.09786812216043472, 0.05903027206659317, 0.0018943119794130325, -0.04364169016480446, -0.03635450452566147, -0.03963170200586319, 0.03615095093846321, 0.007994530722498894, -0.0458400584757328, -0.03470572829246521, 0.03470572829246521, 0.003775901859626174, 0.023103227838873863, 0.02012118138372898, -0.018574180081486702, 0.05088816583156586, 0.03527567535638809, -0.00006170190317789093, 0.02452809549868107, -0.003959099296480417, 0.01569391041994095, 0.02471129223704338, -0.09526264667510986, 0.013556607067584991, 0.00005764675006503239, -0.08557353913784027, -0.02914874069392681, -0.03672090172767639, -0.019245903939008713, -0.006381376180797815, -0.010493139736354351, 0.015276627615094185, 0.0815431997179985, -0.07413388043642044, 0.010696692392230034, -0.004277150146663189, 0.03370831906795502, 0.036700546741485596, -0.0027097947895526886, -0.0015088340733200312, -0.00004707155312644318, 0.03094000369310379, 0.04791629686951637, -0.011928185820579529, 0.025403372943401337, 0.05206876993179321, -0.08076969534158707, -0.006895346567034721, 0.05532561242580414, 0.008579744957387447, 0.08138035237789154, 0.04093443974852562, -0.016670962795615196, 0.04897477105259895, 0.005348346196115017, 0.04089372977614403, -0.043845243752002716, -0.0025151476729661226, -0.056587640196084976, 0.020833615213632584, -0.06542182713747025, -0.013699093833565712, -0.012996837496757507, -0.02369352988898754, 0.005063372664153576, -0.0154496468603611, 0.041239768266677856, 0.06729450821876526, -0.04706137627363205, -0.011694100685417652, -0.011571968905627728, -0.029901886358857155, 0.08337517082691193, 0.07010353356599808, 0.03205954283475876, -0.023327134549617767, 0.04518869146704674, -0.006997122894972563, -0.00938377808779478, 0.003976909909397364, 0.0642005130648613, -0.09583259373903275, -0.014757568016648293, -0.04130083695054054, 0.01320039015263319, -0.07848990708589554, 0.00818281713873148, -0.024120990186929703, 0.01635545678436756, 0.0473056398332119, -0.020589351654052734, -0.028314175084233284, -0.003076189663261175, -0.028599148616194725, 0.02660433202981949, -0.029189452528953552, 0.03108249232172966, -0.004333127290010452, 0.0632234588265419, -0.015276627615094185, 0.011398948729038239, -0.0015711721498519182, -0.02361210808157921, -0.031876347959041595, -0.06700953841209412, -0.06489259004592896, 0.03606953099370003, 0.0027657717000693083, 0.020192423835396767, 0.010213254950940609, -0.017780324444174767, -0.018167074769735336, 0.010635626502335072, 0.03150995075702667, -0.0057147410698235035, -0.013607495464384556, 0.006620550528168678, 0.006773214787244797, -0.031693149358034134, 0.012029962614178658, -0.05023679509758949, -0.019724253565073013, 0.017301976680755615, -0.005040472839027643, -0.051132429391145706, -0.06000732630491257, 0.03625272959470749, -0.013108791783452034, 0.09322711825370789, 0.007567070424556732, 0.05141740292310715, -0.03277197852730751, 0.034827861934900284, 0.09192438423633575, -0.06399695575237274, 0.004256795160472393, -0.025220174342393875, -0.05479637533426285, -0.04258321598172188, 0.010004613548517227, -0.04852695390582085, -0.04160616546869278, -0.010432073846459389, 0.06171716749668121, -0.009241290390491486, 0.02383601665496826, -0.0005397326312959194, 0.0008421991369687021, 0.01867595687508583, 0.020589351654052734, 0.06912648677825928, 0.030777161940932274, -0.017627660185098648, -0.007185408845543861, 0.007918198592960835, -0.035743847489356995, -0.021596936509013176, -0.008656077086925507, -0.02175978012382984, -0.013261456042528152, -0.023632464930415154, -0.01829938404262066, 0.01839098334312439, -0.0044145481660962105, 0.051132429391145706, 0.05556987598538399, -0.0333012156188488, 0.019337503239512444, 0.010365919210016727, -0.01862506940960884, 0.02200404182076454, -0.021352674812078476, 0.022329727187752724, 0.052679430693387985, 0.019703898578882217, -0.04934116452932358, 0.013393765315413475, 0.08215385675430298, 0.014706679619848728, -0.030247924849390984, -0.01028449833393097, -0.04840482398867607, -0.011714455671608448, 0.004763132426887751, -0.02721499092876911, -0.005109171848744154, 0.017648015171289444, 0.0031245334539562464, -0.024120990186929703, 0.018889686092734337, -0.023469621315598488, -0.001214318792335689, 0.08190958946943283, 0.02428383193910122, -0.06790516525506973, 0.0017454640474170446, -0.0021385750733315945, -0.011348061263561249, -0.020884502679109573, 0.06029229983687401, 0.012467600405216217, -0.004193184897303581, 0.046654269099235535, -0.07502951472997665, -0.07767569273710251, -0.046939242631196976, -0.014157087542116642, -0.025912253186106682, 0.027622096240520477, -0.02576976642012596, -0.04421163722872734, -0.028151333332061768, 0.07051064074039459, -0.044618744403123856, -0.008060685358941555, -0.04046626761555672, -0.014981475658714771, 0.009699284099042416, 0.020497752353549004, -0.0003501742030493915, 0.009867215529084206, -0.0014108744217082858, -0.008910518139600754, -0.021393384784460068, 0.026868950575590134, -0.04221682250499725, 0.04400808364152908, 0.00914460327476263, 0.007327895611524582, -0.0197954960167408, 0.03802363574504852, 0.002933702664449811, 0.0017670915694907308, -0.003167788265272975, -0.04126012325286865, -0.03987596556544304, -0.054999928921461105, 0.021922621876001358, 0.027398187667131424, -0.016050128266215324, -0.01724090985953808, -0.03413578122854233, -0.0018841343699023128, 0.02196333184838295, 0.06505542993545532, -0.018258674070239067, 0.02452809549868107, 0.01441152859479189, -0.031204622238874435, -0.006859724875539541, 0.01699664816260338, 0.005816517397761345, -0.04478158429265022, 0.0005839416990056634, 0.028110623359680176, 0.020619884133338928, 0.015164673328399658, 0.011358238756656647, 0.009612774476408958, 0.02273683249950409, -0.0006182912038639188, 0.002892992226406932, -0.038878560066223145, 0.0873648002743721, -0.03755546733736992, -0.003834423376247287, 0.03069574199616909, 0.05715758726000786, -0.03747404366731644, -0.00010575196938589215, 0.013902646489441395, 0.024304186925292015, 0.03507212549448013, -0.017831213772296906, 0.03843074291944504, -0.025993674993515015, -0.060210876166820526, 0.03334192559123039, -0.01747499592602253, 0.06570679694414139, -0.04266463965177536, -0.006951323244720697, 0.016426699236035347, -0.03692445158958435, 0.004745321348309517, -0.00041028583655133843, 0.012681330554187298, 0.06110651046037674, -0.08162461966276169, -0.06774232536554337, 0.09917085617780685, 0.029026608914136887, 0.026665398851037025, 0.0598444826900959, 0.015958528965711594, -0.02562727965414524, -0.05556987598538399, -0.003887855913490057, -0.02196333184838295, -0.02245185896754265, -0.018085654824972153, 0.042257532477378845, 0.049504008144140244, -0.025810478255152702, 0.008900339715182781, -0.038736071437597275, 0.01486952230334282, -0.013648206368088722, -0.005796161945909262, 0.013180035166442394, -0.03069574199616909, 0.024894490838050842, 0.003829334396868944, 0.018268851563334465, 0.03688374161720276, -0.02882305718958378, -0.012040140107274055, -0.0009547892259433866, 0.005063372664153576, -0.014299574308097363, 0.04107692837715149, 0.034685373306274414, -0.01395353488624096, 0.020548641681671143, 0.03181527927517891, -0.028029201552271843, -0.00009867533663054928, 0.008905429393053055, 0.004686799831688404, 0.02442631870508194, 0.010203077457845211, 0.019001640379428864, -0.0002409236622042954, -0.021942976862192154, -0.06106579676270485, 0.04657284915447235, -0.027479609474539757, -0.04270534962415695, -0.011968896724283695, -0.0045875683426856995, -0.04474087432026863, -0.00509390514343977, -0.06000732630491257, 0.0272760558873415, 0.05776824429631233, 0.004808931611478329, 0.025688346475362778, 0.028456661850214005, -0.034787148237228394, -0.0041143083944916725, -0.08964459598064423, 0.0020482486579567194, -0.045147981494665146, 0.0033408079762011766, -0.01455401536077261, -0.017871923744678497, 0.00266653997823596, -0.01602977141737938, 0.030329346656799316, 0.006198178511112928, 0.06558466702699661, -0.09070306271314621, 0.008187905885279179, 0.005836872383952141, -0.0008434713236056268, -0.03452252969145775, 0.021495161578059196, -0.06061798334121704, -0.015001831576228142, -0.009999524801969528, -0.03663947805762291, -0.005984448362141848, -0.025749411433935165, 0.017546240240335464, 0.032079897820949554, 0.003905666759237647, 0.010223432444036007, 0.09884516894817352, -0.04714279621839523, 0.027886714786291122, 0.015663377940654755, -0.020446864888072014, -0.011521080508828163, -0.04046626761555672, -0.010900245048105717, 0.01897110790014267, -0.028782347217202187, 0.007658668793737888, 0.014319930225610733, 0.027296412736177444, -0.00808612909168005, -0.028599148616194725, 0.01597888395190239, -0.03438004478812218, 0.03948921710252762, 0.026706108823418617, 0.06672456115484238, -0.03258877992630005, -0.027866359800100327, 0.011582146398723125, -0.03877678140997887, 0.019337503239512444, 0.013607495464384556, 0.002118219854310155, 0.020619884133338928, -0.009561886079609394, -0.016905048862099648, -0.00010153779294341803, 0.00018685498798731714, 0.019368035718798637, -0.023225359618663788, -0.007149787154048681, 0.06892292946577072, -0.003371340921148658, 0.016324924305081367, -0.11724632978439331, 0.046694979071617126, 0.018309561535716057, -0.020772548392415047, -0.027398187667131424, -0.07804208993911743, 0.0037733574863523245, -0.06456690281629562, -0.11276817321777344, 0.006315221544355154, -0.01997869461774826, 0.0666024312376976, -0.05080674588680267, -0.02090485766530037, -0.040669821202754974, 0.009882481768727303, 0.046939242631196976, -0.03543851897120476, -0.0680680125951767, 0.05829748138785362, 0.015754975378513336, 0.050318218767642975, 0.038308609277009964, 0.03389151766896248, -0.03794221580028534, 0.02200404182076454, -0.059722352772951126, 0.030349701642990112, 0.05377861484885216, 0.02175978012382984, 0.006391553673893213, -0.013648206368088722, 0.018014410510659218, 0.053656481206417084, -0.00015830990741960704, 0.038451097905635834, -0.005040472839027643, 0.002230173908174038, -0.007007300388067961, 0.05951879918575287, -0.020487574860453606, -0.03411542624235153, -0.015001831576228142, -0.023530688136816025, -0.016467411071062088, 0.05544774606823921, -0.03946886211633682, 0.06550324708223343, -0.04421163722872734, -0.006605283822864294, 0.009429576806724072, -0.040181294083595276, -0.02118983119726181, 0.0018752289470285177, -0.009882481768727303, -0.0027784937992691994, -0.0107374032959342, 0.019317148253321648, 0.03749439865350723, 0.04844553396105766, -0.051661666482686996, 0.005272014066576958, -0.011673744767904282, -0.030329346656799316, 0.025566214695572853, -0.010513494722545147, -0.01004023477435112, 0.013149501755833626, 0.058134641498327255, -0.009694195352494717, -0.04050698131322861, -0.0018625068478286266, -0.008493234403431416, -0.005974270403385162, -0.022614700719714165, 0.06057727336883545, 0.013047725893557072, -0.001137986546382308, 0.02780529297888279 ]
9,517
asyncclick.core
get_command
Given a context and a command name, this returns a :class:`Command` object if it exists or returns `None`.
def get_command(self, ctx: Context, cmd_name: str) -> t.Optional[Command]: """Given a context and a command name, this returns a :class:`Command` object if it exists or returns `None`. """ raise NotImplementedError
(self, ctx: asyncclick.core.Context, cmd_name: str) -> Optional[asyncclick.core.Command]
[ 0.06040837615728378, -0.047034211456775665, 0.017287923023104668, -0.046584948897361755, 0.025521501898765564, -0.03922397270798683, 0.07644355297088623, 0.022860491648316383, 0.056019436568021774, -0.04043352231383324, 0.02070058137178421, -0.02028587833046913, -0.024743935093283653, -0.025556061416864395, -0.01172399427741766, -0.0038446406833827496, 0.06289659440517426, 0.05173417553305626, 0.00881243497133255, -0.038843829184770584, 0.06085763871669769, 0.08266409486532211, 0.02927110716700554, -0.07005021721124649, -0.005745362024754286, 0.07271122187376022, 0.04454599320888519, -0.002466617850586772, 0.003464496461674571, -0.025642456486821175, 0.0028446021024137735, -0.014721949584782124, 0.004509893245995045, 0.05968264490365982, -0.06223997846245766, 0.06324217468500137, 0.007862074300646782, 0.020441392436623573, -0.011732633225619793, -0.08722582459449768, -0.013287768699228764, 0.0017840859945863485, 0.05964808538556099, -0.01317545399069786, -0.002689088461920619, -0.04292174056172371, -0.03922397270798683, -0.01256203930824995, -0.08259497582912445, 0.012855786830186844, 0.07360974699258804, -0.01995757222175598, 0.00701970886439085, 0.005188104696571827, -0.007598564960062504, -0.022272996604442596, 0.00503259152173996, 0.01559455320239067, -0.009451768361032009, 0.04319820925593376, -0.014592355117201805, 0.0496952198445797, -0.028009718284010887, 0.026420025154948235, 0.00409951014444232, -0.009667758829891682, 0.016657229512929916, -0.024035483598709106, -0.01359015703201294, 0.050075363367795944, -0.03474863991141319, 0.0037776834797114134, -0.028787286952137947, -0.030757125467061996, 0.021858293563127518, -0.0736788660287857, -0.0033673003781586885, -0.04226512834429741, 0.0843920186161995, 0.032813359051942825, -0.019370077177882195, 0.0039029582403600216, -0.02673105150461197, 0.01645851694047451, 0.0028856403660029173, 0.024571141228079796, 0.0320703499019146, -0.013685192912817001, -0.020303158089518547, -0.050351832062006, -0.01705465279519558, -0.049004048109054565, -0.02837258391082287, 0.053392987698316574, 0.05612311512231827, -0.045271724462509155, 0.021737338975071907, 0.04316364973783493, -0.029944999143481255, 0.04983345419168472, -0.0666634738445282, 0.05259814113378525, 0.01047124620527029, 0.020527789369225502, 0.00658772699534893, 0.0029007596895098686, -0.014367724768817425, 0.0313100628554821, 0.015793265774846077, -0.05169961601495743, -0.030065953731536865, 0.04440775886178017, 0.04005337879061699, -0.02246306836605072, 0.059129707515239716, -0.024208275601267815, -0.09047432988882065, 0.00013789678632747382, -0.04361291229724884, -0.013581517152488232, -0.06099587306380272, 0.011456165462732315, 0.03569899871945381, -0.10250070691108704, 0.06420981884002686, 0.02013036608695984, -0.012778030708432198, -0.06400246918201447, -0.011015543714165688, 0.0010529563296586275, 0.06573039293289185, 0.027024799957871437, 0.018834419548511505, 0.007896632887423038, -0.01881713978946209, 0.02963397093117237, 0.021184401586651802, 0.015732787549495697, -0.05245990678668022, 0.03500782698392868, 0.018506113439798355, 0.005633046384900808, -0.010462606325745583, -0.04858934506773949, -0.017676707357168198, 0.004561730660498142, -0.00762448413297534, -0.060028232634067535, 0.03673575818538666, 0.02025132067501545, 0.013063138350844383, 0.0022549466229975224, -0.024052763357758522, -0.017728544771671295, 0.030670728534460068, 0.02799244038760662, -0.007503529079258442, 0.0013877424644306302, -0.05270181596279144, -0.03770339861512184, 0.025227753445506096, -0.0018402436980977654, -0.04775993898510933, -0.03625193610787392, 0.03331445902585983, 0.007451691199094057, -0.015153931453824043, -0.0035163341090083122, 0.04983345419168472, 0.021409032866358757, -0.03607914596796036, 0.06528113037347794, 0.018748022615909576, -0.011058741249144077, -0.0110846608877182, 0.021944690495729446, -0.051423147320747375, 0.0189380943775177, 0.000806186581030488, -0.05919882655143738, 0.022843213751912117, 0.003684807335957885, 0.019525591284036636, -0.003224746324121952, 0.014946579933166504, 0.010168858803808689, 0.0725729912519455, 0.0391894169151783, -0.03246777504682541, 0.007905271835625172, -0.05093932896852493, 0.0133828055113554, 0.04157395660877228, 0.01582782343029976, -0.004151348024606705, -0.0019234002102166414, -0.026264511048793793, 0.0365629643201828, 0.017573030665516853, 0.02730126865208149, 0.07132888585329056, -0.020337717607617378, 0.03901662304997444, 0.03670119866728783, -0.013581517152488232, 0.02828618697822094, 0.04209233447909355, 0.023966366425156593, -0.025590619072318077, -0.008881552144885063, -0.008747637271881104, -0.06728553026914597, -0.02631634846329689, 0.03811809793114662, 0.021460870280861855, 0.05968264490365982, 0.008976588025689125, -0.0026631695218384266, -0.008458209224045277, 0.03053249418735504, 0.035232458263635635, 0.045928336679935455, 0.06317306309938431, 0.0802449956536293, 0.013685192912817001, -0.014782426878809929, -0.002799243899062276, 0.01721016690135002, 0.006034789606928825, -0.020510509610176086, -0.004639487713575363, -0.028510818257927895, 0.008367492817342281, -0.0005324179073795676, -0.017935896292328835, -0.05436062812805176, 0.0005048790480941534, 0.024951284751296043, -0.014583715237677097, -0.01529216580092907, -0.0006755120120942593, 0.051872409880161285, 0.00996150728315115, 0.07941558957099915, 0.043267324566841125, 0.0006911713280715048, 0.01807413063943386, -0.002643730491399765, -0.011205615475773811, -0.015274886973202229, -0.008484127931296825, -0.016769545152783394, 0.024052763357758522, -0.03139645978808403, -0.048796698451042175, -0.05622678995132446, -0.09227137267589569, -0.060442935675382614, -0.027128474786877632, 0.06137601658701897, -0.06472819298505783, 0.021633662283420563, -0.0030044354498386383, 0.02685200609266758, 0.0084970872849226, -0.02849353849887848, 0.011577120050787926, -0.017495274543762207, -0.02595348469913006, 0.005736722145229578, 0.0064624520018696785, 0.05235622823238373, 0.009641840122640133, -0.01995757222175598, -0.029737647622823715, -0.013624715618789196, 0.014333166182041168, -0.006708682049065828, 0.005088748876005411, -0.008427971042692661, -0.014151733368635178, -0.02766413241624832, 0.02778508886694908, 0.044165849685668945, -0.09303165972232819, -0.0012052300153300166, 0.009382651187479496, -0.06873699277639389, 0.007957110181450844, 0.05456797778606415, -0.002637250581756234, 0.06293115019798279, -0.016795463860034943, -0.0020465152338147163, 0.0228259339928627, 0.02114984393119812, -0.04364747181534767, -0.0009066223865374923, 0.05087020993232727, -0.0028985997196286917, 0.005438654683530331, -0.03476591780781746, -0.08328614383935928, 0.008091024123132229, -0.018748022615909576, 0.04620480537414551, 0.03894750401377678, -0.016389399766921997, -0.0012052300153300166, -0.009641840122640133, -0.008389092050492764, 0.029944999143481255, 0.012225093320012093, 0.06704361736774445, 0.015732787549495697, 0.004648127127438784, 0.03808354213833809, 0.01233740895986557, 0.03315894678235054, 0.06410614401102066, -0.060235582292079926, 0.03492143377661705, 0.02837258391082287, -0.015974698588252068, -0.02738766372203827, 0.04506437107920647, -0.051181238144636154, -0.002020596293732524, 0.018678905442357063, 0.05964808538556099, -0.022203879430890083, 0.022929608821868896, 0.006285339593887329, -0.018506113439798355, -0.05546649917960167, -0.03943132609128952, -0.001172831398434937, 0.00875195674598217, -0.01371111162006855, 0.006052068900316954, 0.06476275622844696, 0.013667913153767586, 0.0117412731051445, 0.0011577119585126638, 0.06559216231107712, -0.027906043455004692, 0.08197291940450668, -0.013451922684907913, 0.011041462421417236, -0.023257914930582047, -0.017814941704273224, -0.03231225907802582, -0.010013344697654247, -0.01759895123541355, 0.03435121476650238, -0.026126276701688766, 0.024121880531311035, 0.05798927694559097, 0.02849353849887848, -0.06410614401102066, 0.006090947426855564, -0.01756439171731472, -0.00021963589824736118, -0.008026227355003357, -0.09081991761922836, -0.013270489871501923, 0.012700273655354977, -0.01613021083176136, -0.00824653822928667, 0.016268445178866386, -0.005762641318142414, 0.031828440725803375, 0.009339452721178532, -0.012121417559683323, -0.05705619603395462, -0.005201064515858889, -0.010955065488815308, -0.04748347029089928, 0.033297181129455566, -0.03808354213833809, -0.028130672872066498, -0.009287615306675434, 0.0035876112524420023, 0.034644965082407, -0.022601302713155746, -0.027232151478528976, -0.023275194689631462, 0.01971566304564476, -0.008039186708629131, -0.06006278842687607, -0.011585759930312634, -0.012363327667117119, -0.03856736049056053, -0.007723839953541756, -0.0463084802031517, 0.0212362390011549, 0.0011350329732522368, -0.0028424421325325966, -0.08224938809871674, 0.009002506732940674, 0.06372600048780441, 0.024329232051968575, 0.09538164734840393, 0.005347938276827335, -0.05290916562080383, -0.007620164193212986, -0.023638060316443443, 0.08473760634660721, -0.05214887857437134, 0.0074171326123178005, -0.049004048109054565, 0.008337254635989666, -0.008756277151405811, -0.0020335556473582983, -0.043716587126255035, -0.04140116274356842, 0.08059057593345642, 0.03181116282939911, -0.003332741791382432, 0.011205615475773811, -0.05370401218533516, 0.0003820341662503779, 0.0016501715872436762, 0.012942183762788773, 0.011205615475773811, 0.038429126143455505, 0.024242835119366646, 0.030757125467061996, -0.005127627402544022, -0.016268445178866386, -0.07989940792322159, -0.02225571684539318, -0.00269988807849586, -0.061306897550821304, 0.027698691934347153, 0.008734677918255329, 0.030601611360907555, -0.016233887523412704, 0.011101939715445042, 0.041919540613889694, -0.060028232634067535, 0.013253210112452507, -0.0025940523482859135, 0.011525282636284828, -0.02685200609266758, 0.0032549849711358547, -0.008842673152685165, 0.019076328724622726, 0.010298453271389008, -0.07015389204025269, 0.05111212283372879, 0.1201946958899498, 0.028787286952137947, -0.0258325282484293, 0.03683943301439285, -0.06635244935750961, -0.029893159866333008, 0.020717861130833626, -0.00690739369019866, -0.0029612372163683176, -0.049453310668468475, 0.0823185071349144, 0.007892312481999397, -0.058023832738399506, -0.005913835018873215, 0.04185042530298233, 0.016173409298062325, 0.029374781996011734, -0.0072270603850483894, -0.028355304151773453, 0.008786515332758427, -0.000035064796975348145, 0.003175068413838744, 0.008523006923496723, 0.0032290660310536623, -0.03167292848229408, 0.052529022097587585, -0.05235622823238373, 0.026540979743003845, -0.011853588744997978, 0.0030130750965327024, 0.0005286380765028298, -0.02365534007549286, 0.018177805468440056, -0.015542715787887573, 0.0038252014201134443, -0.017633508890867233, -0.03303799033164978, 0.004401897545903921, -0.05366945639252663, -0.01645851694047451, 0.08902286738157272, 0.02959941327571869, -0.058680448681116104, -0.02381085231900215, 0.010764993727207184, -0.0199230145663023, -0.003969915211200714, 0.02778508886694908, 0.001439580344595015, 0.0691862553358078, 0.02733582630753517, -0.008501407690346241, -0.04582466185092926, -0.021167121827602386, -0.08197291940450668, -0.04558274894952774, -0.0027862845454365015, -0.0017840859945863485, -0.010911867953836918, -0.017693987116217613, 0.01141296699643135, 0.01422085054218769, 0.0058922357857227325, 0.027767809107899666, 0.020268600434064865, -0.006635244935750961, -0.03481775522232056, 0.029132872819900513, 0.012181894853711128, -0.009736876003444195, 0.0018002854194492102, -0.008129903115332127, -0.03967323526740074, -0.04219600930809975, 0.00084560492541641, -0.05422239378094673, 0.0028402821626514196, 0.0303769800812006, 0.030999034643173218, 0.049453310668468475, 0.003963435534387827, -0.03409202769398689, 0.02114984393119812, 0.030981754884123802, 0.0024493385571986437, -0.10021984577178955, 0.0789317712187767, -0.04883125424385071, 0.021668221801519394, 0.01467875111848116, -0.06500466167926788, 0.028303466737270355, 0.0353015772998333, -0.018713464960455894, -0.015482238493859768, -0.007667682133615017, 0.06113410368561745, -0.03537069261074066, 0.020752418786287308, -0.05401504039764404, -0.003730165306478739, -0.0614105723798275, 0.002689088461920619, 0.023862691596150398, 0.026160836219787598, -0.0010707755573093891, -0.018298761919140816, 0.020631464198231697, 0.008674200624227524, 0.0018013652879744768, 0.008721718564629555, -0.005309059750288725, -0.007836155593395233, 0.03226042166352272, -0.026420025154948235, 0.006920353043824434, 0.024864889681339264, 0.07533767819404602, -0.03029058501124382, -0.016804102808237076, -0.000045256874727783725, 0.04026073217391968, -0.014747868292033672, 0.007101785391569138, 0.03718501701951027, 0.04782905802130699, -0.006518609821796417, -0.015326724387705326, 0.004946195054799318, -0.0019190803868696094, -0.02099432982504368, -0.03118910640478134, 0.036424729973077774, -0.06407158076763153, -0.06217086315155029, -0.0228777714073658, -0.018834419548511505, 0.05370401218533516, -0.037530604749917984, 0.017728544771671295, -0.0005907355225645006, 0.03846368566155434, 0.02324063703417778, 0.06493555009365082, -0.006833956576883793, 0.0008688239613547921, 0.02980676479637623, -0.030342422425746918, -0.04872757941484451, 0.012691633775830269, 0.019974851980805397, 0.05004080384969711, 0.055155474692583084, 0.05259814113378525, 0.0482783168554306, -0.06901346147060394, -0.06935904175043106, -0.0450989305973053, -0.021668221801519394, -0.006721641402691603, -0.04841655120253563, 0.012985381297767162, 0.07768765836954117, -0.009546804241836071, 0.004635167773813009, -0.018661625683307648, -0.018713464960455894, 0.028960078954696655, 0.02177189663052559, 0.06033925712108612, 0.02718031406402588, -0.021460870280861855, -0.005244262516498566, -0.04257615655660629, 0.025279592722654343, 0.004842519294470549, -0.0244674663990736, -0.021218961104750633, 0.03849824517965317, -0.004527172539383173, -0.03467952087521553, -0.012682993896305561, -0.018834419548511505, -0.023793574422597885, -0.01918000541627407, -0.029011916369199753, -0.029201989993453026, 0.01947375200688839, 0.05543194338679314, 0.008993866853415966, 0.03070528618991375, 0.025694293901324272, -0.0021944690961390734, -0.024156438186764717, 0.0034169782884418964, -0.021737338975071907, 0.014255409128963947, 0.04530628025531769, -0.010177497752010822, -0.013227291405200958, -0.01726200431585312, 0.03680487349629402, 0.001428780728019774, 0.04979889467358589, -0.08376996964216232, -0.07409356534481049, -0.0464121550321579, -0.006674123462289572, -0.024294672533869743, -0.021201681345701218, -0.021961970254778862, 0.021823735907673836, 0.03162108734250069, -0.07319504767656326, -0.02771597169339657, -0.027197591960430145, -0.06604142487049103, -0.0083458935841918, -0.023586222901940346, 0.020475951954722404, 0.02628179080784321, -0.018316039815545082, -0.05477532744407654, -0.03739237040281296, 0.0067475601099431515, 0.04758714884519577, -0.014307246543467045, 0.05543194338679314, -0.008648281916975975, 0.016484437510371208, -0.004179426934570074, 0.03405746817588806, 0.06113410368561745, -0.0489349327981472, -0.0015896940603852272, 0.07824059575796127, -0.037565164268016815, 0.024035483598709106, -0.0736788660287857, 0.008237898349761963, 0.0391894169151783, 0.014955219812691212, 0.003449376905336976, -0.03288247808814049, -0.012086858972907066, -0.04814008250832558, -0.058127511292696, -0.04070999100804329, 0.047690823674201965, 0.05131947249174118, -0.054256949573755264, -0.013737030327320099, -0.05000624805688858, 0.011015543714165688, -0.004453735426068306, -0.025054961442947388, -0.02610899694263935, -0.032606009393930435, 0.022774096578359604, -0.005075789522379637, -0.00875195674598217, 0.06351864337921143, -0.0031426697969436646, 0.013469201512634754, -0.0391894169151783, -0.05149226635694504, 0.07457739114761353, -0.005421375390142202, 0.0039979941211640835, -0.012035020627081394, -0.03091263771057129, 0.02783692628145218, -0.054084159433841705, 0.07354062795639038, 0.0066914027556777, -0.02852809801697731, -0.05657237395644188, -0.02021676115691662, 0.022635862231254578, -0.027197591960430145, -0.0258325282484293, 0.01079955231398344, 0.04468422755599022, 0.061963509768247604, -0.03988058492541313, 0.03467952087521553, -0.04862390458583832, 0.03746148571372032, 0.03991514444351196, -0.0725729912519455, 0.0449952557682991, 0.009227137081325054, 0.0077454387210309505, 0.05415327474474907, -0.025677016004920006, -0.00047086048289202154, 0.037081342190504074, 0.009520885534584522, -0.020666023716330528, 0.021080726757645607, 0.017970455810427666, 0.02927110716700554, 0.011482084169983864, -0.04734523594379425, -0.03981146961450577, -0.03573355823755264, 0.08563613146543503, 0.029893159866333008, 0.04934963583946228, -0.0016112931771203876, 0.03091263771057129, -0.0641406998038292, 0.0005907355225645006, -0.016855942085385323, -0.06490098685026169, 0.013374165631830692, 0.026921123266220093 ]
9,525
asyncclick.core
list_commands
Returns a list of subcommand names in the order they should appear.
def list_commands(self, ctx: Context) -> t.List[str]: """Returns a list of subcommand names in the order they should appear. """ return []
(self, ctx: asyncclick.core.Context) -> List[str]
[ -0.016034891828894615, -0.018203651532530785, -0.011610272340476513, -0.07985219359397888, 0.026147063821554184, 0.041633233428001404, 0.040204811841249466, 0.01469357032328844, 0.08953758329153061, -0.03929898515343666, 0.004899308551102877, -0.045326221734285355, -0.01877850480377674, -0.03280141204595566, -0.023447001352906227, -0.018586887046694756, 0.061596281826496124, -0.013430637307465076, 0.017175886780023575, -0.029596177861094475, 0.02515413798391819, 0.08786528557538986, 0.030920078977942467, -0.06828547269105911, -0.021565666422247887, 0.04449007287621498, 0.023481840267777443, -0.04661528393626213, 0.014449693262577057, -0.046650126576423645, -0.05870459973812103, -0.004524783231317997, 0.009685387834906578, 0.0022340845316648483, -0.05351351201534271, 0.03236591815948486, 0.02005014754831791, 0.04961148649454117, -0.009049566462635994, 0.009746357798576355, 0.03672086074948311, -0.030850399285554886, 0.04449007287621498, -0.013866131193935871, 0.0211475919932127, -0.03672086074948311, 0.0008111076895147562, 0.038706712424755096, -0.00734678516164422, -0.020172085613012314, 0.05274704098701477, -0.02600770629942417, -0.001983675407245755, -0.025502532720565796, 0.0038192830979824066, -0.010913481935858727, 0.035640835762023926, 0.00006658295751549304, 0.03186074644327164, 0.03640730306506157, 0.01823849231004715, 0.038323476910591125, -0.029752954840660095, -0.019353356212377548, 0.045012667775154114, -0.01996304839849472, 0.041633233428001404, -0.00731194531545043, -0.03320206701755524, 0.017602670937776566, -0.05654454976320267, -0.03294077143073082, 0.027174830436706543, -0.013073531910777092, -0.008161159232258797, -0.06365181505680084, 0.009763777256011963, -0.0002419714001007378, 0.026443200185894966, -0.0014382192166522145, -0.05567356199026108, 0.03828863799571991, -0.007159522734582424, 0.0868200957775116, 0.015625527128577232, 0.02302892692387104, 0.046092692762613297, -0.02011982537806034, -0.0240566935390234, 0.015834564343094826, -0.07351139932870865, -0.03459564968943596, -0.011976087465882301, 0.05288640037178993, -0.03929898515343666, -0.04243454337120056, -0.03881123289465904, 0.01665329374372959, -0.058460723608732224, -0.007817118428647518, -0.07553209364414215, 0.03734797239303589, 0.04525654390454292, 0.011636401526629925, 0.022576013579964638, -0.041180320084095, -0.09720227867364883, 0.006101272068917751, -0.0059706238098442554, 0.015198742970824242, -0.0322265625, 0.04915856942534447, 0.0886317566037178, -0.043201010674238205, 0.07006228715181351, -0.017663639038801193, -0.04529138281941414, -0.019527554512023926, -0.015311971306800842, -0.04166807234287262, 0.004494298715144396, 0.013343538157641888, 0.03703441470861435, -0.06577702611684799, 0.030362647026777267, 0.07434754818677902, -0.01573004573583603, 0.006828546989709139, -0.03180848807096481, 0.013448056764900684, 0.024631544947624207, 0.02703547291457653, -0.004524783231317997, 0.002175292931497097, 0.043653927743434906, -0.03254011645913124, 0.06062077358365059, -0.045465581119060516, 0.01262061856687069, 0.02294182777404785, 0.004256954416632652, 0.004503008909523487, 0.02327280305325985, -0.006854676641523838, -0.04316617175936699, -0.003838880220428109, 0.028881967067718506, -0.039647381752729416, 0.016679422929883003, -0.005095280706882477, -0.006414827890694141, 0.031024597585201263, -0.02578124962747097, -0.05950590968132019, 0.007094198372215033, 0.04055320844054222, -0.0454307422041893, -0.02334248274564743, -0.011488333344459534, -0.045639779418706894, 0.0031507995445281267, -0.0034730653278529644, -0.07239653170108795, 0.019370775669813156, 0.017236854881048203, 0.02043338119983673, 0.026164483278989792, -0.039508022367954254, -0.019997887313365936, 0.03151234984397888, 0.003978238441050053, 0.03975189849734306, 0.034142736345529556, 0.004065337125211954, 0.014815508387982845, 0.018203651532530785, -0.07013196498155594, 0.05692778527736664, 0.004289616830646992, -0.06508023291826248, -0.0602026991546154, 0.011488333344459534, 0.02430056966841221, -0.004964632447808981, 0.010695734061300755, 0.03537954017519951, 0.06570734828710556, 0.0465456061065197, -0.048949532210826874, -0.03341110423207283, -0.061909835785627365, -0.00648886151611805, 0.04804370552301407, 0.028829706832766533, -0.045639779418706894, 0.004376715514808893, -0.05776393413543701, -0.0030658782925456762, -0.024021852761507034, -0.040831923484802246, -0.0032183011062443256, -0.01971917226910591, 0.022053420543670654, -0.024161210283637047, 0.062362752854824066, 0.06518474966287613, 0.014641311019659042, -0.005069151055067778, -0.018813343718647957, -0.05866976082324982, 0.03381175920367241, -0.005434966180473566, 0.023551519960165024, 0.0027131279930472374, 0.015146483667194843, 0.003616778180003166, 0.052085090428590775, 0.00842681061476469, -0.005548194516450167, -0.01862172596156597, 0.034160155802965164, 0.039508022367954254, -0.010547666810452938, 0.034142736345529556, -0.03252269700169563, 0.01167995110154152, 0.036999575793743134, 0.013509025797247887, 0.0026456264313310385, -0.0007550378213636577, -0.005478515289723873, -0.03151234984397888, -0.03679053857922554, 0.022349555045366287, -0.04867081716656685, 0.015512298792600632, -0.0240566935390234, 0.00725533114746213, 0.008892788551747799, -0.00201089377515018, -0.04915856942534447, 0.021008234471082687, 0.02011982537806034, 0.047764990478754044, 0.024196051061153412, 0.03686022013425827, 0.01628747768700123, -0.04198163002729416, 0.014920026995241642, -0.0010685935849323869, -0.01096574030816555, -0.01702781766653061, 0.005735456943511963, -0.04222550615668297, -0.06940033286809921, -0.04828758165240288, -0.08173352479934692, -0.03105943650007248, -0.041946787387132645, -0.005321737378835678, -0.032122042030096054, 0.031007178127765656, -0.05501161143183708, 0.041528716683387756, 0.033533044159412384, 0.018673986196517944, 0.02862066961824894, 0.027610324323177338, -0.06069045513868332, 0.04030933231115341, 0.09462415426969528, -0.018848182633519173, -0.07692567259073257, 0.018517207354307175, -0.03919446840882301, 0.05605679750442505, -0.012585778720676899, 0.028080657124519348, -0.05685810744762421, -0.028638090938329697, 0.021739864721894264, 0.0066064451821148396, -0.05198057368397713, 0.019457874819636345, -0.021269530057907104, -0.016235219314694405, 0.021043073385953903, -0.010216690599918365, -0.02734902873635292, 0.03783572465181351, 0.046092692762613297, 0.02736644819378853, 0.027105150744318962, -0.029840053990483284, 0.056788425892591476, 0.024004433304071426, -0.024544445797801018, -0.0008943959255702794, 0.022123098373413086, 0.0038628324400633574, -0.01571262627840042, -0.019074641168117523, -0.07706502825021744, -0.03436919301748276, -0.022819889709353447, 0.025049619376659393, 0.06769319623708725, -0.03081556037068367, 0.008513908833265305, -0.06950485706329346, 0.012481260113418102, 0.049332767724990845, 0.004143726080656052, 0.00859229825437069, -0.027610324323177338, -0.009458931162953377, -0.011444784700870514, 0.025188976898789406, 0.015703916549682617, 0.060411736369132996, -0.08737753331661224, 0.04003061354160309, 0.055847760289907455, 0.029038744047284126, 0.05149281769990921, 0.05389674752950668, -0.002967892214655876, 0.017977194860577583, 0.03403821587562561, -0.0008894966449588537, -0.010930901393294334, -0.007982606068253517, -0.03496146574616432, -0.0005307584069669247, -0.030623942613601685, -0.03146009147167206, -0.0013990247389301658, 0.022279877215623856, -0.04361908510327339, -0.011113808490335941, 0.03741765022277832, 0.009580869227647781, -0.003982593305408955, 0.055847760289907455, 0.006419182755053043, 0.005726747214794159, 0.07838893681764603, 0.06253694742918015, -0.0029918442014604807, -0.0016527000116184354, 0.06943517178297043, 0.011218327097594738, -0.018987542018294334, 0.020259184762835503, 0.08821368217468262, 0.0008617339190095663, -0.008971177972853184, 0.014440983533859253, 0.0027653872966766357, -0.014118717983365059, 0.0454307422041893, -0.017437182366847992, 0.00558303389698267, 0.016905879601836205, -0.04671980440616608, -0.049646325409412384, 0.06487119942903519, -0.02877744846045971, 0.04919341206550598, -0.008548748679459095, -0.02383023500442505, 0.05462837591767311, 0.049019213765859604, -0.015965212136507034, -0.0400654561817646, -0.006236275192350149, 0.01933593675494194, -0.041946787387132645, -0.0163397379219532, -0.016592323780059814, -0.015433910302817822, -0.02996199205517769, 0.05299091711640358, 0.01383129134774208, -0.05267736315727234, 0.01462389063090086, -0.025746408849954605, 0.023046346381306648, 0.006506281439214945, 0.004156791139394045, -0.013552575372159481, -0.02797613851726055, -0.08640202134847641, 0.0355885773897171, -0.06250210851430893, -0.023046346381306648, 0.02367345802485943, -0.023063765838742256, -0.03314980864524841, -0.06487119942903519, 0.0469985194504261, -0.03679053857922554, 0.04131967946887016, -0.002340780571103096, -0.03339368477463722, -0.02459670603275299, -0.025258656591176987, 0.08222128450870514, -0.08187288790941238, -0.03574535250663757, -0.01647038571536541, -0.03283625468611717, -0.006027237977832556, -0.004346230998635292, -0.027087731286883354, -0.05201541259884834, -0.013038692995905876, 0.05957558751106262, 0.012942884117364883, 0.025659311562776566, -0.03213946148753166, -0.03299302980303764, 0.03912478685379028, 0.05717166140675545, 0.06584670394659042, 0.04368876665830612, 0.003174751764163375, 0.022262457758188248, 0.02398701384663582, -0.029996830970048904, -0.036999575793743134, 0.015738755464553833, -0.04867081716656685, -0.04086676239967346, 0.027418706566095352, -0.013909680768847466, 0.04557010158896446, -0.04731207713484764, -0.016766522079706192, 0.06873838603496552, -0.042887456715106964, 0.04334037005901337, 0.019928209483623505, 0.0004442039644345641, 0.050970226526260376, 0.029125843197107315, -0.017506862059235573, 0.01926625706255436, 0.05100506544113159, -0.02783678099513054, -0.041946787387132645, 0.0760895237326622, 0.056230995804071426, -0.03727829083800316, 0.03755700960755348, -0.022837309166789055, -0.023952174931764603, 0.023760557174682617, -0.045152027159929276, -0.03943834453821182, 0.025450274348258972, 0.08932854235172272, -0.01210673525929451, 0.0018628259422257543, -0.0029243426397442818, -0.018900442868471146, 0.019301097840070724, 0.035170502960681915, 0.007272751070559025, 0.022541172802448273, 0.02783678099513054, 0.011862858198583126, -0.018586887046694756, -0.022541172802448273, 0.019841110333800316, -0.01238545123487711, 0.009824746288359165, -0.04762563109397888, -0.019910788163542747, -0.04926308989524841, -0.04403715953230858, -0.046336568892002106, -0.0036124233156442642, 0.018673986196517944, -0.032122042030096054, -0.038009922951459885, 0.008074060082435608, -0.05999366194009781, -0.03724345192313194, -0.10103462636470795, 0.01608715020120144, -0.006144821178168058, -0.010739283636212349, -0.053652871400117874, 0.020154666155576706, 0.02938714064657688, -0.02287214808166027, 0.000029753091439488344, -0.017080077901482582, 0.024248309433460236, 0.07013196498155594, 0.02365603856742382, -0.013630964793264866, -0.00970280822366476, -0.0076995352283120155, -0.043026816099882126, 0.04706820100545883, -0.02468380331993103, -0.04466427117586136, -0.037766046822071075, -0.0004542747628875077, -0.007015809416770935, 0.011549302376806736, -0.011453494429588318, 0.016217799857258797, -0.00513012008741498, -0.0422951839864254, 0.04243454337120056, 0.07901604473590851, 0.07866764813661575, -0.015834564343094826, -0.03856735676527023, -0.00904085673391819, -0.02231471613049507, 0.020851455628871918, 0.002917810343205929, -0.09546030312776566, 0.004219937603920698, 0.0003565607767086476, 0.06737964600324631, 0.05591743811964989, -0.00935441255569458, -0.013308699242770672, 0.024108951911330223, -0.0037583138328045607, 0.019997887313365936, -0.054349660873413086, 0.03933382406830788, 0.009101825766265392, 0.046336568892002106, 0.018029455095529556, -0.005273833405226469, 0.03480468690395355, 0.0017397988121956587, -0.013779032044112682, 0.04260874167084694, 0.008387615904211998, -0.04079708456993103, -0.02325538359582424, 0.027261929586529732, -0.00804357510060072, -0.025136718526482582, -0.09943200647830963, -0.02689611352980137, -0.0018181877676397562, -0.03137299418449402, 0.005456740967929363, -0.039508022367954254, -0.026687076315283775, -0.0006053367396816611, -0.0008192732348106802, 0.034160155802965164, -0.022767629474401474, -0.008056640625, 0.046650126576423645, 0.01654006540775299, 0.0022133986931294203, 0.0559522770345211, 0.00711597315967083, -0.01870882511138916, 0.0023298931773751974, -0.0317736491560936, 0.04929792881011963, -0.03161687031388283, -0.01998046785593033, -0.01014701183885336, 0.07741342484951019, -0.01956239342689514, -0.00963312853127718, -0.022384395822882652, -0.014214526861906052, -0.013169340789318085, -0.024945100769400597, 0.04299197345972061, -0.010234110988676548, 0.004309213720262051, 0.03881123289465904, -0.002752322470769286, 0.07692567259073257, -0.019684331491589546, 0.008766495622694492, 0.035414379090070724, 0.043653927743434906, 0.0019248838070780039, 0.0010321208974346519, -0.03480468690395355, -0.0022950537968426943, 0.021757284179329872, -0.04954180493950844, -0.0005977156106382608, 0.0422951839864254, 0.03929898515343666, 0.09343960881233215, 0.013552575372159481, 0.04703335836529732, -0.00022319071285892278, 0.02907358482480049, -0.05738069862127304, -0.03348078578710556, 0.05201541259884834, -0.03696473687887192, -0.04156355559825897, 0.018743664026260376, -0.001667942269705236, -0.04187710955739021, 0.004842693917453289, 0.013761612586677074, -0.03482210636138916, 0.0814548134803772, -0.00043222785461694, 0.04180743172764778, 0.04400232061743736, -0.01909206062555313, 0.007525337394326925, -0.04267841950058937, -0.0038018631748855114, -0.05149281769990921, -0.023098604753613472, 0.002011982724070549, -0.030867820605635643, 0.024736063554883003, -0.041145481169223785, 0.02099081501364708, -0.014014199376106262, -0.01909206062555313, -0.05612647533416748, -0.04553525894880295, -0.11044129729270935, -0.01336095854640007, -0.030554264783859253, 0.014440983533859253, -0.022053420543670654, 0.01776815764605999, 0.017977194860577583, -0.025607051327824593, 0.003941221162676811, -0.07351139932870865, 0.00034948400571011007, 0.033602721989154816, -0.011227036826312542, 0.013221600092947483, 0.05062182992696762, -0.005134474951773882, 0.06518474966287613, -0.018534628674387932, -0.028585830703377724, -0.052781879901885986, -0.02970069646835327, 0.020781777799129486, -0.03330658748745918, 0.0026826434768736362, -0.007599371485412121, 0.029578756541013718, 0.026147063821554184, -0.05856524407863617, -0.04111064225435257, 0.022767629474401474, 0.002952649723738432, 0.0027980494778603315, 0.004141548648476601, 0.08640202134847641, 0.03090265952050686, -0.0033141099847853184, -0.01383129134774208, -0.04058804735541344, 0.05016891658306122, 0.006767577957361937, 0.024544445797801018, 0.07546241581439972, -0.01367451436817646, -0.04860113933682442, -0.033602721989154816, 0.025276076048612595, -0.016034891828894615, -0.006140466313809156, 0.050970226526260376, 0.045465581119060516, 0.009397962130606174, 0.025763830170035362, -0.0666828528046608, -0.03755700960755348, 0.02123469114303589, 0.015076804906129837, 0.002915632911026478, 0.028481312096118927, 0.0727449283003807, -0.02468380331993103, -0.07595016807317734, -0.0030571683309972286, 0.002915632911026478, 0.03452597185969353, -0.0123070627450943, -0.011636401526629925, -0.029543917626142502, 0.020189505070447922, -0.006366923451423645, -0.006240630056709051, -0.031024597585201263, -0.01391839049756527, 0.055220648646354675, 0.006593380123376846, 0.03985641896724701, 0.022262457758188248, -0.04731207713484764, 0.013395797461271286, -0.09030405431985855, 0.04198163002729416, 0.031721387058496475, 0.03637246415019035, 0.022454073652625084, -0.0017485086573287845, 0.0033402396366000175, 0.046894002705812454, 0.00680241733789444, 0.07629856467247009, 0.0217050239443779, -0.005025601480156183, 0.03248785808682442, -0.03755700960755348, -0.04086676239967346, -0.06323374062776566, -0.021095333620905876, -0.04361908510327339, 0.002469251397997141, 0.046023014932870865, -0.004243889823555946, 0.02649545855820179, -0.051841214299201965, 0.0014360416680574417, 0.0084485849365592, -0.007817118428647518, -0.011340266093611717, 0.03121621534228325, -0.0008682663319632411, -0.010913481935858727, -0.04748627543449402, 0.03269689530134201, 0.004415909759700298, 0.03511824086308479, -0.02869034931063652, 0.013056112453341484, 0.014240656048059464, -0.030153609812259674, -0.0528167225420475, -0.024544445797801018, 0.03672086074948311, -0.01423194631934166, 0.034003376960754395, -0.028951646760106087, 0.017236854881048203, -0.01426678616553545, -0.016801360994577408, -0.02067725919187069, 0.02703547291457653, 0.04410684108734131, -0.03717377409338951, 0.01763750985264778, -0.027227088809013367 ]
9,534
asyncclick.exceptions
NoSuchOption
Raised if click attempted to handle an option that does not exist. .. versionadded:: 4.0
class NoSuchOption(UsageError): """Raised if click attempted to handle an option that does not exist. .. versionadded:: 4.0 """ def __init__( self, option_name: str, message: t.Optional[str] = None, possibilities: t.Optional[t.Sequence[str]] = None, ctx: t.Optional["Context"] = None, ) -> None: if message is None: message = _("No such option: {name}").format(name=option_name) super().__init__(message, ctx) self.option_name = option_name self.possibilities = possibilities def format_message(self) -> str: if not self.possibilities: return self.message possibility_str = ", ".join(sorted(self.possibilities)) suggest = ngettext( "Did you mean {possibility}?", "(Possible options: {possibilities})", len(self.possibilities), ).format(possibility=possibility_str, possibilities=possibility_str) return f"{self.message} {suggest}"
(option_name: str, message: Optional[str] = None, possibilities: Optional[Sequence[str]] = None, ctx: Optional[ForwardRef('Context')] = None) -> None
[ 0.009026966989040375, -0.029023412615060806, 0.056253738701343536, -0.023784782737493515, 0.039096347987651825, -0.05730849504470825, 0.04683123528957367, 0.008574300445616245, 0.05730849504470825, -0.0630744993686676, 0.011980287730693817, 0.03591449558734894, 0.007813995704054832, -0.05115574225783348, -0.06391830742359161, 0.051472168415784836, 0.028654247522354126, -0.021886220201849937, 0.02758190967142582, 0.01870436780154705, 0.0665552020072937, 0.025454815477132797, 0.014810554683208466, -0.028074130415916443, 0.012252767570316792, 0.06212522089481354, 0.00008034286292968318, -0.009202759712934494, -0.013439369387924671, -0.026632629334926605, -0.024593431502580643, -0.022202646359801292, -0.06500822305679321, 0.08304458111524582, -0.04946812987327576, 0.010899161919951439, 0.003812509123235941, 0.0572030209004879, -0.004904622677713633, -0.02601735293865204, -0.021833481267094612, -0.004821121226996183, 0.03023638390004635, -0.035158585757017136, -0.028724564239382744, -0.031572408974170685, -0.03209978714585304, 0.07390334457159042, -0.12185965478420258, -0.03538711741566658, 0.050839316099882126, 0.031677886843681335, 0.0038256936240941286, 0.0017359551275148988, -0.06799670308828354, 0.050839316099882126, 0.04169808328151703, 0.061281416565179825, 0.010266306810081005, 0.02777528204023838, -0.01814183034002781, 0.08747456222772598, 0.008842384442687035, -0.009598294273018837, -0.006574655417352915, -0.03394561633467674, -0.014081013388931751, -0.011444119736552238, 0.01759687252342701, 0.027529172599315643, 0.03994015231728554, 0.02538449876010418, -0.050909630954265594, 0.028706984594464302, 0.044229499995708466, -0.04008078947663307, -0.025173546746373177, 0.01677064597606659, 0.05565604194998741, 0.023802362382411957, -0.014582023024559021, -0.02155221253633499, 0.015636781230568886, -0.0041047646664083, 0.028214765712618828, -0.025788823142647743, 0.02547239512205124, -0.02466374821960926, 0.06887567043304443, -0.018669208511710167, -0.050276778638362885, -0.055339615792036057, -0.01686733216047287, 0.04429981857538223, -0.05080415681004524, -0.002231471473351121, 0.039834678173065186, -0.06335577368736267, -0.05189407244324684, -0.00029362912755459547, 0.029374998062849045, -0.009255497716367245, 0.10062387585639954, -0.022712446749210358, 0.0630744993686676, -0.04662028327584267, -0.016621220856904984, 0.015926839783787727, 0.02547239512205124, 0.012041815556585789, 0.004974939860403538, -0.032416217029094696, 0.003537832759320736, -0.020954517647624016, -0.008200740441679955, -0.008802831172943115, -0.03793611377477646, -0.06539496779441833, -0.02355625294148922, -0.024347320199012756, 0.003091758117079735, 0.0029203600715845823, -0.05361684411764145, -0.03485973924398422, 0.014063434675335884, -0.0026303017511963844, -0.06929757446050644, -0.028548771515488625, 0.008675380609929562, 0.036178186535835266, 0.04370212182402611, -0.010582733899354935, -0.005924221593886614, -0.016700327396392822, -0.0026149197947233915, 0.03776032105088234, 0.013632741756737232, 0.023151928558945656, 0.0010915641905739903, 0.09675642848014832, 0.010916740633547306, 0.005550661589950323, -0.036424294114112854, 0.02153463289141655, 0.02301129512488842, -0.024364899843931198, 0.011250747367739677, -0.016436638310551643, 0.020374400541186333, -0.004106962122023106, 0.014968767762184143, -0.014854502864181995, -0.03941277414560318, -0.013492107391357422, 0.031396616250276566, -0.0013305327156558633, -0.03877992182970047, -0.052105024456977844, 0.00045376550406217575, -0.024048471823334694, 0.0489407517015934, -0.0661332979798317, 0.01795724779367447, 0.06349640339612961, -0.003652098122984171, 0.045776478946208954, 0.021059993654489517, 0.042858317494392395, 0.019091112539172173, 0.047885995358228683, -0.021130310371518135, 0.006315360777080059, -0.007304196245968342, 0.02236086130142212, -0.012226398102939129, 0.0885293185710907, -0.007809600792825222, -0.01200665719807148, 0.048905592411756516, -0.11778125911951065, -0.01585652306675911, -0.04117070510983467, -0.042506732046604156, 0.0033950009383261204, 0.039096347987651825, -0.018106671050190926, 0.03754936903715134, 0.005097995046526194, -0.022712446749210358, -0.003493884578347206, -0.02144673652946949, -0.02411879040300846, 0.02849603444337845, 0.04778051748871803, -0.05762492120265961, -0.013228418305516243, -0.04974940046668053, -0.05062836408615112, 0.033963192254304886, -0.051085423678159714, -0.014740237034857273, 0.01425680611282587, 0.011048585176467896, 0.00300166429951787, 0.042858317494392395, 0.06623877584934235, 0.06163300201296806, -0.04085427522659302, -0.04778051748871803, -0.02007555216550827, -0.020321663469076157, -0.0031884443014860153, 0.014687499031424522, 0.04556552693247795, 0.005836325231939554, 0.016269635409116745, 0.06673099845647812, 0.011716598644852638, -0.072637639939785, 0.042401254177093506, 0.042295780032873154, -0.031238403171300888, 0.05776555836200714, 0.045424893498420715, 0.07035233080387115, 0.006130778230726719, 0.04974940046668053, 0.0268611591309309, -0.012173660099506378, 0.021042414009571075, 0.002135884016752243, -0.05931253358721733, 0.004887043498456478, 0.0003425215254537761, -0.07404398173093796, -0.015926839783787727, 0.004821121226996183, -0.03529921919107437, 0.033963192254304886, 0.010494837537407875, -0.005739639047533274, 0.022677287459373474, -0.025085650384426117, 0.048167262226343155, 0.012709829024970531, -0.02795107662677765, -0.014898451045155525, 0.0017875944031402469, -0.010740947909653187, -0.024786803871393204, 0.029199205338954926, 0.03025396354496479, -0.03628366068005562, -0.03232831880450249, -0.01596199721097946, -0.06926241517066956, -0.03320728614926338, -0.014081013388931751, 0.011162851005792618, 0.010688209906220436, -0.05087447538971901, 0.0037619685754179955, -0.05161280557513237, 0.037338417023420334, -0.02070840634405613, -0.006908662151545286, 0.0071503776125609875, 0.0024632983841001987, -0.008332584984600544, 0.03797127306461334, 0.049362655729055405, 0.02970900572836399, 0.002480877796187997, 0.05674595758318901, 0.011857233010232449, 0.023450776934623718, 0.002535813022404909, 0.047991469502449036, -0.052667561918497086, -0.009826825000345707, 0.03941277414560318, 0.03044733591377735, 0.002280913293361664, 0.08543536067008972, -0.05080415681004524, 0.05414422228932381, 0.01870436780154705, 0.004763988312333822, 0.0012349453754723072, 0.07383303344249725, 0.023064032196998596, 0.05347621068358421, 0.08733392506837845, 0.01259556319564581, -0.010758527554571629, 0.049819715321063995, 0.017104651778936386, 0.010108093731105328, 0.012252767570316792, -0.03399835154414177, 0.0006372493808157742, -0.01604989357292652, -0.02677326276898384, -0.01732439361512661, -0.04226062074303627, -0.030271543189883232, 0.03645945340394974, -0.06627393513917923, 0.056042786687612534, -0.030658286064863205, -0.014028275385499, 0.01603231579065323, 0.03586175665259361, 0.0352289043366909, 0.006543891970068216, 0.06180879473686218, 0.010002617724239826, -0.039096347987651825, -0.0014184291940182447, 0.007005348335951567, -0.05161280557513237, 0.04630385711789131, -0.000023570673874928616, -0.05593730881810188, -0.03361160680651665, -0.013184470124542713, -0.04127617925405502, -0.008033736608922482, 0.028812460601329803, 0.0022182869724929333, -0.026984214782714844, -0.01329873502254486, -0.02557787112891674, -0.027019374072551727, -0.056253738701343536, 0.02703695185482502, 0.03016606718301773, 0.0024457192048430443, 0.02440005913376808, -0.005805561318993568, 0.007620623335242271, 0.009325814433395863, -0.06599266827106476, 0.015918049961328506, 0.038639284670352936, 0.002801699796691537, 0.02200927399098873, 0.0406784825026989, 0.04802662879228592, -0.020022815093398094, 0.008051316253840923, 0.005054046865552664, 0.02464616857469082, -0.00614396296441555, 0.027335800230503082, -0.029445314779877663, 0.0030565995257347822, -0.01132106501609087, 0.0015975182177498937, 0.007572280243039131, 0.04243641346693039, -0.05766008049249649, -0.015627991408109665, 0.007334960158914328, -0.046339016407728195, -0.022290542721748352, 0.05639437213540077, -0.03158998861908913, 0.014441389590501785, -0.03151967376470566, 0.018405519425868988, -0.053757477551698685, 0.0456710048019886, -0.029919955879449844, 0.019372381269931793, 0.006913057062774897, 0.042295780032873154, 0.04233093559741974, -0.0559021532535553, -0.06521917879581451, 0.0626526027917862, 0.014880871400237083, -0.030781341716647148, 0.051753439009189606, -0.025050492957234383, -0.028988253325223923, -0.00032027275301516056, 0.06609813868999481, 0.034138984978199005, -0.004750804044306278, -0.013773376122117043, -0.04345601052045822, 0.04103006795048714, 0.0406784825026989, -0.009510397911071777, -0.04345601052045822, -0.020216187462210655, -0.009888351894915104, -0.04880011826753616, 0.039553407579660416, 0.016902489587664604, 0.0034653181210160255, -0.05453096702694893, -0.017842981964349747, -0.01140896137803793, 0.05709754303097725, -0.02999027445912361, 0.026368940249085426, -0.0076997303403913975, 0.008293031714856625, -0.033330339938402176, 0.008350163698196411, -0.022255385294556618, -0.02492743730545044, -0.04528426006436348, 0.015241246670484543, -0.09738928079605103, 0.03218768537044525, -0.06725837290287018, -0.026281042024493217, 0.009334604255855083, -0.04324506223201752, 0.026790842413902283, 0.02933984063565731, 0.07523937523365021, 0.005278182681649923, -0.028390558436512947, 0.0008130422793328762, 0.06662552058696747, -0.012208819389343262, -0.05874999612569809, 0.04465140402317047, 0.01209455356001854, -0.04500298947095871, -0.015258826315402985, -0.055409930646419525, -0.05498802661895752, -0.014986347407102585, -0.047815676778554916, 0.03218768537044525, 0.006477969232946634, 0.00650433823466301, 0.008482009172439575, 0.05435517430305481, 0.019196588546037674, -0.05245660990476608, 0.001214069896377623, 0.0018710959702730179, 0.0027995023410767317, -0.05685143172740936, 0.007233879063278437, 0.07545032352209091, 0.02529660239815712, -0.013544845394790173, -0.012120922096073627, -0.03195915371179581, -0.08381807059049606, 0.020849041640758514, -0.0346839465200901, 0.011312275193631649, 0.017298024147748947, 0.028179606422781944, -0.015794994309544563, 0.007418461609631777, 0.02749401330947876, 0.023028872907161713, 0.04749925062060356, 0.026632629334926605, -0.08423997461795807, 0.01567194052040577, -0.04851884767413139, -0.009000597521662712, -0.0007015236769802868, 0.04299895092844963, -0.01278893556445837, -0.004882648587226868, -0.006895477417856455, 0.00609561987221241, -0.026333780959248543, -0.01338663138449192, 0.06887567043304443, -0.008750093169510365, 0.026615049690008163, -0.005423211958259344, -0.023485936224460602, -0.016181739047169685, -0.0031994313467293978, 0.0017513370839878917, 0.00045651226537302136, -0.015320354141294956, -0.04693671315908432, -0.04971424117684364, 0.0014283175114542246, -0.025068072602152824, 0.018370361998677254, -0.01575983688235283, -0.014749026857316494, -0.0010152041213586926, -0.0014305149670690298, -0.02301129512488842, 0.010310254991054535, -0.004159700125455856, 0.03108019009232521, -0.04398339241743088, 0.05874999612569809, -0.06986010819673538, 0.0315372496843338, 0.07973967492580414, 0.03419172391295433, -0.019020795822143555, -0.010890372097492218, -0.00047354219714179635, 0.08796678483486176, 0.0075854649767279625, 0.07861460000276566, 0.015469777397811413, -0.027458855882287025, -0.010899161919951439, 0.06901630759239197, 0.039272140711545944, -0.02666778676211834, 0.014362282119691372, -0.030130907893180847, -0.028583930805325508, 0.004935386590659618, -0.01916142925620079, -0.002823673887178302, -0.01805393397808075, 0.007181141059845686, 0.008301821537315845, 0.025050492957234383, 0.009325814433395863, 0.042014509439468384, 0.038920555263757706, -0.035527750849723816, 0.04131133854389191, -0.0593828521668911, 0.07784111052751541, -0.03986983746290207, 0.0015425829915329814, 0.025366919115185738, 0.040010470896959305, -0.009571924805641174, -0.016550904139876366, 0.044862356036901474, -0.02042713761329651, -0.0008344670641236007, -0.009809245355427265, 0.017016755416989326, -0.026632629334926605, -0.009457659907639027, 0.05379263684153557, 0.04078396037220955, 0.0022523468360304832, -0.012112133204936981, -0.010380572639405727, 0.021393999457359314, 0.027617068961262703, 0.066344253718853, -0.0038718392606824636, -0.06683646887540817, -0.03273264318704605, 0.0013030651025474072, -0.07671603560447693, 0.043420854955911636, 0.008732513524591923, -0.010187200270593166, -0.004544247407466173, 0.005629768595099449, -0.01868678815662861, 0.007818390615284443, -0.031115349382162094, -0.00798099860548973, 0.015698308125138283, -0.044405292719602585, -0.020409559831023216, 0.03245137631893158, -0.0017623241292312741, 0.0274061169475317, 0.042928632348775864, -0.059347692877054214, -0.01160233374685049, -0.030921977013349533, -0.004671697039157152, -0.014001906849443913, 0.03877992182970047, 0.0397995188832283, -0.06493790447711945, -0.016630010679364204, 0.009651031345129013, -0.0361078679561615, -0.024241844192147255, 0.02575366385281086, -0.03106261044740677, 0.0626526027917862, 0.05941801145672798, 0.031027451157569885, -0.04106522724032402, 0.03081650100648403, 0.0038718392606824636, -0.06261744350194931, 0.007704125251621008, -0.0034653181210160255, 0.034420255571603775, 0.07559096068143845, 0.025243865326046944, -0.04011594504117966, -0.04465140402317047, -0.05069867894053459, 0.014608392491936684, -0.009150021709501743, -0.008587484247982502, -0.025173546746373177, -0.0007597550866194069, -0.05410906299948692, -0.028109289705753326, 0.008728118613362312, 0.002601735293865204, 0.0395885668694973, 0.02255423367023468, -0.08902154117822647, 0.03649461269378662, -0.04647964984178543, 0.017298024147748947, -0.060367293655872345, -0.010257516987621784, -0.03677587956190109, 0.026281042024493217, -0.10364750772714615, 0.013052624650299549, 0.015654360875487328, -0.016550904139876366, 0.008912701159715652, -0.03440267592668533, -0.018212147057056427, -0.01868678815662861, 0.007339354604482651, 0.02033924125134945, -0.0062845973297953606, 0.0350179523229599, -0.01795724779367447, -0.021235786378383636, -0.05386295169591904, 0.04848368838429451, -0.015320354141294956, 0.0980924516916275, -0.07910681515932083, -0.04619838297367096, 0.007923866622149944, -0.033049069344997406, 0.022413598373532295, 0.05548024922609329, -0.04904622584581375, -0.0040014865808188915, 0.0042981370352208614, -0.014951189048588276, -0.034877318888902664, 0.003917985130101442, -0.013536055572330952, -0.008121632970869541, 0.015320354141294956, 0.023696886375546455, 0.04145197197794914, 0.004922201856970787, 0.019284484907984734, 0.00798099860548973, -0.014828133396804333, -0.06325029581785202, 0.02081388235092163, 0.023872679099440575, 0.024892278015613556, -0.04929233714938164, 0.006451600696891546, 0.039272140711545944, -0.005968169774860144, 0.03299633413553238, -0.010556365363299847, -0.003660887712612748, -0.02007555216550827, -0.02072598598897457, 0.02492743730545044, -0.01233187410980463, -0.05692175030708313, -0.015434619039297104, -0.03299633413553238, -0.007519542705267668, 0.011444119736552238, 0.01678822562098503, 0.030007852241396904, -0.09661579132080078, -0.05407390370965004, -0.011444119736552238, -0.05066352337598801, 0.05273788049817085, -0.017561713233590126, -0.07312985509634018, -0.023239824920892715, -0.05277303606271744, 0.0058714840561151505, 0.0003076376160606742, 0.10842908173799515, -0.013544845394790173, 0.02364414930343628, 0.005168312229216099, -0.054038748145103455, -0.006390072870999575, -0.047253139317035675, -0.03962372615933418, 0.0419793501496315, -0.0025995378382503986, 0.009545556269586086, 0.02933984063565731, -0.013184470124542713, -0.016726696863770485, -0.01301746629178524, -0.029269522055983543, 0.018264885991811752, 0.008271057158708572, -0.02888277918100357, -0.02796865440905094, -0.008547930978238583, 0.014265595935285091, -0.022940976545214653, -0.02986721880733967, 0.03969404473900795, 0.04619838297367096, -0.035809021443128586, -0.09865499287843704, 0.05379263684153557, -0.013483317568898201, -0.03554533049464226, -0.008833594620227814, -0.039834678173065186, 0.03457846865057945, 0.022765183821320534, -0.0026522758416831493, 0.014045855030417442, 0.043034110218286514, 0.04324506223201752, 0.03930730000138283, -0.02062050998210907, 0.037162624299526215, 0.014195279218256474, -0.016454217955470085, 0.017763875424861908, 0.04022142291069031, -0.021569792181253433, 0.008657801896333694, 0.008829199708998203, 0.012085763737559319, -0.0011091434862464666, -0.04939781129360199, -0.015645571053028107, 0.06441053003072739, 0.048905592411756516, -0.022132329642772675, -0.008095264434814453, 0.02281792275607586, -0.0007575576310046017, 0.011048585176467896, -0.0363188199698925, 0.015786204487085342, 0.052667561918497086, 0.009290656074881554, 0.009527976624667645, -0.0025929457042366266, -0.04099491238594055, 0.03503553196787834 ]
9,535
asyncclick.exceptions
__init__
null
def __init__( self, option_name: str, message: t.Optional[str] = None, possibilities: t.Optional[t.Sequence[str]] = None, ctx: t.Optional["Context"] = None, ) -> None: if message is None: message = _("No such option: {name}").format(name=option_name) super().__init__(message, ctx) self.option_name = option_name self.possibilities = possibilities
(self, option_name: str, message: Optional[str] = None, possibilities: Optional[Sequence[str]] = None, ctx: Optional[ForwardRef('Context')] = None) -> None
[ -0.001713473116979003, 0.001682712696492672, 0.02663174830377102, -0.03503505885601044, 0.014035897329449654, -0.06788270175457001, 0.012623193673789501, 0.03084251657128334, 0.03879011422395706, -0.020361164584755898, -0.015065804123878479, 0.05045631527900696, -0.027178600430488586, 0.02522815763950348, -0.03468871861696243, 0.04174312204122543, 0.036657389253377914, -0.016551421955227852, -0.004486474208533764, 0.019686713814735413, 0.08873603492975235, 0.04094107076525688, 0.016250653192400932, 0.04761267825961113, 0.031845081597566605, 0.07444494217634201, -0.011903169564902782, 0.007510116323828697, -0.04775850847363472, -0.03069669008255005, -0.024043310433626175, -0.0026636305265128613, -0.05209687724709511, 0.06824727356433868, -0.031516969203948975, -0.0036411304026842117, -0.024097995832562447, 0.0447690449655056, -0.050346944481134415, -0.004698379896581173, 0.058476828038692474, 0.009173461236059666, -0.009761328808963299, -0.02298606000840664, -0.022275151684880257, -0.01838338002562523, -0.03272004425525665, 0.06941389292478561, -0.07568447291851044, -0.038717202842235565, 0.04414927586913109, 0.009688414633274078, 0.0027821152471005917, -0.02728797122836113, -0.06660671532154083, 0.0861840546131134, 0.04538881033658981, 0.06070069968700409, 0.020397622138261795, 0.04451384395360947, -0.06678899377584457, 0.025064101442694664, 0.008663064800202847, -0.0025269172620028257, -0.009301060810685158, -0.008476223796606064, 0.0011791520519182086, -0.025538042187690735, 0.025355756282806396, 0.06540363281965256, 0.060299672186374664, 0.02340531349182129, -0.0738251730799675, 0.009032190777361393, 0.025483356788754463, 0.007040733937174082, -0.05570610612630844, 0.022019952535629272, 0.0356912799179554, 0.03565482422709465, -0.029074357822537422, 0.01697978936135769, -0.031808625906705856, -0.019540885463356972, 0.021290816366672516, -0.029274871572852135, 0.018957575783133507, -0.06569529324769974, 0.04772204905748367, -0.006826550234109163, -0.0555238202214241, -0.04892512783408165, -0.027069229632616043, 0.0480501614511013, -0.019504427909851074, -0.030678460374474525, 0.03319398686289787, -0.027962423861026764, -0.03552722558379173, 0.02958475425839424, -0.020962703973054886, -0.014828834682703018, 0.04010256379842758, -0.02747025527060032, 0.0223845224827528, -0.04517006874084473, -0.024790676310658455, 0.005167762283235788, 0.02154601365327835, -0.002410711022093892, -0.01023526769131422, 0.014035897329449654, -0.013407016173005104, 0.002232983708381653, -0.05206041783094406, 0.025301072746515274, -0.047175198793411255, -0.05986218899488449, 0.012869277037680149, -0.01972316950559616, -0.004844207316637039, -0.005983484908938408, -0.0414150096476078, -0.009105104953050613, -0.019139859825372696, 0.007587587460875511, -0.05570610612630844, -0.05534153804183006, 0.031480513513088226, 0.01581317000091076, 0.08056969195604324, -0.003572773886844516, 0.01074566412717104, -0.051805220544338226, 0.01123783178627491, -0.023532913997769356, -0.007218461483716965, 0.029894638806581497, -0.0023469114676117897, 0.08676736801862717, 0.011128460988402367, -0.01631445251405239, -0.024735990911722183, -0.011319859884679317, 0.020488765090703964, -0.02767076902091503, 0.04524298384785652, -0.0373682975769043, 0.019777854904532433, 0.018793519586324692, -0.008371409960091114, 0.023150116205215454, -0.03069669008255005, 0.0011096561793237925, 0.0220017246901989, -0.0029826280660927296, -0.015603543259203434, -0.056617528200149536, 0.010280839167535305, -0.03959216549992561, 0.026905175298452377, -0.04367533698678017, -0.010754778049886227, 0.028582191094756126, 0.007970384322106838, 0.016815733164548874, 0.004187983460724354, -0.004233554936945438, 0.04207123443484306, 0.03685790300369263, -0.010335524566471577, -0.0456075519323349, -0.0014104254078119993, 0.01219482533633709, 0.028892073780298233, 0.06503906846046448, -0.012149253860116005, 0.0035910021979361773, 0.03386843949556351, -0.09989184141159058, -0.00720934709534049, 0.013616642914712429, -0.05304475501179695, 0.0030828844755887985, 0.033759068697690964, -0.004247225821018219, 0.04830535873770714, 0.04250871762633324, -0.001495871227234602, -0.02387925423681736, -0.008931934833526611, -0.03410540893673897, 0.013835384510457516, 0.026194265112280846, -0.024262050166726112, 0.016186852008104324, -0.007355174515396357, -0.05417491868138313, 0.03210027888417244, -0.015904312953352928, 0.00020421546651050448, 0.010946176946163177, -0.012203939259052277, -0.012960419058799744, 0.013470815494656563, 0.08735067397356033, 0.051659394055604935, 0.019613798707723618, -0.01298776175826788, -0.02654060535132885, -0.02462662011384964, -0.03751412406563759, 0.037550583481788635, 0.029074357822537422, 0.015521515160799026, -0.039227597415447235, 0.017162073403596878, -0.01778184063732624, -0.03879011422395706, 0.06000801920890808, 0.1028083935379982, 0.006744522135704756, 0.05326349660754204, 0.047503307461738586, 0.006744522135704756, 0.03452466055750847, 0.0167975053191185, -0.02169184200465679, -0.017945896834135056, 0.07765314728021622, -0.07236690074205399, -0.03153519704937935, 0.00007861013727961108, -0.02149132825434208, -0.07976764440536499, -0.01217659655958414, -0.0032742831390351057, 0.01198519766330719, -0.029384242370724678, -0.03532671183347702, 0.02005128189921379, 0.02005128189921379, -0.01577671244740486, 0.05012820288538933, 0.061940230429172516, -0.025538042187690735, -0.007327831815928221, 0.0006066652131266892, 0.024790676310658455, 0.019796082749962807, 0.011219603940844536, 0.009651958011090755, -0.04987300559878349, 0.014072353951632977, -0.02617603726685047, -0.0448419563472271, -0.025009416043758392, -0.0211267601698637, 0.0016599270747974515, -0.0005121051799505949, -0.020124195143580437, 0.007551130373030901, -0.062450628727674484, 0.04451384395360947, -0.031425826251506805, -0.028563961386680603, -0.001142695196904242, -0.0310794860124588, -0.02429850772023201, 0.020816875621676445, 0.1259220540523529, 0.02336885780096054, 0.012295081280171871, 0.06285165250301361, -0.022092867642641068, -0.01834692247211933, 0.005582459270954132, -0.0009883231250569224, -0.04823244735598564, 0.0005573914386332035, 0.05734666436910629, 0.03341272845864296, 0.028290536254644394, 0.04823244735598564, -0.022256921976804733, 0.0036889801267534494, -0.004046713002026081, 0.03434237837791443, -0.024663075804710388, 0.05173230543732643, -0.015904312953352928, 0.09500661492347717, 0.06562237441539764, 0.06277874112129211, 0.01829223707318306, 0.007168333046138287, 0.03795160725712776, 0.06799207627773285, 0.0016633449122309685, -0.0687212124466896, 0.05526862293481827, -0.060445498675107956, -0.014291095547378063, 0.013634871691465378, -0.06347142159938812, -0.004101398400962353, 0.015576200559735298, -0.014828834682703018, 0.0845070406794548, 0.034980371594429016, 0.015156946144998074, 0.04513361304998398, -0.008243811316788197, 0.04491487145423889, 0.029366012662649155, 0.06821081787347794, 0.04079524427652359, -0.03835263475775719, 0.0182284377515316, 0.027087459340691566, -0.00802506972104311, -0.003909999970346689, 0.030168063938617706, -0.04298265650868416, -0.03158988431096077, 0.015412144362926483, 0.007879242300987244, -0.04061295837163925, 0.037550583481788635, 0.005778414662927389, -0.04786787927150726, -0.007423531264066696, -0.023259487003087997, -0.03461580350995064, -0.053956177085638046, -0.0037960722111165524, 0.0077197435311973095, 0.020270023494958878, 0.002884650370106101, 0.007391631603240967, 0.03696727380156517, -0.004456853028386831, -0.07517407834529877, -0.002670466201379895, 0.055779021233320236, -0.014591864310204983, -0.0002369696885580197, -0.031845081597566605, 0.042362891137599945, -0.0070726340636610985, -0.0050401631742715836, -0.022676177322864532, 0.009907156229019165, -0.021290816366672516, 0.04130563884973526, -0.02551981247961521, -0.010153239592909813, 0.013662214390933514, 0.009004848077893257, 0.0034839101135730743, 0.0012964976485818624, -0.01685219071805477, -0.003823414910584688, -0.026431234553456306, -0.046008575707674026, -0.03992027789354324, 0.04943552240729332, -0.028491048142313957, -0.001918543130159378, -0.0007786960923112929, 0.03395957872271538, -0.043529510498046875, 0.015667341649532318, -0.04035776108503342, 0.02397039532661438, -0.025483356788754463, 0.007027063053101301, 0.034834545105695724, -0.034597575664520264, -0.09325668960809708, 0.012121911160647869, 0.012377109378576279, -0.0028003437910228968, 0.058768484741449356, -0.06000801920890808, -0.00649388087913394, -0.0070817479863762856, 0.087861068546772, 0.06482032686471939, -0.006384510546922684, -0.013716899789869785, -0.02187412604689598, 0.04819599166512489, -0.00013827979273628443, -0.04710228368639946, -0.01775449886918068, -0.007870128378272057, 0.0020404458045959473, -0.041706666350364685, 0.014710349030792713, 0.02976703830063343, -0.030897201970219612, -0.0041036768816411495, 0.008567365817725658, -0.017107389867305756, 0.03494391590356827, -0.008900035172700882, 0.05450303107500076, 0.011319859884679317, 0.02411622367799282, -0.021053845062851906, 0.0033152971882373095, -0.013789813034236431, -0.0456075519323349, -0.07706983387470245, -0.005418403074145317, -0.048341818153858185, 0.03512619808316231, -0.009989184327423573, -0.033941350877285004, -0.011037318967282772, -0.02406153827905655, 0.037915151566267014, 0.04119626805186272, 0.047029368579387665, 0.04196186363697052, 0.009414988569915295, 0.003980635199695826, 0.02854573354125023, -0.05639878660440445, -0.09464205056428909, 0.033011700958013535, 0.009000291116535664, -0.03948279470205307, -0.0031102271750569344, -0.03308461606502533, -0.0447690449655056, -0.04451384395360947, -0.06485678255558014, 0.008312167599797249, 0.014172610826790333, -0.05858619883656502, 0.05771123617887497, 0.0713096484541893, 0.017973240464925766, -0.01516606006771326, -0.03625636175274849, 0.0013716899557039142, -0.015084031969308853, -0.038899485021829605, 0.03374083712697029, 0.06828372925519943, -0.0005924242432229221, -0.026941630989313126, -0.0423264317214489, -0.03406894952058792, -0.05599776282906532, 0.03173571079969406, -0.03676676005125046, -0.03893594443798065, 0.0044158389791846275, 0.0008288242970593274, 0.032647132873535156, -0.007191118784248829, -0.025647412985563278, 0.1028083935379982, 0.050164662301540375, 0.039409883320331573, -0.04250871762633324, -0.0286004189401865, -0.09019430726766586, 0.050638601183891296, -0.01280547771602869, 0.003625180572271347, -0.03552722558379173, 0.004333811346441507, -0.0026955301873385906, 0.0024266608525067568, -0.010052983649075031, -0.012951305136084557, 0.03319398686289787, -0.005473088473081589, 0.05840391665697098, -0.0007524926913902164, -0.020105967298150063, -0.046190861612558365, -0.009597272612154484, -0.02836344949901104, 0.007191118784248829, -0.017253216356039047, -0.052315615117549896, -0.010836806148290634, -0.02130904421210289, -0.02887384593486786, 0.030532633885741234, 0.03470694646239281, -0.009469673968851566, 0.010773006826639175, 0.018793519586324692, -0.01694333367049694, -0.009360303170979023, 0.017672469839453697, -0.005696387030184269, -0.037258926779031754, 0.03126177191734314, -0.06471095234155655, -0.056107133626937866, 0.050492774695158005, -0.013033333234488964, -0.027816595509648323, -0.006794650107622147, -0.013643985614180565, 0.01990545354783535, -0.021236130967736244, 0.0738251730799675, 0.026795804500579834, -0.050638601183891296, -0.013817155733704567, 0.012486480176448822, 0.020124195143580437, -0.021655384451150894, 0.03219142183661461, 0.02125435881316662, 0.013005990535020828, -0.0008026208961382508, -0.023113658651709557, -0.018456293269991875, -0.011073775589466095, 0.0447690449655056, 0.016815733164548874, 0.02242097817361355, -0.02256680652499199, -0.016004567965865135, 0.06616923213005066, -0.020871561020612717, 0.036055851727724075, -0.04050358757376671, 0.08414246886968613, -0.028655104339122772, 0.03430591896176338, 0.04159729555249214, 0.03860783204436302, 0.044185735285282135, -0.022512121126055717, -0.009542587213218212, -0.05687272548675537, -0.03326689824461937, 0.03700372949242592, 0.012705220840871334, -0.02962121181190014, -0.010554265230894089, 0.026376549154520035, -0.056325871497392654, 0.0082939388230443, 0.014528064988553524, -0.0351991131901741, 0.0034018822479993105, 0.011420116759836674, 0.024571934714913368, -0.026741119101643562, -0.025592727586627007, 0.011775570921599865, -0.03959216549992561, -0.04958135262131691, 0.05785706266760826, -0.01060895062983036, -0.03476162999868393, -0.037550583481788635, 0.02355114184319973, 0.017435500398278236, 0.03802452236413956, -0.06613277643918991, 0.008303053677082062, 0.040394216775894165, -0.04772204905748367, -0.0015596706653013825, 0.06296102702617645, 0.034980371594429016, 0.012395338155329227, 0.009064090438187122, -0.05585193261504173, 0.008029626682400703, -0.07032531499862671, -0.0034292249474674463, -0.016478508710861206, 0.0007274285890161991, 0.02415267936885357, -0.03696727380156517, 0.015977226197719574, 0.009651958011090755, 0.005769300740212202, -0.012276852503418922, 0.021710069850087166, 0.0038712644018232822, 0.005992598831653595, 0.024663075804710388, 0.04130563884973526, -0.05355514958500862, 0.04527943953871727, 0.009497015736997128, -0.0430920273065567, 0.01915808767080307, -0.03430591896176338, 0.05639878660440445, 0.04903449863195419, 0.02747025527060032, -0.05902368202805519, 0.026376549154520035, -0.03153519704937935, 0.051294825971126556, 0.0031216200441122055, -0.03448820486664772, -0.029803495854139328, 0.000661350495647639, -0.052133332937955856, -0.020488765090703964, -0.01437312364578247, 0.012386223301291466, 0.06762750446796417, 0.003964685369282961, -0.061466291546821594, 0.01595899648964405, -0.006220454350113869, 0.04691999778151512, -0.08020512759685516, -0.010709207504987717, -0.019085174426436424, -0.003650244791060686, -0.09136093407869339, -0.004450017586350441, 0.036292821168899536, 0.0006049562944099307, -0.026668203994631767, -0.03552722558379173, -0.02850927785038948, -0.005122191272675991, -0.0024426106829196215, 0.005231561604887247, 0.02542867138981819, 0.03463403135538101, -0.026795804500579834, -0.009228146634995937, 0.0036775872576981783, 0.022256921976804733, -0.06434638798236847, 0.08275710791349411, -0.06398181617259979, -0.00987981352955103, 0.015384801663458347, -0.008808892220258713, 0.014637435786426067, 0.036930814385414124, -0.025501584634184837, -0.007300489582121372, 0.030350349843502045, -0.0005733413272537291, -0.029548298567533493, -0.00033921984140761197, 0.0076194871217012405, 0.009360303170979023, -0.029639439657330513, 0.02059813402593136, 0.10652699321508408, 0.0020313316490501165, 0.01111934706568718, -0.004217604640871286, 0.002188551938161254, -0.0764136090874672, -0.02537398599088192, 0.05326349660754204, -0.003798350691795349, -0.04743039608001709, -0.017280559986829758, 0.022092867642641068, -0.011301631107926369, 0.03538139909505844, -0.014209067448973656, -0.010736550204455853, 0.027834825217723846, 0.016569649800658226, 0.025246387347579002, 0.001762462081387639, -0.011511258780956268, -0.046992912888526917, -0.02092624641954899, -0.003613787703216076, -0.008225582540035248, 0.03589179366827011, 0.02644946426153183, -0.09077762067317963, -0.00914611853659153, 0.0061201979406178, -0.07025239616632462, 0.0364568755030632, -0.00999829825013876, -0.02597552351653576, -0.03319398686289787, -0.10142302513122559, 0.03733184188604355, 0.014874405227601528, 0.07397100329399109, -0.004500145558267832, -0.012459137476980686, 0.013589300215244293, -0.07612195611000061, -0.020579906180500984, -0.03589179366827011, -0.026485919952392578, 0.05822163075208664, 0.01186671294271946, 0.03618345037102699, 0.040066108107566833, 0.026413006708025932, -0.0481230765581131, -0.02929309941828251, -0.009241818450391293, 0.018547436222434044, 0.041050441563129425, -0.048487644642591476, -0.03587356582283974, 0.01029906701296568, 0.018182866275310516, -0.01025349646806717, -0.04589920490980148, 0.07772605866193771, 0.012896619737148285, -0.0630703940987587, -0.06620568782091141, 0.023678740486502647, -0.029730582609772682, -0.012076339684426785, -0.032829415053129196, -0.04305557161569595, -0.027142144739627838, 0.032446619123220444, -0.045862749218940735, 0.0381338931620121, 0.057638321071863174, 0.06595049053430557, 0.049654264003038406, -0.03970153629779816, 0.004648251459002495, 0.03962862491607666, -0.017836526036262512, 0.001031615654937923, 0.0546853132545948, 0.007036176975816488, -0.010572494007647038, 0.008084312081336975, 0.03574596717953682, -0.011903169564902782, -0.07765314728021622, 0.007551130373030901, 0.06667962670326233, -0.009036747738718987, -0.027579626068472862, -0.020452307537198067, 0.0064346385188400745, -0.017818298190832138, 0.002154373563826084, -0.04414927586913109, 0.011666200123727322, 0.059278879314661026, -0.014473379589617252, 0.02542867138981819, -0.008872692473232746, 0.01892111822962761, 0.02345999889075756 ]
9,537
asyncclick.exceptions
format_message
null
def format_message(self) -> str: if not self.possibilities: return self.message possibility_str = ", ".join(sorted(self.possibilities)) suggest = ngettext( "Did you mean {possibility}?", "(Possible options: {possibilities})", len(self.possibilities), ).format(possibility=possibility_str, possibilities=possibility_str) return f"{self.message} {suggest}"
(self) -> str
[ 0.029058460146188736, -0.024358883500099182, 0.042941946536302567, -0.02982976660132408, 0.028125720098614693, -0.07239502668380737, 0.036054015159606934, -0.06306762248277664, 0.07142641395330429, -0.058045171201229095, 0.0035695270635187626, 0.014735509641468525, -0.08997360616922379, -0.019067373126745224, -0.017112204805016518, 0.027246791869401932, 0.030457571148872375, -0.08236818015575409, 0.007578518241643906, 0.016062870621681213, 0.058619167655706406, 0.04380293935537338, -0.011067327111959457, -0.021829720586538315, 0.027049480006098747, 0.059623654931783676, 0.014529230073094368, -0.028520341962575912, -0.0022657078225165606, -0.004278051201254129, -0.002679387340322137, -0.010547145269811153, -0.01847544126212597, 0.03354278951883316, -0.032036054879426956, 0.029668329283595085, 0.010053868405520916, -0.0017354359151795506, -0.04208095744252205, -0.03906748443841934, -0.026331987231969833, -0.03481633961200714, 0.008044888265430927, -0.005542632192373276, -0.025542745366692543, -0.029327521100640297, -0.0037421737797558308, 0.11171364039182663, -0.048359017819166183, 0.008112153969705105, 0.030941879376769066, 0.01399111095815897, -0.024556193500757217, -0.023928387090563774, -0.08272692561149597, -0.001920414506457746, 0.015426096506416798, -0.000992718618363142, 0.041973333805799484, -0.01895974949002266, -0.021793846040964127, 0.03302260860800743, -0.004937247838824987, 0.01096867211163044, -0.03612576425075531, -0.017757948487997055, 0.029883578419685364, 0.005520210601389408, 0.03906748443841934, 0.036323074251413345, 0.049937501549720764, 0.0009579650941304862, -0.05330972000956535, 0.017237765714526176, -0.005511241964995861, 0.010188398882746696, -0.03004501387476921, -0.02202703058719635, 0.044915053993463516, -0.007004524115473032, -0.00028559580096043646, -0.02649342454969883, 0.026331987231969833, -0.04487917944788933, 0.03967735543847084, -0.07799147069454193, -0.010547145269811153, -0.005713036749511957, 0.043372444808483124, -0.033704228699207306, -0.029847703874111176, -0.043336570262908936, 0.010215304791927338, 0.054457709193229675, -0.06945330649614334, 0.024269195273518562, -0.0068924156948924065, -0.06148913875222206, -0.0009540413157083094, 0.014215326867997646, 0.000623321917373687, 0.05754292756319046, 0.01456510554999113, -0.05216173082590103, 0.005919316317886114, -0.04828726872801781, -0.020089799538254738, 0.00288566667586565, 0.015103224664926529, 0.03171318396925926, -0.022260215133428574, -0.054637081921100616, 0.031282689422369, -0.016870051622390747, 0.029058460146188736, 0.01497766375541687, -0.051480114459991455, -0.018852125853300095, 0.03151587396860123, -0.0051300739869475365, -0.010726517997682095, -0.03327373042702675, -0.027784911915659904, -0.06661920994520187, -0.030511384829878807, 0.04190158471465111, -0.03974910452961922, -0.038385868072509766, 0.042583201080560684, -0.0671573281288147, -0.012574062682688236, -0.01224222220480442, 0.009264626540243626, -0.030314072966575623, 0.01947993040084839, -0.0032892562448978424, -0.0038923986721783876, -0.00991933885961771, 0.08588389307260513, 0.14457480609416962, 0.04606304317712784, 0.01026911661028862, 0.00014461965474765748, -0.023067396134138107, 0.03043963387608528, -0.03406297415494919, 0.03652038797736168, 0.039390359073877335, 0.028053971007466316, -0.03924686089158058, 0.010977640748023987, 0.017183953896164894, -0.011596478521823883, -0.026547236368060112, 0.01904943585395813, 0.02439475804567337, -0.004031413234770298, -0.07418876141309738, 0.01469066645950079, -0.013973173685371876, 0.035497959703207016, -0.0595519058406353, -0.006493310444056988, 0.09040410071611404, 0.020735543221235275, 0.039175111800432205, 0.012260159477591515, 0.014574074186384678, 0.039175111800432205, 0.017004581168293953, -0.025363372638821602, -0.00556056946516037, -0.007726501207798719, 0.005300478544086218, 0.033471040427684784, 0.07469100505113602, -0.03296879678964615, 0.012690654955804348, 0.007627846207469702, -0.0777762234210968, -0.040789470076560974, -0.012959714978933334, -0.012690654955804348, -0.02150684781372547, -0.0027488945052027702, -0.014018016867339611, 0.03556970879435539, 0.009201846085488796, -0.011910381726920605, -0.023659327998757362, -0.03849349170923233, -0.015318472869694233, 0.006955196615308523, 0.03582083061337471, -0.05754292756319046, 0.0029731111135333776, 0.005964159499853849, -0.05632318928837776, 0.037417251616716385, -0.10417996346950531, -0.04828726872801781, 0.03752487525343895, -0.02001805044710636, 0.03931860998272896, 0.02701360546052456, 0.0300808884203434, 0.0032601081766188145, -0.009470906108617783, -0.053453218191862106, -0.057471178472042084, -0.024717628955841064, 0.0038542819675058126, 0.006654746364802122, -0.0041412790305912495, 0.020197423174977303, -0.02588355541229248, 0.11673609167337418, 0.028036033734679222, -0.10611719638109207, 0.023928387090563774, 0.016170496121048927, -0.08071794360876083, 0.04595541954040527, -0.0008183902828022838, 0.04035897180438042, 0.044376932084560394, -0.009766871109604836, 0.029453082010149956, -0.03277148678898811, 0.02913021109998226, -0.022583087906241417, -0.041793957352638245, 0.013461959548294544, 0.042762573808431625, -0.08452066034078598, 0.016278119757771492, -0.033130232244729996, -0.020645856857299805, 0.016914894804358482, 0.04426930844783783, -0.003950695041567087, -0.00928256381303072, 0.010726517997682095, 0.047713275998830795, 0.04764152690768242, -0.08918436616659164, 0.009417093358933926, -0.009542655199766159, 0.010089742951095104, 0.02776697464287281, -0.06152501329779625, 0.07404526323080063, -0.0376683734357357, -0.031766995787620544, -0.003914820495992899, -0.03974910452961922, -0.028358904644846916, 0.025937367230653763, -0.005524694919586182, 0.0047847805544734, -0.02911227196455002, 0.025560682639479637, -0.07228740304708481, 0.027928410097956657, -0.01526466105133295, 0.021883532404899597, -0.054457709193229675, 0.023766951635479927, 0.029668329283595085, 0.004033655393868685, 0.10059250146150589, 0.022278154268860817, 0.012762404046952724, 0.010053868405520916, 0.01935436949133873, 0.03770425170660019, 0.030385822057724, 0.043731190264225006, -0.03537239879369736, -0.009488843381404877, 0.002044854685664177, 0.002908088266849518, 0.009883464314043522, 0.05470883101224899, 0.027569662779569626, 0.06005415320396423, 0.028448592871427536, 0.0017018034122884274, 0.0191391222178936, 0.04724690318107605, 0.013973173685371876, -0.010950734838843346, 0.06371336430311203, 0.03472665324807167, 0.021578596904873848, -0.011686164885759354, 0.10023375600576401, 0.005650256294757128, 0.0020908189471811056, -0.04685228317975998, -0.01883418671786785, 0.02767728641629219, 0.03485221415758133, -0.032036054879426956, -0.029022585600614548, -0.048681892454624176, 0.013964205048978329, -0.06676270812749863, 0.039175111800432205, -0.03748900070786476, -0.06066402047872543, 0.02986564114689827, 0.08509465306997299, 0.025740057229995728, 0.056466687470674515, 0.07705873250961304, -0.02093285508453846, 0.011560603976249695, 0.00808076374232769, -0.014520261436700821, 0.010107680223882198, 0.02995532751083374, 0.015228785574436188, 0.004672672133892775, -0.04150696098804474, -0.04638591408729553, -0.054852329194545746, -0.008457447402179241, 0.05036799982190132, -0.007793765980750322, -0.034403782337903976, -0.046744659543037415, -0.031946368515491486, -0.05137248709797859, -0.030511384829878807, 0.04997337609529495, 0.04864601418375969, 0.0056906151585280895, 0.017282608896493912, 0.01026911661028862, 0.011112170293927193, -0.012968683615326881, -0.024197446182370186, 0.028269218280911446, 0.046134792268276215, 0.020430609583854675, -0.04380293935537338, 0.03187461942434311, -0.00008926619921112433, -0.02364138886332512, -0.016977675259113312, -0.015282598324120045, 0.04243970289826393, 0.0023811794817447662, 0.01707633025944233, 0.027336478233337402, -0.005457430146634579, 0.00682066660374403, 0.009748933836817741, 0.07827847450971603, 0.009802746586501598, -0.03709438070654869, 0.038206495344638824, 0.023157082498073578, -0.04068184643983841, 0.04369531571865082, 0.008560586720705032, 0.0008475384674966335, 0.03078044392168522, 0.011632353067398071, -0.004632313270121813, -0.021399224177002907, 0.002493287669494748, -0.012977652251720428, -0.005381196271628141, 0.051336612552404404, 0.012475406751036644, 0.038206495344638824, -0.012439532205462456, -0.07942645996809006, 0.014260170981287956, 0.006188375875353813, -0.02172209694981575, 0.044735681265592575, -0.04147108644247055, 0.035228900611400604, 0.008461931720376015, 0.023856637999415398, -0.006591965444386005, 0.0401078499853611, -0.03974910452961922, -0.0665474608540535, 0.04093296825885773, 0.005717521067708731, -0.03350691497325897, -0.005730974022299051, -0.030224386602640152, 0.007766860071569681, -0.0328073613345623, -0.011273606680333614, 0.024861127138137817, -0.04182983562350273, -0.05582094565033913, -0.032305117696523666, -0.049722254276275635, 0.0288611501455307, -0.008950723335146904, 0.08337266743183136, -0.00745744165033102, 0.05513932555913925, -0.030224386602640152, -0.01221531629562378, -0.002540373243391514, 0.01026911661028862, -0.023318517953157425, 0.022349903360009193, -0.1020992323756218, -0.01427810825407505, -0.05693306028842926, -0.009444000199437141, -0.005327384453266859, -0.0337221659719944, 0.025829743593931198, 0.046529412269592285, 0.015228785574436188, 0.025363372638821602, -0.028125720098614693, 0.02238577790558338, 0.04229620471596718, -0.02697773091495037, -0.04269082471728325, 0.015282598324120045, 0.026941856369376183, -0.027874598279595375, 0.011013515293598175, -0.08739063143730164, -0.02299564704298973, 0.00040835433173924685, -0.033560726791620255, -0.032645925879478455, 0.036771509796381, -0.0013688418548554182, 0.034708715975284576, 0.06073576956987381, -0.007278067991137505, -0.019820740446448326, -0.026547236368060112, -0.056251440197229385, -0.030421696603298187, -0.0008480990072712302, 0.03928273543715477, 0.040753595530986786, -0.03095981664955616, 0.0024820768740028143, 0.07497800141572952, -0.003789259120821953, -0.022798335179686546, -0.008044888265430927, -0.03834999352693558, -0.021255725994706154, 0.028843212872743607, 0.046744659543037415, -0.03895986080169678, 0.10647594183683395, -0.004605407360941172, -0.0358567051589489, 0.020968729630112648, 0.009058346971869469, -0.06414385885000229, -0.009614404290914536, 0.005183885805308819, -0.03156968578696251, -0.01996423862874508, 0.0017959743272513151, -0.030619008466601372, 0.004320652224123478, 0.018852125853300095, 0.03424234688282013, 0.024251258000731468, 0.025291623547673225, 0.03237686678767204, -0.03831411898136139, -0.027354415506124496, 0.023282643407583237, 0.006345327477902174, 0.003939484246075153, 0.004811686463654041, -0.0018666025716811419, -0.031157126650214195, -0.043946437537670135, -0.004139036871492863, -0.0019103247905150056, 0.03788362443447113, -0.02443063259124756, -0.007515737786889076, -0.0116951335221529, -0.03806299716234207, -0.05478058010339737, -0.01570412516593933, 0.003677150933071971, 0.01042158342897892, -0.002257860265672207, -0.021219851449131966, -0.027085356414318085, 0.03487015143036842, -0.04825139418244362, 0.03856524080038071, 0.036986757069826126, 0.0373813770711422, -0.009668216109275818, 0.010923828929662704, -0.02916608564555645, 0.03241274133324623, -0.0070852418430149555, 0.031013628467917442, -0.015058381482958794, -0.0004705744213424623, 0.0018206381937488914, 0.056251440197229385, 0.016717582941055298, -0.026044990867376328, 0.014125640504062176, -0.05015275254845619, -0.010636831633746624, 0.0033610055688768625, -0.0056054131127893925, 0.07210803031921387, 0.001066710101440549, -0.04025134816765785, -0.0027175042778253555, 0.011883475817739964, -0.0007303853053599596, 0.038995735347270966, 0.0440540611743927, -0.035103339701890945, 0.026744546368718147, -0.040574222803115845, 0.021973218768835068, -0.03657419979572296, 0.019282620400190353, 0.01616152748465538, 0.008287042379379272, -0.024323007091879845, -0.0883951187133789, 0.021704159677028656, 0.02728266641497612, 0.014905913732945919, -0.0334172286093235, 0.00450450973585248, -0.0358567051589489, -0.03834999352693558, 0.013811737298965454, -0.018125662580132484, -0.02443063259124756, 0.001178257865831256, -0.026170551776885986, -0.015157036483287811, 0.033650416880846024, 0.05969540774822235, 0.01832297444343567, -0.06048464775085449, -0.008287042379379272, 0.027551725506782532, 0.009112159721553326, 0.002340820385143161, 0.024161571636795998, -0.030385822057724, 0.05729180574417114, -0.03108537755906582, 0.0025358889251947403, 0.03630513697862625, -0.028538279235363007, 0.0230853334069252, 0.01589246653020382, -0.06034114956855774, -0.011784819886088371, 0.019031498581171036, 0.0005196217680349946, 0.026116739958524704, 0.09858351945877075, -0.0686640664935112, -0.009488843381404877, 0.016870051622390747, -0.020520295947790146, 0.0047713275998830795, 0.059623654931783676, 0.007394660729914904, -0.03212574124336243, -0.0048385923728346825, 0.01379380002617836, -0.054098960012197495, -0.024627942591905594, 0.03630513697862625, 0.009246689267456532, 0.045560795813798904, 0.056251440197229385, 0.03108537755906582, -0.0115426667034626, -0.0054215556010603905, 0.024681754410266876, -0.03078044392168522, 0.03153381124138832, -0.02561449445784092, 0.06087926775217056, 0.08997360616922379, 0.01373101957142353, 0.006538153626024723, -0.03108537755906582, -0.059049662202596664, 0.03709438070654869, -0.008627851493656635, 0.025955304503440857, -0.06920218467712402, -0.02943514473736286, -0.05266397446393967, -0.001843059784732759, 0.022134654223918915, -0.004632313270121813, -0.0035448630806058645, 0.025076376274228096, -0.026116739958524704, 0.0308342557400465, -0.056646060198545456, 0.012583031319081783, 0.011991099454462528, 0.01350680273026228, -0.05768642574548721, -0.025668306276202202, -0.07088829576969147, -0.0525563508272171, 0.024448569864034653, 0.05097786709666252, -0.005233213771134615, -0.025829743593931198, -0.05492407828569412, 0.019892489537596703, 0.010574051178991795, 0.024950813502073288, -0.05829629674553871, -0.0168610829859972, -0.015587531961500645, -0.023282643407583237, -0.032036054879426956, 0.004717515781521797, -0.028879087418317795, 0.08789287507534027, -0.06848469376564026, -0.03162349760532379, -0.0328073613345623, -0.01449335552752018, -0.012439532205462456, 0.028663840144872665, -0.00937225017696619, 0.02473556622862816, 0.030583133921027184, -0.011049389839172363, -0.04247557744383812, 0.008053857833147049, -0.011775851249694824, 0.006713042501360178, 0.01992836408317089, -0.008753413334488869, 0.03212574124336243, -0.023139145225286484, 0.010852079838514328, 0.011219794861972332, -0.01392833050340414, -0.042188581079244614, 0.047318655997514725, -0.004002264700829983, 0.004526931326836348, -6.525050935124455e-7, 0.027390290051698685, 0.026654860004782677, -0.012896934524178505, 0.05948015674948692, 0.01753373257815838, 0.023175019770860672, -0.009273595176637173, -0.0223319660872221, 0.07720223069190979, -0.019192934036254883, -0.026260238140821457, -0.030206449329853058, 0.016260182484984398, 0.02618848904967308, -0.014466449618339539, 0.012816215865314007, 0.002403601072728634, -0.014322951436042786, -0.054493583738803864, -0.06249362975358963, -0.04685228317975998, -0.011847601272165775, 0.06704970449209213, -0.001489918795414269, -0.0319104939699173, -0.013524740003049374, -0.008255652152001858, -0.054242461919784546, 0.07239502668380737, 0.024645879864692688, 0.0001583529228810221, 0.02014361135661602, -0.07042192667722702, 0.007062820252031088, -0.018995624035596848, -0.02105841599404812, -0.027354415506124496, -0.024986688047647476, 0.029148148372769356, 0.05431421101093292, -0.006919321604073048, 0.005358774680644274, -0.018493378534913063, -0.03363247960805893, 0.06783895194530487, 0.021829720586538315, 0.02986564114689827, -0.05930078402161598, -0.015686187893152237, 0.026475487276911736, -0.028789401054382324, -0.07286140322685242, 0.04150696098804474, 0.04968637973070145, -0.006004518363624811, -0.086888387799263, 0.0037915012799203396, -0.031336501240730286, -0.00788345281034708, 0.010367771610617638, -0.06694208085536957, 0.01449335552752018, 0.058619167655706406, 0.02825128100812435, 0.037202004343271255, 0.06274475157260895, 0.022834209725260735, 0.002556068357080221, -0.017327452078461647, 0.024143634364008904, 0.026780420914292336, -0.000646864646114409, 0.014385731890797615, 0.045130301266908646, -0.0115426667034626, -0.0003394077648408711, -0.04914826154708862, 0.013838643208146095, 0.022349903360009193, -0.020609982311725616, 0.012421594932675362, -0.0010067322291433811, 0.04086121916770935, -0.031946368515491486, -0.01116598304361105, -0.014071828685700893, -0.01353370863944292, 0.017856603488326073, -0.005197338759899139, -0.009336375631392002, 0.09370456635951996, 0.024681754410266876, -0.053489092737436295, 0.016278119757771492, -0.045776043087244034, 0.02825128100812435 ]
9,539
asyncclick.core
Option
Options are usually optional values on the command line and have some extra features that arguments don't have. All other parameters are passed onwards to the parameter constructor. :param show_default: Show the default value for this option in its help text. Values are not shown by default, unless :attr:`Context.show_default` is ``True``. If this value is a string, it shows that string in parentheses instead of the actual value. This is particularly useful for dynamic options. For single option boolean flags, the default remains hidden if its value is ``False``. :param show_envvar: Controls if an environment variable should be shown on the help page. Normally, environment variables are not shown. :param prompt: If set to ``True`` or a non empty string then the user will be prompted for input. If set to ``True`` the prompt will be the option name capitalized. :param confirmation_prompt: Prompt a second time to confirm the value if it was prompted for. Can be set to a string instead of ``True`` to customize the message. :param prompt_required: If set to ``False``, the user will be prompted for input only when the option was specified as a flag without a value. :param hide_input: If this is ``True`` then the input on the prompt will be hidden from the user. This is useful for password input. :param is_flag: forces this option to act as a flag. The default is auto detection. :param flag_value: which value should be used for this flag if it's enabled. This is set to a boolean automatically if the option string contains a slash to mark two options. :param multiple: if this is set to `True` then the argument is accepted multiple times and recorded. This is similar to ``nargs`` in how it works but supports arbitrary number of arguments. :param count: this flag makes an option increment an integer. :param allow_from_autoenv: if this is enabled then the value of this parameter will be pulled from an environment variable in case a prefix is defined on the context. :param help: the help string. :param hidden: hide this option from help outputs. :param attrs: Other command arguments described in :class:`Parameter`. .. versionchanged:: 8.1.0 Help text indentation is cleaned here instead of only in the ``@option`` decorator. .. versionchanged:: 8.1.0 The ``show_default`` parameter overrides ``Context.show_default``. .. versionchanged:: 8.1.0 The default of a single option boolean flag is not shown if the default value is ``False``. .. versionchanged:: 8.0.1 ``type`` is detected from ``flag_value`` if given.
class Option(Parameter): """Options are usually optional values on the command line and have some extra features that arguments don't have. All other parameters are passed onwards to the parameter constructor. :param show_default: Show the default value for this option in its help text. Values are not shown by default, unless :attr:`Context.show_default` is ``True``. If this value is a string, it shows that string in parentheses instead of the actual value. This is particularly useful for dynamic options. For single option boolean flags, the default remains hidden if its value is ``False``. :param show_envvar: Controls if an environment variable should be shown on the help page. Normally, environment variables are not shown. :param prompt: If set to ``True`` or a non empty string then the user will be prompted for input. If set to ``True`` the prompt will be the option name capitalized. :param confirmation_prompt: Prompt a second time to confirm the value if it was prompted for. Can be set to a string instead of ``True`` to customize the message. :param prompt_required: If set to ``False``, the user will be prompted for input only when the option was specified as a flag without a value. :param hide_input: If this is ``True`` then the input on the prompt will be hidden from the user. This is useful for password input. :param is_flag: forces this option to act as a flag. The default is auto detection. :param flag_value: which value should be used for this flag if it's enabled. This is set to a boolean automatically if the option string contains a slash to mark two options. :param multiple: if this is set to `True` then the argument is accepted multiple times and recorded. This is similar to ``nargs`` in how it works but supports arbitrary number of arguments. :param count: this flag makes an option increment an integer. :param allow_from_autoenv: if this is enabled then the value of this parameter will be pulled from an environment variable in case a prefix is defined on the context. :param help: the help string. :param hidden: hide this option from help outputs. :param attrs: Other command arguments described in :class:`Parameter`. .. versionchanged:: 8.1.0 Help text indentation is cleaned here instead of only in the ``@option`` decorator. .. versionchanged:: 8.1.0 The ``show_default`` parameter overrides ``Context.show_default``. .. versionchanged:: 8.1.0 The default of a single option boolean flag is not shown if the default value is ``False``. .. versionchanged:: 8.0.1 ``type`` is detected from ``flag_value`` if given. """ param_type_name = "option" def __init__( self, param_decls: t.Optional[t.Sequence[str]] = None, show_default: t.Union[bool, str, None] = None, prompt: t.Union[bool, str] = False, confirmation_prompt: t.Union[bool, str] = False, prompt_required: bool = True, hide_input: bool = False, is_flag: t.Optional[bool] = None, flag_value: t.Optional[t.Any] = None, multiple: bool = False, count: bool = False, allow_from_autoenv: bool = True, type: t.Optional[t.Union[types.ParamType, t.Any]] = None, help: t.Optional[str] = None, hidden: bool = False, show_choices: bool = True, show_envvar: bool = False, **attrs: t.Any, ) -> None: if help: help = inspect.cleandoc(help) default_is_missing = "default" not in attrs super().__init__(param_decls, type=type, multiple=multiple, **attrs) if prompt is True: if self.name is None: raise TypeError("'name' is required with 'prompt=True'.") prompt_text: t.Optional[str] = self.name.replace("_", " ").capitalize() elif prompt is False: prompt_text = None else: prompt_text = prompt self.prompt = prompt_text self.confirmation_prompt = confirmation_prompt self.prompt_required = prompt_required self.hide_input = hide_input self.hidden = hidden # If prompt is enabled but not required, then the option can be # used as a flag to indicate using prompt or flag_value. self._flag_needs_value = self.prompt is not None and not self.prompt_required if is_flag is None: if flag_value is not None: # Implicitly a flag because flag_value was set. is_flag = True elif self._flag_needs_value: # Not a flag, but when used as a flag it shows a prompt. is_flag = False else: # Implicitly a flag because flag options were given. is_flag = bool(self.secondary_opts) elif is_flag is False and not self._flag_needs_value: # Not a flag, and prompt is not enabled, can be used as a # flag if flag_value is set. self._flag_needs_value = flag_value is not None self.default: t.Union[t.Any, t.Callable[[], t.Any]] if is_flag and default_is_missing and not self.required: if multiple: self.default = () else: self.default = False if flag_value is None: flag_value = not self.default self.type: types.ParamType if is_flag and type is None: # Re-guess the type from the flag value instead of the # default. self.type = types.convert_type(None, flag_value) self.is_flag: bool = is_flag self.is_bool_flag: bool = is_flag and isinstance(self.type, types.BoolParamType) self.flag_value: t.Any = flag_value # Counting self.count = count if count: if type is None: self.type = types.IntRange(min=0) if default_is_missing: self.default = 0 self.allow_from_autoenv = allow_from_autoenv self.help = help self.show_default = show_default self.show_choices = show_choices self.show_envvar = show_envvar if __debug__: if self.nargs == -1: raise TypeError("nargs=-1 is not supported for options.") if self.prompt and self.is_flag and not self.is_bool_flag: raise TypeError("'prompt' is not valid for non-boolean flag.") if not self.is_bool_flag and self.secondary_opts: raise TypeError("Secondary flag is not valid for non-boolean flag.") if self.is_bool_flag and self.hide_input and self.prompt is not None: raise TypeError( "'prompt' with 'hide_input' is not valid for boolean flag." ) if self.count: if self.multiple: raise TypeError("'count' is not valid with 'multiple'.") if self.is_flag: raise TypeError("'count' is not valid with 'is_flag'.") async def to_info_dict(self) -> t.Dict[str, t.Any]: info_dict = await super().to_info_dict() info_dict.update( help=self.help, prompt=self.prompt, is_flag=self.is_flag, flag_value=self.flag_value, count=self.count, hidden=self.hidden, ) return info_dict def _parse_decls( self, decls: t.Sequence[str], expose_value: bool ) -> t.Tuple[t.Optional[str], t.List[str], t.List[str]]: opts = [] secondary_opts = [] name = None possible_names = [] for decl in decls: if decl.isidentifier(): if name is not None:
(param_decls: Optional[Sequence[str]] = None, show_default: Union[bool, str, NoneType] = None, prompt: Union[bool, str] = False, confirmation_prompt: Union[bool, str] = False, prompt_required: bool = True, hide_input: bool = False, is_flag: Optional[bool] = None, flag_value: Optional[Any] = None, multiple: bool = False, count: bool = False, allow_from_autoenv: bool = True, type: Union[asyncclick.types.ParamType, Any, NoneType] = None, help: Optional[str] = None, hidden: bool = False, show_choices: bool = True, show_envvar: bool = False, **attrs: Any) -> None
[ 0.05904301255941391, -0.01715691201388836, 0.030952977016568184, -0.04003971070051193, 0.07331623136997223, -0.03338025510311127, -0.004854555241763592, 0.004678214900195599, -0.020092464983463287, -0.08995449542999268, -0.02514410763978958, 0.011358414776623249, -0.052528779953718185, 0.017105046659708023, -0.026824530214071274, 0.038006603717803955, 0.005176117643713951, 0.018536517396569252, 0.009133410640060902, 0.022011466324329376, 0.05393950268626213, -0.0062704673036932945, -0.010984987951815128, 0.0197086650878191, 0.01996798999607563, -0.03089073859155178, 0.030206123366951942, -0.03190729022026062, -0.05049567297101021, -0.0027851455379277468, 0.005269474815577269, -0.047466762363910675, -0.0013770132791250944, 0.042653702199459076, 0.008277639746665955, -0.04203132167458534, -0.021243866533041, 0.15625859797000885, -0.02495739422738552, 0.0012583723291754723, -0.020279178395867348, -0.04072432592511177, -0.007271460257470608, -0.02800705097615719, -0.03945882245898247, 0.0035683056339621544, -0.004647095687687397, 0.04286115989089012, -0.07153207808732986, -0.06410502642393112, 0.09709110856056213, -0.0455581359565258, 0.005694766994565725, -0.010046232491731644, -0.0551842637360096, -0.001005530939437449, 0.04443785175681114, 0.019304119050502777, -0.003731680102646351, 0.031554609537124634, -0.01708430051803589, 0.04076581820845604, -0.01193930208683014, -0.02634737268090248, -0.031554609537124634, -0.017654813826084137, -0.01548686157912016, -0.020787455141544342, -0.0068876598961651325, 0.039728518575429916, -0.020922303199768066, -0.013350027613341808, -0.025621265172958374, 0.009579448960721493, 0.02147207222878933, -0.056180067360401154, -0.03931359946727753, -0.02034141682088375, -0.010984987951815128, -0.03506067767739296, 0.02068372443318367, 0.03686557710170746, -0.03674110025167465, -0.01651378720998764, 0.011057598516345024, 0.04298563674092293, 0.02601543813943863, -0.0030055714305490255, 0.07169804722070694, 0.009849146008491516, -0.03354622423648834, -0.019418220967054367, 0.02939702942967415, 0.06759034842252731, -0.007639701012521982, -0.024376505985856056, 0.022841306403279305, -0.063067726790905, -0.03228071704506874, -0.04485277086496353, -0.03066253289580345, -0.009740229696035385, 0.04298563674092293, -0.007224781904369593, 0.0400189645588398, -0.0215135645121336, -0.035496342927217484, 0.04215579852461815, 0.0636071264743805, -0.03111894428730011, -0.046678416430950165, -0.048960473388433456, -0.05912599340081215, -0.02908584102988243, -0.00038898680941201746, 0.028276747092604637, -0.036160215735435486, -0.02267533726990223, 0.010704916901886463, -0.0002886606380343437, -0.041823860257864, 0.01602625660598278, -0.0179037656635046, -0.01507194247096777, 0.028421970084309578, 0.021119389683008194, -0.02105715312063694, 0.03176207095384598, -0.012686156667768955, 0.052113860845565796, 0.02763362228870392, 0.03238444775342941, -0.01189780980348587, -0.0030159445013850927, 0.0090867318212986, -0.011410280130803585, -0.03688632324337959, 0.06111760810017586, -0.042653702199459076, 0.060370754450559616, 0.02763362228870392, -0.0006045503541827202, -0.03381592035293579, -0.05003926157951355, -0.03084924817085266, -0.06364861875772476, 0.04638797417283058, -0.05431293323636055, -0.046968862414360046, 0.014542920514941216, 0.02259235456585884, -0.00506720133125782, -0.03964553400874138, 0.012686156667768955, 0.021783260628581047, 0.032674893736839294, -0.0254552960395813, -0.07310877740383148, 0.018080107867717743, -0.04010194540023804, -0.010466338135302067, -0.061615511775016785, 0.013038838282227516, 0.012748394161462784, 0.007888652384281158, 0.03790287300944328, 0.01056488137692213, 0.003013351233676076, 0.02935553714632988, 0.045890070497989655, 0.006555724423378706, -0.007473733276128769, 0.02379561960697174, 0.025164853781461716, 0.017219148576259613, 0.13451682031154633, 0.012323101982474327, -0.01655527949333191, 0.03161684796214104, -0.07555679976940155, 0.0091022914275527, -0.012053404934704304, -0.0662626102566719, -0.001466480316594243, 0.05045418441295624, 0.0006635466706939042, 0.04340055584907532, -0.0005896391812711954, 0.016337446868419647, 0.00848509930074215, -0.005347271915525198, -0.03306906670331955, 0.016233716160058975, 0.029521506279706955, -0.08854377269744873, 0.002746246987953782, 0.0072610871866345406, -0.020901557058095932, 0.0642709955573082, -0.034625012427568436, 0.001254482427611947, -0.01488522905856371, -0.007790109142661095, -0.012240118347108364, 0.006467554252594709, 0.035973500460386276, 0.013453757390379906, -0.015569845214486122, -0.021264612674713135, 0.0035475597251206636, -0.046636924147605896, -0.07099268585443497, 0.032114751636981964, 0.029562996700406075, 0.025953199714422226, -0.07812929898500443, 0.043442048132419586, 0.027571385726332664, -0.04966583475470543, 0.05327563360333443, 0.12414384633302689, -0.020787455141544342, 0.06850317120552063, 0.04219729080796242, 0.05788123607635498, 0.004418889991939068, 0.028587937355041504, -0.01009809784591198, 0.026845276355743408, -0.0044966875575482845, -0.008246520534157753, -0.03348398581147194, -0.0006246480043046176, 0.02643035724759102, -0.018412042409181595, -0.0013951660366728902, 0.037404973059892654, 0.006311959121376276, -0.04887748882174492, -0.020113211125135422, 0.023339208215475082, 0.02657557837665081, 0.0020344010554254055, 0.022135943174362183, -0.04159565642476082, 0.016648635268211365, 0.03844226896762848, 0.025289328768849373, 0.05232131853699684, -0.006866913754492998, 0.008526590652763844, 0.004367025103420019, -0.024915901944041252, 0.013650843873620033, -0.03715601935982704, -0.020175449550151825, -0.03472874313592911, 0.01913815177977085, 0.0024104216136038303, 0.003166352631524205, -0.020362162962555885, -0.02968747355043888, -0.02856719121336937, 0.07605469971895218, 0.024417998269200325, 0.004545959178358316, 0.04080731049180031, -0.07551530748605728, -0.018889199942350388, -0.001668753451667726, 0.042135052382946014, 0.006799489259719849, -0.06310921907424927, 0.01138953398913145, -0.022156689316034317, 0.0023728194646537304, 0.010227760300040245, -0.010704916901886463, -0.01189780980348587, -0.016565652564167976, 0.03908539563417435, -0.006171924062073231, 0.009060799144208431, 0.01827719435095787, -0.04597305506467819, 0.013515994884073734, -0.03402337804436684, 0.05340011045336723, -0.006789116654545069, 0.04091104120016098, 0.011949675157666206, 0.08107522130012512, 0.07945703715085983, 0.015559472143650055, 0.06647006422281265, 0.039355091750621796, -0.006394943222403526, -0.004916793201118708, -0.007634514477103949, -0.09692513942718506, 0.06514232605695724, -0.008028687909245491, 0.000129176041809842, 0.02161729335784912, -0.019999109208583832, 0.010611560195684433, 0.05327563360333443, -0.03506067767739296, 0.0721544623374939, 0.029459267854690552, 0.02485366351902485, 0.010538949631154537, -0.007878279313445091, 0.014895601198077202, 0.0007261087303049862, -0.011057598516345024, 0.029044348746538162, -0.07003837078809738, -0.0037550192791968584, 0.0546448677778244, -0.03854599967598915, 0.005240948870778084, 0.03294458985328674, -0.03269563987851143, -0.02968747355043888, -0.01587066240608692, 0.008682185783982277, 0.01189780980348587, 0.023774873465299606, 0.017177658155560493, -0.046263497322797775, 0.011731842532753944, -0.024003079161047935, 0.029977917671203613, -0.009221580810844898, 0.005132032558321953, -0.015175672248005867, 0.013598978519439697, -0.0038613423239439726, -0.03771616145968437, 0.04230101779103279, 0.02690751478075981, -0.0697479248046875, -0.008132417686283588, 0.0009763569105416536, -0.03543410450220108, 0.047798700630664825, 0.0009666322148405015, 0.0976719930768013, 0.013287789188325405, 0.019428594037890434, 0.0339403972029686, 0.005933345295488834, 0.02323547936975956, 0.046097531914711, -0.1038127988576889, -0.01085013896226883, -0.01741623692214489, 0.019770903512835503, -0.044645313173532486, 0.01052857656031847, -0.017333252355456352, 0.007691565901041031, 0.043981440365314484, -0.012177880853414536, -0.05385652184486389, 0.004022123757749796, 0.006467554252594709, 0.028733158484101295, -0.02240564115345478, 0.04103551432490349, -0.045516643673181534, 0.020735589787364006, -0.1000785231590271, 0.03250892460346222, 0.0043410928919911385, -0.01681460253894329, 0.014283595606684685, -0.05381502956151962, -0.012001539580523968, 0.040184929966926575, 0.02466695010662079, -0.003915800713002682, 0.027571385726332664, -0.05207236856222153, -0.04240474849939346, -0.008640693500638008, 0.026181405410170555, 0.036284688860177994, -0.0033997446298599243, -0.0227790679782629, 0.02147207222878933, 0.00976097583770752, 0.016088495030999184, 0.0062963999807834625, -0.019791649654507637, 0.020113211125135422, 0.00919564813375473, -0.03093223087489605, 0.015590591356158257, 0.04775720834732056, -0.014574038796126842, 0.09385474026203156, 0.020860066637396812, 0.009231953881680965, -0.010704916901886463, 0.043110109865665436, 0.014242103323340416, -0.03535111993551254, 0.035226646810770035, -0.029977917671203613, -0.021596547216176987, -0.056429021060466766, 0.01883733458817005, -0.027446908876299858, -0.003651289502158761, -0.02087043970823288, 0.08373070508241653, 0.024459490552544594, -0.013630097731947899, 0.016420429572463036, -0.02109864540398121, 0.019086286425590515, 0.0873819962143898, 0.033836666494607925, 0.03690706938505173, -0.02991567924618721, 0.02717721275985241, -0.01846390776336193, -0.03964553400874138, -0.027260195463895798, 0.03501918539404869, 0.010860512033104897, -0.05306817218661308, -0.028069287538528442, -0.014190238900482655, -0.016119614243507385, -0.0856393352150917, 0.0194389671087265, 0.027861827984452248, 0.006135618779808283, -0.019387101754546165, 0.0024570999667048454, 0.05306817218661308, 0.009786908514797688, -0.014574038796126842, -0.032342955470085144, 0.0649348646402359, 0.019397474825382233, -0.034479789435863495, 0.03769541531801224, 0.010066978633403778, 0.040786564350128174, -0.03848376125097275, -0.08460203558206558, -0.07667707651853561, -0.060121800750494, 0.039168380200862885, -0.053690552711486816, -0.018889199942350388, 0.031201928853988647, 0.01011365745216608, -0.016524160280823708, -0.01430434174835682, -0.022281164303421974, 0.0558481328189373, 0.05941643938422203, 0.02597394585609436, -0.08140715956687927, 0.01701168902218342, -0.06497635692358017, -0.012592799961566925, -0.01926262676715851, 0.016192223876714706, -0.022343402728438377, 0.014045016840100288, 0.006612775847315788, 0.000822058820631355, -0.0685446634888649, -0.02860868349671364, 0.03589051589369774, -0.017322879284620285, 0.029977917671203613, -0.001780262915417552, -0.0026632631197571754, -0.0315338633954525, 0.06617962568998337, -0.007924958132207394, -0.009558702819049358, -0.0008116858080029488, -0.05115954577922821, -0.012136388570070267, 0.033089812844991684, -0.04410591721534729, 0.05937494710087776, 0.027260195463895798, 0.0327371284365654, -0.020113211125135422, 0.05161595717072487, 0.004569298587739468, -0.01548686157912016, -0.01525865588337183, 0.009356429800391197, -0.011877063661813736, 0.0631922036409378, -0.06103462353348732, -0.07198849320411682, 0.02053850330412388, -0.06476889550685883, 0.002940740203484893, -0.0303305983543396, 0.0051709311082959175, 0.08812884986400604, -0.015331266447901726, 0.018370550125837326, -0.004828623030334711, -0.0033530662767589092, -0.014283595606684685, 0.019916124641895294, -0.03296533599495888, -0.051781922578811646, 0.0005413399776443839, -0.01071528997272253, -0.05422994866967201, 0.012561680749058723, 0.02680378407239914, -0.021326851099729538, -0.029666727408766747, 0.047508254647254944, -0.009231953881680965, 0.017592577263712883, -0.00934605672955513, 0.018225328996777534, 0.04003971070051193, -0.0015883628511801362, -0.02075633592903614, -0.013256670907139778, 0.08862675726413727, -0.017883019521832466, 0.012551307678222656, 0.05671946331858635, 0.07086820900440216, -0.04323458671569824, 0.02435576170682907, 0.032073259353637695, -0.0049323528073728085, -0.010217387229204178, 0.015528353862464428, 0.014449563808739185, -0.027571385726332664, -0.06804675608873367, 0.026700055226683617, -0.009693550877273083, 0.02360890619456768, -0.02833898551762104, 0.009397921152412891, 0.06393905729055405, 0.040558356791734695, 0.048628538846969604, 0.008925951085984707, -0.015289775095880032, -0.0005251321708783507, -0.08945659548044205, -0.06136655807495117, 0.05659498646855354, 0.007032881490886211, 0.004003970883786678, -0.003853562753647566, 0.012592799961566925, -0.001111205667257309, 0.023297715932130814, -0.07198849320411682, -0.012935108505189419, -0.010103284381330013, -0.01497858576476574, 0.03672035411000252, 0.03116043657064438, 0.05319264903664589, -0.006472740322351456, 0.017478473484516144, -0.039355091750621796, 0.014636277221143246, -0.04072432592511177, -0.02259235456585884, -0.003866528859362006, 0.048213619738817215, 0.039209868758916855, -0.003949512727558613, 0.005746631883084774, -0.02360890619456768, -0.03864973038434982, 0.01922113448381424, 0.02499888651072979, -0.04522620141506195, -0.014636277221143246, 0.03983224928379059, 0.008101298473775387, -0.023754127323627472, 0.0807017982006073, -0.014273222535848618, -0.05721736699342728, -0.030392836779356003, -0.01535201258957386, 0.011182074435055256, 0.04286115989089012, 0.010704916901886463, -0.02593245357275009, 0.013018092140555382, -0.04800615832209587, 0.0010651755146682262, 0.006602402776479721, -0.06497635692358017, -0.009615753777325153, -0.020901557058095932, -0.06983090937137604, 0.02350517548620701, 0.00018493081734050065, 0.019656799733638763, 0.0613250657916069, -0.028173018246889114, -0.039209868758916855, 0.045101724565029144, 0.02387860417366028, -0.004312566947191954, -0.05671946331858635, -0.013350027613341808, -0.03987374156713486, -0.009641686454415321, -0.042695190757513046, -0.02342219278216362, 0.031326405704021454, 0.013225551694631577, 0.012769140303134918, 0.015113433822989464, 0.025206346064805984, -0.049458377063274384, -0.02383711189031601, -0.028691668063402176, 0.005492493975907564, 0.03655438870191574, 0.005990396719425917, -0.01587066240608692, -0.006348264869302511, 0.043981440365314484, -0.03284085914492607, 0.045890070497989655, -0.006700946018099785, -0.00345420278608799, 0.05858660116791725, -0.002272979589179158, -0.0016363378381356597, 0.0678807944059372, -0.05460337549448013, -0.03528888523578644, -0.006327518727630377, -0.007432241458445787, -0.024003079161047935, 0.027467655017971992, 0.021596547216176987, -0.005591037217527628, -0.037404973059892654, 0.00853696372359991, 0.049043457955121994, -0.019511578604578972, -0.04501873999834061, -0.010144775733351707, -0.062403857707977295, -0.028256002813577652, 0.07626216113567352, 0.03474948927760124, -0.00022399157751351595, -0.03688632324337959, 0.004369618371129036, 0.009325310587882996, -0.02541380561888218, -0.026513341814279556, -0.01903442107141018, 0.02240564115345478, -0.029480013996362686, -0.0026477035135030746, 0.01707392744719982, -0.01375457365065813, 0.014501428231596947, -0.018640248104929924, -0.020113211125135422, -0.03862898424267769, 0.032633401453495026, -0.005300593562424183, 0.009983994998037815, -0.07489293068647385, -0.04800615832209587, -0.02504037693142891, -0.015735812485218048, 0.01647229492664337, -0.010777527466416359, -0.04954136162996292, -0.031284913420677185, -0.04974881932139397, 0.031886544078588486, -0.016192223876714706, 0.03196952864527702, -0.03184505179524422, -0.008059807121753693, 0.039956726133823395, -0.010839765891432762, 0.04418890178203583, -0.03344249352812767, -0.06265281140804291, 0.06622111797332764, -0.010383354499936104, 0.04871152341365814, 0.0789591372013092, 0.004016937222331762, -0.07792183756828308, -0.010523390024900436, 0.001969569828361273, -0.0036901882849633694, 0.045433659106492996, 0.014387325383722782, 0.012157134711742401, 0.005518426187336445, 0.019096659496426582, 0.043442048132419586, -0.005139812361449003, 0.0052098301239311695, -0.0025128547567874193, -0.08373070508241653, -0.04142968729138374, 0.05244579538702965, -0.03201102092862129, -0.017509592697024345, -0.00024327883147634566, -0.033504731953144073, 0.006815048865973949, 0.023588160052895546, -0.043442048132419586, 0.07236191630363464, 0.020279178395867348, -0.039355091750621796, 0.03358771279454231, 0.01925225369632244, 0.0485040619969368, -0.04294414445757866, 0.00046127353562042117, 0.01715691201388836, 0.05315115675330162, 0.024189792573451996, -0.020766708999872208, 0.03265414759516716, -0.03174132481217384, -0.00303150387480855, -0.06016329303383827, -0.004201057367026806, 0.011265058070421219, 0.026596324518322945, 0.030683279037475586, -0.021741770207881927, 0.05510127916932106, -0.023691890761256218, -0.023442938923835754, -0.0697479248046875, 0.005980024114251137, 0.026866022497415543, -0.004717113450169563, 0.027861827984452248, 0.023546667769551277, -0.049416884779930115, 0.028069287538528442 ]
9,540
asyncclick.core
__init__
null
def __init__( self, param_decls: t.Optional[t.Sequence[str]] = None, show_default: t.Union[bool, str, None] = None, prompt: t.Union[bool, str] = False, confirmation_prompt: t.Union[bool, str] = False, prompt_required: bool = True, hide_input: bool = False, is_flag: t.Optional[bool] = None, flag_value: t.Optional[t.Any] = None, multiple: bool = False, count: bool = False, allow_from_autoenv: bool = True, type: t.Optional[t.Union[types.ParamType, t.Any]] = None, help: t.Optional[str] = None, hidden: bool = False, show_choices: bool = True, show_envvar: bool = False, **attrs: t.Any, ) -> None: if help: help = inspect.cleandoc(help) default_is_missing = "default" not in attrs super().__init__(param_decls, type=type, multiple=multiple, **attrs) if prompt is True: if self.name is None: raise TypeError("'name' is required with 'prompt=True'.") prompt_text: t.Optional[str] = self.name.replace("_", " ").capitalize() elif prompt is False: prompt_text = None else: prompt_text = prompt self.prompt = prompt_text self.confirmation_prompt = confirmation_prompt self.prompt_required = prompt_required self.hide_input = hide_input self.hidden = hidden # If prompt is enabled but not required, then the option can be # used as a flag to indicate using prompt or flag_value. self._flag_needs_value = self.prompt is not None and not self.prompt_required if is_flag is None: if flag_value is not None: # Implicitly a flag because flag_value was set. is_flag = True elif self._flag_needs_value: # Not a flag, but when used as a flag it shows a prompt. is_flag = False else: # Implicitly a flag because flag options were given. is_flag = bool(self.secondary_opts) elif is_flag is False and not self._flag_needs_value: # Not a flag, and prompt is not enabled, can be used as a # flag if flag_value is set. self._flag_needs_value = flag_value is not None self.default: t.Union[t.Any, t.Callable[[], t.Any]] if is_flag and default_is_missing and not self.required: if multiple: self.default = () else: self.default = False if flag_value is None: flag_value = not self.default self.type: types.ParamType if is_flag and type is None: # Re-guess the type from the flag value instead of the # default. self.type = types.convert_type(None, flag_value) self.is_flag: bool = is_flag self.is_bool_flag: bool = is_flag and isinstance(self.type, types.BoolParamType) self.flag_value: t.Any = flag_value # Counting self.count = count if count: if type is None: self.type = types.IntRange(min=0) if default_is_missing: self.default = 0 self.allow_from_autoenv = allow_from_autoenv self.help = help self.show_default = show_default self.show_choices = show_choices self.show_envvar = show_envvar if __debug__: if self.nargs == -1: raise TypeError("nargs=-1 is not supported for options.") if self.prompt and self.is_flag and not self.is_bool_flag: raise TypeError("'prompt' is not valid for non-boolean flag.") if not self.is_bool_flag and self.secondary_opts: raise TypeError("Secondary flag is not valid for non-boolean flag.") if self.is_bool_flag and self.hide_input and self.prompt is not None: raise TypeError( "'prompt' with 'hide_input' is not valid for boolean flag." ) if self.count: if self.multiple: raise TypeError("'count' is not valid with 'multiple'.") if self.is_flag: raise TypeError("'count' is not valid with 'is_flag'.")
(self, param_decls: Optional[Sequence[str]] = None, show_default: Union[bool, str, NoneType] = None, prompt: Union[bool, str] = False, confirmation_prompt: Union[bool, str] = False, prompt_required: bool = True, hide_input: bool = False, is_flag: Optional[bool] = None, flag_value: Optional[Any] = None, multiple: bool = False, count: bool = False, allow_from_autoenv: bool = True, type: Union[asyncclick.types.ParamType, Any, NoneType] = None, help: Optional[str] = None, hidden: bool = False, show_choices: bool = True, show_envvar: bool = False, **attrs: Any) -> NoneType
[ 0.042441703379154205, -0.022105053067207336, 0.0220854040235281, -0.05187319219112396, 0.05796436220407486, -0.013793553225696087, 0.005771874915808439, 0.003192952135577798, -0.03057374432682991, -0.06283729523420334, -0.022026456892490387, 0.03796174377202988, -0.06271940469741821, 0.028412362560629845, -0.02919831871986389, 0.025307830423116684, 0.03137935325503349, 0.033560384064912796, 0.01835210621356964, 0.0075108059681952, 0.058750320225954056, -0.020277703180909157, -0.019442623481154442, 0.03422844782471657, 0.037824202328920364, -0.034248095005750656, 0.023460829630494118, -0.04287397861480713, -0.041616447269916534, 0.015110031701624393, 0.000026230562070850283, -0.03656667098402977, -0.0031143564265221357, 0.0496332123875618, 0.031752679497003555, -0.028785692527890205, -0.02744956500828266, 0.13958604633808136, -0.03173303231596947, -0.011661644093692303, 0.008969739079475403, -0.05096933990716934, 0.006891864351928234, -0.030082521960139275, -0.05269844830036163, 0.008783075027167797, 0.010364813730120659, 0.03601650148630142, -0.059300489723682404, -0.03263688459992409, 0.07549121230840683, -0.02821587212383747, 0.01384267583489418, -0.014884069561958313, -0.06904636323451996, -0.0067739710211753845, 0.03603614866733551, 0.0166229996830225, -0.018185090273618698, 0.022203298285603523, -0.036763161420822144, 0.053287915885448456, -0.01922648400068283, -0.018489649519324303, -0.02320539392530918, -0.008517813868820667, -0.01222163811326027, -0.036900702863931656, -0.014677755534648895, 0.039415765553712845, -0.018833504989743233, -0.009873590432107449, -0.055410001426935196, 0.01240830309689045, 0.045782022178173065, -0.04786480963230133, -0.04075189307332039, -0.025209585204720497, -0.020768925547599792, -0.033265650272369385, 0.04346344619989395, 0.04971180856227875, -0.04845427721738815, -0.015483361668884754, 0.02017945796251297, 0.06028293818235397, 0.0045610093511641026, 0.014972489327192307, 0.10036676377058029, 0.007672909647226334, -0.015503010712563992, -0.02267487347126007, 0.038433320820331573, 0.06468430161476135, 0.021790670230984688, -0.015738798305392265, 0.025916947051882744, -0.06319098174571991, -0.027783596888184547, -0.04582132026553154, -0.04703955352306366, -0.02245873399078846, 0.03373722359538078, -0.029041128233075142, 0.011190068908035755, -0.02593659609556198, -0.019020169973373413, 0.04035891592502594, 0.04703955352306366, -0.02823552116751671, -0.04664657637476921, -0.05128372460603714, -0.05167670175433159, -0.005329774226993322, -0.016318442299962044, 0.03462142497301102, -0.019609639421105385, -0.00896482728421688, 0.022871362045407295, -0.01104270201176405, -0.05619595944881439, 0.040476810187101364, -0.01073814369738102, -0.028117628768086433, 0.04597851261496544, 0.03426774591207504, -0.013390750624239445, 0.025779403746128082, 0.024914851412177086, 0.053366512060165405, 0.024089595302939415, 0.012536021880805492, -0.041616447269916534, -0.0050153909251093864, -0.002129453467205167, -0.019629286602139473, -0.03208671137690544, 0.06268011033535004, -0.02640817128121853, 0.052069682627916336, 0.0440136194229126, -0.0015227926196530461, -0.02086717076599598, -0.05006549134850502, -0.05607806518673897, -0.04004453122615814, 0.06378044933080673, -0.06114748865365982, -0.027665702626109123, 0.03118286281824112, 0.007545191794633865, -0.021672775968909264, -0.07737751305103302, 0.011976026929914951, 0.027705000713467598, 0.03065234050154686, -0.012270760722458363, -0.08283991366624832, 0.022812414914369583, -0.019707882776856422, -0.011543749831616879, -0.04959391430020332, 0.020316999405622482, 0.020847521722316742, 0.007987292483448982, 0.045035362243652344, -0.0008160448633134365, 0.009402016177773476, 0.042677488178014755, 0.031516894698143005, 0.009898151271045208, -0.014402670785784721, -0.0007012214045971632, 0.0016971768345683813, 0.012467250227928162, 0.11231332272291183, 0.013321978971362114, -0.020159808918833733, 0.006656077224761248, -0.07981397956609726, 0.004619956016540527, -0.012801282107830048, -0.06495938450098038, -0.007157125044614077, 0.07065757364034653, 0.024364681914448738, 0.038885246962308884, 0.011661644093692303, 0.002350504044443369, 0.015728972852230072, -0.027940787374973297, -0.025582915171980858, 0.0067592342384159565, 0.05191249027848244, -0.07545191794633865, 0.0060911704786121845, 0.0081936065107584, -0.011366909369826317, 0.05717840418219566, -0.05112653225660324, 0.020749276503920555, 0.007800627965480089, -0.0021110326051712036, -0.011661644093692303, 0.01031569205224514, 0.03065234050154686, -0.0024487487971782684, -0.0220854040235281, -0.016711421310901642, -0.018175266683101654, -0.04310976713895798, -0.07289755344390869, 0.025838350877165794, -0.0018543683690950274, 0.012054622173309326, -0.0644485130906105, 0.05772857367992401, 0.015267224051058292, -0.06704217195510864, 0.049200937151908875, 0.13683518767356873, -0.001827351050451398, 0.0714828297495842, 0.03800104185938835, 0.07443016767501831, 0.016750717535614967, 0.03611474484205246, -0.012526197358965874, -0.006150117143988609, 0.005825909785926342, -0.0010266569443047047, -0.023932404816150665, 0.00010415471479063854, 0.011249016039073467, -0.04303117096424103, 0.002129453467205167, 0.04134136065840721, 0.004258906934410334, -0.07898872345685959, -0.003246986772865057, 0.04008382931351662, 0.0298074372112751, -0.0012200761120766401, 0.017693867906928062, -0.034857213497161865, 0.006582393776625395, 0.04255959764122963, 0.0192756075412035, 0.03065234050154686, -0.004271187353879213, 0.00827220268547535, 0.012683388777077198, -0.028412362560629845, -0.002418047282844782, -0.02526853233575821, 0.017408957704901695, -0.0352698415517807, -0.00008013081969693303, 0.022242596372961998, -0.005732577294111252, -0.0014171795919537544, -0.004357151687145233, -0.018892452120780945, 0.07875293493270874, 0.019688233733177185, 0.002920323284342885, 0.0377652570605278, -0.06228712946176529, -0.011455330066382885, -0.01908894255757332, 0.041616447269916534, 0.03929787129163742, -0.03348178789019585, -0.0002488353638909757, -0.019707882776856422, -0.014471441507339478, 0.025818701833486557, -0.029551999643445015, -0.011956377886235714, -0.026526063680648804, 0.051480215042829514, -0.008935353718698025, 0.04098768159747124, 0.04676446691155434, -0.022517681121826172, 0.010463058948516846, -0.03717578947544098, 0.02428608573973179, -0.01946227066218853, 0.011357084847986698, 0.014579511247575283, 0.09101387113332748, 0.09965940564870834, 0.01749737747013569, 0.057846467941999435, 0.022183649241924286, 0.0038708404172211885, -0.021495936438441277, 0.0002403924590907991, -0.06719936430454254, 0.05434895679354668, -0.010865861549973488, 0.016829313710331917, 0.019403325393795967, -0.008522726595401764, -0.025425724685192108, 0.030298659577965736, -0.04118417203426361, 0.08873459696769714, -0.00033280387287959456, 0.020199107006192207, 0.030986372381448746, 0.00022166456619743258, 0.02328399010002613, -0.006096082739531994, -0.008827284909784794, 0.04605710878968239, -0.08111081272363663, -0.014383021742105484, 0.06016504392027855, -0.013911446556448936, -0.012310058809816837, 0.010914984159171581, -0.017379485070705414, -0.04711814969778061, -0.028628500178456306, 0.0006993793067522347, -0.00316593493334949, 0.02412889339029789, 0.03497510775923729, -0.04621429741382599, 0.02776394784450531, -0.012231462635099888, 0.027705000713467598, -0.0074567715637385845, 0.00527573935687542, -0.015355643816292286, 0.0029154110234230757, -0.005668718367815018, -0.04629289358854294, 0.01863701641559601, 0.008557111956179142, -0.039101384580135345, -0.013528292998671532, 0.003016111673787236, -0.029100075364112854, 0.039867691695690155, -0.01509038358926773, 0.11522136628627777, -0.007098178379237652, 0.011209717951714993, 0.025091690942645073, 0.013646186329424381, 0.023087499663233757, 0.05639244616031647, -0.08173957467079163, -0.013656010851264, 0.005295388400554657, 0.017379485070705414, -0.03587895631790161, 0.03041655384004116, -0.01922648400068283, -0.0003601281496230513, 0.055567193776369095, -0.03025936149060726, -0.040791191160678864, 0.0022817328572273254, 0.005236441735178232, 0.03269582986831665, -0.006159941665828228, 0.04389572516083717, -0.0541524700820446, -0.009225175715982914, -0.10154570639133453, 0.01866648904979229, 0.016799841076135635, -0.028962532058358192, 0.003293653018772602, -0.024325383827090263, -0.033265650272369385, 0.01819491572678089, 0.010767617262899876, 0.011121298186480999, 0.02033664844930172, -0.0721115991473198, -0.06326957792043686, -0.017241941764950752, 0.04460308700799942, 0.04004453122615814, 0.007667997386306524, 0.0070932661183178425, 0.021201202645897865, 0.026211680844426155, 0.006032223347574472, 0.03041655384004116, -0.011465154588222504, 0.017232118174433708, 0.009171141311526299, -0.0380796380341053, 0.026054490357637405, 0.02860885113477707, -0.020218756049871445, 0.07199370115995407, 0.010404111817479134, 0.008390096016228199, -0.005005566403269768, 0.03625228628516197, 0.007407648954540491, -0.032126009464263916, 0.03796174377202988, 0.013872149400413036, -0.016485458239912987, -0.05045846849679947, 0.020199107006192207, -0.037431225180625916, 0.018597718328237534, -0.03727403283119202, 0.0756877064704895, 0.042677488178014755, -0.018833504989743233, 0.0017843690002337098, -0.017860883846879005, 0.026977989822626114, 0.086769700050354, 0.03255828842520714, 0.06719936430454254, -0.041616447269916534, 0.023794861510396004, -0.010187973268330097, -0.057925064116716385, -0.03731333091855049, 0.0436992347240448, 0.008719215169548988, -0.04786480963230133, -0.022105053067207336, 0.004533992148935795, -0.015719149261713028, -0.0641341283917427, 0.026290277019143105, 0.021044010296463966, 0.011651819571852684, -0.035996850579977036, -0.004565921612083912, 0.052069682627916336, -0.0020754188299179077, 0.008296763524413109, -0.03536808490753174, 0.060558021068573, -0.016023708507418633, -0.01635774038732052, 0.03868875652551651, 0.012123393826186657, 0.03285302221775055, -0.04558553174138069, -0.05022267997264862, -0.07325123250484467, -0.06657059490680695, 0.052148278802633286, -0.05454544723033905, -0.02805868163704872, 0.053602296859025955, 0.005644157063215971, -0.03086847998201847, -0.01646580919623375, -0.011013228446245193, 0.06295519322156906, 0.04279538244009018, 0.019501568749547005, -0.07596278935670853, 0.0024659414775669575, -0.07427298277616501, -0.020808223634958267, -0.012486899271607399, 0.027940787374973297, -0.031241808086633682, 0.008635707199573517, 0.018941575661301613, 0.00059898552717641, -0.06936074793338776, -0.018735261633992195, 0.024246787652373314, -0.018234213814139366, 0.011180244386196136, 0.02238013781607151, -0.023559074848890305, -0.05065495893359184, 0.05073355510830879, -0.018951399251818657, -0.020985065028071404, 0.000027189982574782334, -0.04110557585954666, 0.008090449497103691, 0.02974849008023739, -0.021810319274663925, 0.06275870651006699, 0.012506548315286636, 0.0440136194229126, -0.0018199827754870057, 0.05293423309922218, 0.009514997713267803, 0.0014920911053195596, -0.017585797235369682, -0.011131122708320618, 0.0008504305151291192, 0.04719674587249756, -0.06205134093761444, -0.06723865866661072, 0.009853941388428211, -0.07175791263580322, 0.0035294401459395885, -0.01739913411438465, -0.002216645749285817, 0.06637410819530487, -0.028019383549690247, 0.01141603197902441, -0.011170420795679092, 0.0067592342384159565, -0.027665702626109123, 0.0012495495611801744, -0.02206575497984886, -0.018725436180830002, 0.020886819809675217, -0.03963190317153931, -0.05749278888106346, 0.007564840372651815, 0.034090906381607056, -0.002371381036937237, -0.023952053859829903, 0.051715999841690063, 0.0029006742406636477, 0.012752159498631954, -0.024384330958127975, -0.004828725941479206, 0.031457945704460144, -0.002669799141585827, -0.005585210397839546, -0.02344118058681488, 0.08794864267110825, -0.02678150124847889, -0.0027287460397928953, 0.049043744802474976, 0.056785427033901215, -0.04051610827445984, 0.019020169973373413, 0.03348178789019585, 0.00812483485788107, -0.0028883935883641243, 0.02216400019824505, 0.01763492077589035, -0.017585797235369682, -0.07175791263580322, -0.008463779464364052, -0.014068638905882835, 0.020749276503920555, -0.05859312787652016, 0.017890356481075287, 0.06291589140892029, 0.045389045029878616, 0.0594576820731163, 0.012143042869865894, -0.008984476327896118, -0.007142388261854649, -0.07934240251779556, -0.03389441594481468, 0.026211680844426155, -0.00770238321274519, 0.012614617124199867, -0.015630729496479034, 0.009126931428909302, 0.004406273830682039, 0.01103287748992443, -0.07344772666692734, -0.0270762350410223, 0.0019648936577141285, -0.0036792634055018425, 0.012732510454952717, 0.033658627420663834, 0.07167931646108627, -0.03285302221775055, 0.02853025496006012, -0.044642385095357895, 0.008449042215943336, -0.03436598926782608, -0.03974979743361473, -0.016112128272652626, 0.043266959488391876, 0.034031957387924194, -0.022714169695973396, -0.02646711654961109, -0.02397170290350914, -0.05175529792904854, 0.028923233970999718, 0.022399786859750748, -0.028097979724407196, -0.027095884084701538, 0.03921927884221077, 0.02375556342303753, -0.026506414636969566, 0.0600864477455616, -0.027056585997343063, -0.06778883188962936, -0.01741878129541874, -0.012761984020471573, 0.005261002574115992, 0.04216661676764488, -0.01357741467654705, -0.03314775601029396, 0.03519124537706375, -0.04519255459308624, 0.005246266257017851, 0.021299447864294052, -0.05729629844427109, -0.0058652074076235294, 0.005673630628734827, -0.071797214448452, 0.01609247922897339, -0.002456116955727339, 0.025523968040943146, 0.06881057471036911, -0.024011000990867615, -0.041380658745765686, 0.039553310722112656, 0.02253733016550541, 0.0043792566284537315, -0.053523704409599304, 0.003927330952137709, -0.039946287870407104, -0.04212731868028641, -0.01620054803788662, -0.014098111540079117, 0.052148278802633286, 0.013223734684288502, 0.016004059463739395, -0.0014675299171358347, 0.02776394784450531, -0.041537851095199585, -0.007584489416331053, -0.0355842225253582, 0.006916425656527281, 0.02739061787724495, 0.005148021504282951, -0.01103287748992443, 0.018656665459275246, 0.03012182004749775, -0.002208049176260829, 0.02383415959775448, -0.010797090828418732, 0.0005676700384356081, 0.07372280955314636, 0.003495054552331567, -0.009996396489441395, 0.05324861779808998, -0.03752946853637695, -0.018302984535694122, -0.012251111678779125, 0.01372478250414133, -0.025602564215660095, 0.024836255237460136, 0.024305734783411026, -0.009529734030365944, -0.04652868211269379, -0.015060910023748875, 0.05576368048787117, -0.019098766148090363, -0.04841497913002968, -0.006710111629217863, -0.046253595501184464, -0.04943672567605972, 0.059300489723682404, 0.012260936200618744, 0.0009892011294141412, -0.038492266088724136, 0.024168191477656364, 0.01434372365474701, -0.010325515642762184, -0.03073093667626381, -0.01593528687953949, 0.02919831871986389, -0.023991351947188377, -0.015277047641575336, 0.004811533261090517, -0.01198585145175457, -0.008434305898845196, -0.035898607224226, 0.0023983982391655445, -0.05218757688999176, 0.0244236271828413, -0.011848309077322483, -0.009328332729637623, -0.07057897746562958, -0.05619595944881439, -0.015620904043316841, 0.01372478250414133, -0.006287659518420696, -0.007643436081707478, -0.05269844830036163, -0.04428870230913162, -0.05607806518673897, 0.018568245694041252, -0.006680638529360294, 0.02990568056702614, -0.01802789978682995, -0.020808223634958267, 0.05513491481542587, -0.03727403283119202, 0.045389045029878616, -0.0245808195322752, -0.024620117619633675, 0.02996462769806385, -0.028726745396852493, 0.03552527725696564, 0.07266176491975784, 0.009200614877045155, -0.09132825583219528, -0.01646580919623375, 0.005079249851405621, 0.01721246913075447, 0.049869000911712646, 0.013361277058720589, -0.014992138370871544, 0.009907975792884827, 0.02823552116751671, 0.02845166064798832, -0.010787266306579113, 0.035623520612716675, -0.010138851590454578, -0.11113438755273819, -0.04452449083328247, 0.0597720630466938, -0.04436729848384857, -0.009853941388428211, -0.005806260742247105, -0.04075189307332039, 0.007211159449070692, 0.030514799058437347, -0.05340581014752388, 0.07753470540046692, 0.013606888242065907, -0.05065495893359184, 0.020965415984392166, 0.024521872401237488, 0.047746915370225906, -0.04141995683312416, -0.002303837798535824, 0.018686138093471527, 0.05203038454055786, 0.037804555147886276, -0.0544668510556221, 0.03232249990105629, -0.029080426320433617, -0.0010536742629483342, -0.05053706467151642, 0.007363439071923494, 0.00039267170359380543, 0.023618021979928017, 0.010522005148231983, -0.019766829907894135, 0.0441708080470562, -0.029178671538829803, -0.006120643578469753, -0.06354466080665588, 0.014157058671116829, 0.0355842225253582, -0.005825909785926342, 0.031045319512486458, 0.040319617837667465, -0.03619334101676941, 0.029866382479667664 ]
9,542
asyncclick.core
_parse_decls
null
def _parse_decls( self, decls: t.Sequence[str], expose_value: bool ) -> t.Tuple[t.Optional[str], t.List[str], t.List[str]]: opts = [] secondary_opts = [] name = None possible_names = [] for decl in decls: if decl.isidentifier(): if name is not None: raise TypeError(f"Name '{name}' defined twice") name = decl else: split_char = ";" if decl[:1] == "/" else "/" if split_char in decl: first, second = decl.split(split_char, 1) first = first.rstrip() if first: possible_names.append(split_opt(first)) opts.append(first) second = second.lstrip() if second: secondary_opts.append(second.lstrip()) if first == second: raise ValueError( f"Boolean option {decl!r} cannot use the" " same flag for true/false." ) else: possible_names.append(split_opt(decl)) opts.append(decl) if name is None and possible_names: possible_names.sort(key=lambda x: -len(x[0])) # group long options first name = possible_names[0][1].replace("-", "_").lower() if not name.isidentifier(): name = None if name is None: if not expose_value: return None, opts, secondary_opts raise TypeError("Could not determine name for option") if not opts and not secondary_opts: raise TypeError( f"No options defined but a name was passed ({name})." " Did you mean to declare an argument instead? Did" f" you mean to pass '--{name}'?" ) return name, opts, secondary_opts
(self, decls: Sequence[str], expose_value: bool) -> Tuple[Optional[str], List[str], List[str]]
[ -0.029739096760749817, 0.039775580167770386, -0.033553700894117355, -0.03660908713936806, 0.010832734405994415, 0.03966447338461876, 0.026776298880577087, 0.009675391018390656, -0.041034769266843796, -0.04003482311964035, -0.005411738064140081, 0.02918357215821743, -0.02398015558719635, -0.013258526101708412, 0.01901746727526188, 0.0006643151282332838, 0.011323448270559311, 0.03177602216601372, -0.036312807351350784, 0.04892322048544884, 0.028461389243602753, -0.014878807589411736, -0.0020994211081415415, -0.039331160485744476, -0.032664861530065536, -0.05207119509577751, 0.03590542450547218, -0.02548007294535637, -0.054811786860227585, 0.02751699835062027, 0.034368470311164856, -0.03829418122768402, -0.00935596413910389, 0.0021237251348793507, -0.0008153484668582678, 0.017193494364619255, -0.01853601261973381, 0.11110497266054153, 0.025109723210334778, 0.002068172674626112, -0.029072467237710953, -0.05707091838121414, 0.036960918456315994, -0.022017301991581917, -0.0890321135520935, 0.020461831241846085, -0.01511953491717577, -0.019572991877794266, -0.05877453088760376, -0.007064424455165863, 0.06773699820041656, 0.016656486317515373, -0.006286689545959234, -0.05344149097800255, 0.023443149402737617, 0.0008078257087618113, 0.06647780537605286, 0.07303299754858017, 0.019258195534348488, 0.030461279675364494, 0.015499143861234188, 0.030905699357390404, 0.0005494488286785781, -0.010045740753412247, -0.04503454640507698, -0.010925321839749813, 0.01962854526937008, -0.05084904283285141, -0.08643966913223267, 0.04284948483109474, -0.0219432320445776, -0.02975761517882347, -0.0735514909029007, -0.001351777114905417, 0.07836604118347168, -0.03227599337697029, -0.012684484012424946, -0.009392999112606049, 0.006133920047432184, -0.02142474241554737, -0.020387761294841766, 0.028239179402589798, -0.047367751598358154, -0.007106088567525148, 0.009527251124382019, 0.05014537647366524, -0.003715072525665164, -0.003925709053874016, 0.06310762465000153, 0.057330165058374405, -0.002217469969764352, -0.023832015693187714, 0.01714720018208027, 0.04210878536105156, -0.023869050666689873, 0.030590901151299477, -0.01759161986410618, -0.05218230187892914, -0.058144934475421906, 0.02044331468641758, 0.007837530225515366, 0.030590901151299477, -0.0152398981153965, 0.002057756530120969, 0.028479907661676407, -0.00805974006652832, -0.04262727499008179, -0.012425239197909832, 0.06562600284814835, -0.003504435997456312, -0.025757836177945137, -0.09792051464319229, -0.008235655725002289, 0.031313084065914154, -0.003511379938572645, 0.005374703090637922, 0.029609475284814835, -0.03907191380858421, 0.0021376132499426603, -0.024072743952274323, -0.02840583771467209, 0.0016087073599919677, 0.00861989427357912, 0.0015577842714264989, 0.01064755953848362, -0.026405947282910347, 0.005120087414979935, -0.0011243592016398907, 0.036683157086372375, 0.03227599337697029, 0.024572715163230896, 0.047256648540496826, -0.004925653804093599, -0.025424521416425705, 0.003425736678764224, -0.003636373206973076, -0.011953042820096016, 0.023683875799179077, -0.029850201681256294, -0.0012603469658643007, 0.005758941173553467, 0.011443812400102615, -0.02694295533001423, -0.024480128660798073, -0.07229229807853699, -0.010110552422702312, -0.019091537222266197, -0.02292465977370739, -0.03122049756348133, 0.08081034570932388, -0.06373722106218338, -0.03907191380858421, -0.04288651794195175, 0.01296224631369114, 0.03568321466445923, -0.016249101608991623, -0.03342407941818237, -0.041479188948869705, 0.021072909235954285, 0.0050599053502082825, -0.003946541342884302, -0.09214305877685547, 0.017471255734562874, 0.011193825863301754, 0.017878642305731773, 0.03405367210507393, 0.008726369589567184, 0.0028308620676398277, 0.02329500950872898, 0.02235061675310135, 0.025776352733373642, 0.071958988904953, 0.0015786164440214634, -0.011656763032078743, -0.023517219349741936, -0.01979520171880722, 0.03325742110610008, 0.017795313149690628, -0.0012290987651795149, -0.05218230187892914, 0.019665580242872238, -0.013721464201807976, -0.05077497288584709, 0.010406832210719585, 0.051071252673864365, 0.03540544956922531, 0.010573489591479301, 0.010360538959503174, 0.012573379091918468, 0.0011197298299521208, -0.02975761517882347, -0.012267840094864368, 0.000352700415533036, 0.022295063361525536, -0.037534963339567184, -0.003185009118169546, -0.004715017043054104, 0.045219723135232925, 0.0025461555924266577, -0.04051627963781357, 0.0002943992440123111, -0.04666408896446228, -0.06162622198462486, 0.07162567228078842, 0.013434442691504955, 0.04533082991838455, 0.018424907699227333, -0.05751533806324005, -0.056885745376348495, 0.008073627948760986, -0.010999391786754131, 0.0036178557202219963, 0.017202753573656082, -0.021683987230062485, -0.003643317148089409, -0.03914598375558853, -0.005138604901731014, 0.052700791507959366, -0.0353684164583683, 0.002362137893214822, 0.04799734801054001, -0.014230694621801376, 0.1556950956583023, 0.07451440393924713, 0.07310707122087479, 0.0028077152092009783, 0.014378834515810013, -0.013036316260695457, 0.0040784780867397785, 0.06344094127416611, -0.0008460180833935738, -0.04036813974380493, 0.007615319918841124, -0.03503509983420372, 0.01608244515955448, -0.0353684164583683, 0.05255265161395073, -0.0023251029197126627, 0.020943287760019302, -0.007180158514529467, -0.020313691347837448, 0.03738682344555855, -0.03466475009918213, 0.011980819515883923, -0.0071431235410273075, -0.014971395023167133, 0.06181139871478081, -0.04370128735899925, 0.01436957623809576, 0.05429329723119736, -0.029405781999230385, 0.05425626039505005, 0.041145872324705124, 0.036757227033376694, 0.0028447501827031374, -0.0032590790651738644, -0.08895804733037949, 0.049589853733778, 0.015823200345039368, -0.02248023822903633, 0.04618263244628906, -0.024406058713793755, 0.006374647840857506, 0.02312835119664669, 0.012795588932931423, -0.03840528428554535, 0.07851418107748032, -0.08029185980558395, -0.041812505573034286, 0.011971560306847095, 0.012582638300955296, -0.00009786785813048482, -0.037090543657541275, -0.0013841827167198062, 0.009115236811339855, 0.04292355477809906, 0.047738101333379745, -0.03512768819928169, 0.007453291676938534, 0.02068404294550419, 0.027294788509607315, -0.005110828671604395, -0.03686833381652832, 0.07792162150144577, 0.013434442691504955, 0.027831794694066048, -0.0390348806977272, 0.026961473748087883, -0.023109834641218185, 0.03727571666240692, 0.021609917283058167, 0.03409070894122124, 0.07310707122087479, -0.036109115928411484, 0.08043999969959259, 0.06588524580001831, 0.035053618252277374, -0.03197971358895302, 0.04140511900186539, -0.029720580205321312, 0.02649853564798832, 0.006397794466465712, 0.06455198675394058, 0.024535680189728737, 0.04370128735899925, -0.018897103145718575, -0.01849897764623165, -0.010054999962449074, 0.045997459441423416, 0.004330778960138559, -0.015276933088898659, -0.036035045981407166, -0.04929357022047043, -0.01871192827820778, -0.0022290435153990984, 0.00860600546002388, -0.028146592900156975, -0.05451550707221031, 0.004270597361028194, 0.00719404686242342, -0.016619451344013214, -0.020054446533322334, -0.029294677078723907, -0.03155381232500076, -0.022220993414521217, 0.008309725672006607, -0.0382201112806797, 0.027591068297624588, 0.07018131017684937, 0.03207230195403099, -0.10495716333389282, -0.008684705011546612, -0.02557266131043434, 0.0698850229382515, 0.044034603983163834, -0.0015253786696121097, -0.011897490359842777, -0.0256096962839365, 0.0219432320445776, -0.044367916882038116, 0.014415870420634747, -0.036794263869524, -0.027405893430113792, -0.007323669269680977, 0.030257586389780045, -0.00415717763826251, 0.01867489330470562, 0.014221436344087124, 0.1097717136144638, 0.0051293461583554745, -0.00039610080420970917, -0.004208100959658623, -0.036201704293489456, -0.001268448424525559, 0.08103255927562714, 0.02496158331632614, -0.029905755072832108, -0.0018100851448252797, 0.0123974634334445, -0.02122104912996292, 0.07873638719320297, -0.04533082991838455, 0.01979520171880722, 0.03112790919840336, -0.007805124390870333, -0.07269968837499619, 0.004696499556303024, -0.025183793157339096, 0.011027168482542038, -0.027498479932546616, -0.0021885365713387728, -0.0172768235206604, 0.032979659736156464, -0.08110662549734116, -0.026313360780477524, -0.007536620367318392, 0.044441986829042435, 0.020258139818906784, -0.006532046478241682, -0.06877397745847702, -0.05747830495238304, 0.0019084593513980508, 0.039405230432748795, 0.025146758183836937, -0.01789715886116028, -0.032294511795043945, -0.009305041283369064, 0.014851030893623829, -0.010230915620923042, 0.07666242867708206, 0.0890321135520935, -0.001327472971752286, 0.002666519256308675, 0.012462274171411991, -0.005559877958148718, 0.004344667308032513, -0.023109834641218185, -0.026517052203416824, -0.047367751598358154, -0.000355883123120293, 0.006897767074406147, -0.03840528428554535, -0.007749571930617094, 0.020517384633421898, -0.054367367178201675, -0.0001906723337015137, 0.05473771691322327, -0.0004805868666153401, -0.01703609526157379, 0.04670112207531929, 0.014128848910331726, -0.03840528428554535, -0.010360538959503174, -0.02109142765402794, 0.03657205402851105, 0.05781162157654762, -0.04710850864648819, 0.09540213644504547, 0.037497926503419876, -0.03368332237005234, -0.012619673274457455, -0.08673594892024994, -0.00013114148168824613, 0.0759958028793335, 0.016184290871024132, -0.021758057177066803, -0.04721961170434952, 0.022128406912088394, -0.022609861567616463, -0.04944171383976936, 0.012980763800442219, 0.06969985365867615, -0.007073683198541403, -0.12169697880744934, 0.03429440036416054, 0.029813166707754135, -0.009004131890833378, -0.015212122350931168, 0.03966447338461876, -0.018387872725725174, -0.024887513369321823, 0.03747941181063652, -0.0654408261179924, 0.06692222505807877, 0.05247858166694641, -0.0723663717508316, -0.039812613278627396, 0.04096069931983948, -0.011999337002635002, -0.03279448300600052, 0.036109115928411484, -0.013091868720948696, 0.03847935423254967, -0.017749018967151642, -0.003636373206973076, -0.01979520171880722, -0.0014293191488832235, 0.027239235118031502, -0.01326778531074524, 0.011814162135124207, 0.07984744012355804, -0.00947169866412878, 0.04929357022047043, -0.02475789189338684, -0.029165055602788925, 0.05744126811623573, 0.03646094724535942, -0.007957893423736095, -0.05070090293884277, -0.04333093762397766, -0.03579431772232056, -0.06932950019836426, 0.025961527600884438, -0.0035368415992707014, 0.0028725264128297567, -0.02003592997789383, 0.024498645216226578, -0.04425681382417679, -0.01999889500439167, -0.03370184078812599, -0.0049626887775957584, -0.033998120576143265, -0.028516942635178566, 0.04596042260527611, 0.015091758221387863, 0.03007241152226925, 0.041071802377700806, -0.03925709053874016, -0.07225526869297028, -0.021758057177066803, -0.023035764694213867, -0.05377480760216713, 0.043108727782964706, -0.07636614888906479, 0.09399480372667313, 0.05492288991808891, 0.08873583376407623, 0.0003874207322951406, -0.0036965550389140844, 0.00045136394328437746, 0.016230585053563118, -0.031887125223875046, 0.046441879123449326, -0.013119645416736603, 0.0227580014616251, -0.0004201156843919307, 0.0036664640065282583, -0.0249986182898283, -0.05473771691322327, 0.004902506712824106, -0.024813443422317505, 0.023720910772681236, 0.042330995202064514, 0.03992372006177902, -0.012082665227353573, 0.02959095686674118, -0.013971449807286263, -0.026850368827581406, -0.01999889500439167, -0.0034581422805786133, -0.046034492552280426, -0.021146979182958603, -0.0018957285210490227, -0.03235006332397461, -0.0005798290949314833, -0.00918467715382576, -0.04844176769256592, 0.05047869309782982, 0.007930117659270763, -0.09725388139486313, 0.001224469393491745, 0.03579431772232056, -0.01612873747944832, 0.0018656376050785184, -0.005133975297212601, 0.009170789271593094, 0.01296224631369114, 0.0678851380944252, -0.05003427341580391, 0.027609584853053093, 0.06532972306013107, 0.08406943082809448, -0.0353684164583683, 0.006212619598954916, 0.004129401408135891, -0.010906804352998734, -0.04044220969080925, -0.020795147866010666, 0.05618207901716232, 0.016489829868078232, -0.03714609518647194, 0.028424354270100594, 0.040590349584817886, -0.022461721673607826, -0.04333093762397766, -0.026850368827581406, -0.006652410142123699, -0.014184401370584965, -0.022017301991581917, -0.024739373475313187, 0.01996186003088951, -0.033016692847013474, -0.057700514793395996, -0.005694129969924688, -0.0051432340405881405, -0.013952932320535183, 0.043590184301137924, -0.05177491530776024, 0.00778197729960084, -0.00675888592377305, -0.0018980432068929076, -0.043108727782964706, -0.034164778888225555, 0.01789715886116028, -0.009198565967381, 0.011943784542381763, 0.015943562611937523, -0.004106254316866398, 0.021980267018079758, 0.028461389243602753, 0.023887569084763527, 0.03316483274102211, -0.025461556389927864, -0.0020427112467586994, -0.004715017043054104, 0.03407219052314758, 0.013888121582567692, -0.0088930269703269, 0.02788734808564186, -0.027776243165135384, -0.004393275827169418, -0.010156845673918724, 0.05051572620868683, -0.04084959253668785, -0.024906031787395477, -0.000342863000696525, -0.06432978063821793, 0.06377425044775009, 0.00028774450765922666, -0.03970151022076607, -0.04499751329421997, -0.03166491538286209, 0.010045740753412247, -0.01465659774839878, 0.028424354270100594, -0.014147366397082806, 0.0471455417573452, 0.0036178557202219963, -0.022128406912088394, -0.010962356813251972, 0.013462219387292862, -0.05555248633027077, -0.002604022854939103, -0.024331988766789436, -0.007082941941916943, 0.05133049562573433, 0.05340445414185524, -0.0005106778116896749, -0.003997464198619127, -0.03242413327097893, -0.040219999849796295, 0.011314189061522484, 0.009869825094938278, 0.009925377555191517, 0.001638798275962472, -0.05377480760216713, 0.0172768235206604, -0.022406168282032013, 0.034201811999082565, -0.023628324270248413, 0.004485863260924816, -0.014110331423580647, 0.03447957709431648, -0.04129401594400406, -0.01436957623809576, -0.004397904966026545, -0.005823752377182245, -0.06377425044775009, -0.00861989427357912, 0.003717387095093727, 0.006851473357528448, 0.037368305027484894, -0.03966447338461876, 0.019721131771802902, -0.02101735770702362, 0.035831354558467865, 0.011943784542381763, 0.035868387669324875, 0.08043999969959259, 0.03347963094711304, 0.007434774190187454, 0.049034327268600464, 0.007916228845715523, -0.015397297218441963, -0.0008350232965312898, 0.056922778487205505, -0.000994736677967012, -0.016415759921073914, -0.01367517001926899, 0.01513805240392685, 0.005680241622030735, -0.04640484228730202, 0.07918080687522888, 0.016369465738534927, -0.041923608630895615, -0.024276435375213623, -0.03922005370259285, -0.006175584625452757, 0.05458957701921463, 0.011304930783808231, -0.009786495938897133, -0.012952988035976887, 0.045627109706401825, 0.05577469617128372, -0.006240395829081535, -0.04336797446012497, 0.01942485198378563, 0.015026947483420372, -0.023869050666689873, 0.013915897347033024, 0.004712702706456184, 0.014119589701294899, 0.01826750859618187, -0.049071360379457474, -0.01880451664328575, -0.021517328917980194, 0.031201979145407677, 0.02585042268037796, 0.013434442691504955, -0.048960257321596146, -0.029405781999230385, -0.037257201969623566, 0.008031963370740414, 0.023757945746183395, -0.017221270129084587, -0.011869714595377445, 0.00661537516862154, -0.009953153319656849, 0.03238710016012192, 0.040627382695674896, 0.003400275018066168, 0.005481178406625986, -0.02857249416410923, 0.001962854526937008, -0.017915677279233932, 0.008291208185255527, 0.026424465700984, -0.013277043588459492, -0.032701894640922546, -0.00402987003326416, -0.028757669031620026, 0.017434220761060715, -0.022572826594114304, -0.02629484236240387, 0.015925046056509018, -0.06618152558803558, 0.0123974634334445, 0.0015716723864898086, 0.061107732355594635, 0.0382201112806797, -0.02959095686674118, 0.01612873747944832, 0.04040517285466194, -0.012740036472678185, -0.05136753246188164, 0.0018297600327059627, -0.0727367177605629, 0.0012325707357376814, 0.03135012090206146, -0.014804737642407417, -0.005643206648528576, 0.042701344937086105, 0.005309891887009144, 0.02901691570878029, -0.040664419531822205, -0.026554087176918983, 0.020943287760019302, 0.02414681389927864, -0.05703388527035713, 0.039442263543605804, 0.03959040343761444, 0.08880990743637085, -0.03377591073513031, -0.00007262330473167822, -0.10866066068410873, 0.02475789189338684, -0.011823420412838459, -0.01741570420563221, -0.013851086609065533, -0.016230585053563118, -0.016887955367565155, -0.005717276595532894, 0.04951578378677368, -0.010777181945741177, 0.021924713626503944, -0.03023906983435154, -0.011758609674870968, 0.009684650227427483, -0.016369465738534927, -0.032294511795043945, -0.04747885838150978, 0.07566248625516891, -0.00678666215389967, 0.014499198645353317, -0.021758057177066803, -0.021165497601032257, -0.0744032934308052, 0.034238848835229874 ]
9,543
asyncclick.core
add_to_parser
null
def add_to_parser(self, parser: OptionParser, ctx: Context) -> None: if self.multiple: action = "append" elif self.count: action = "count" else: action = "store" if self.is_flag: action = f"{action}_const" if self.is_bool_flag and self.secondary_opts: parser.add_option( obj=self, opts=self.opts, dest=self.name, action=action, const=True ) parser.add_option( obj=self, opts=self.secondary_opts, dest=self.name, action=action, const=False, ) else: parser.add_option( obj=self, opts=self.opts, dest=self.name, action=action, const=self.flag_value, ) else: parser.add_option( obj=self, opts=self.opts, dest=self.name, action=action, nargs=self.nargs, )
(self, parser: asyncclick.parser.OptionParser, ctx: asyncclick.core.Context) -> NoneType
[ -0.0057515609078109264, -0.012856430374085903, -0.020552244037389755, 0.03475296124815941, 0.03471687436103821, 0.010591894388198853, 0.05330231040716171, 0.025135448202490807, -0.03352596238255501, -0.07246515899896622, 0.0062477742321789265, -0.017069730907678604, 0.008187515661120415, 0.0006478964351117611, 0.0030539659783244133, 0.006333483383059502, 0.011773783713579178, -0.03583560883998871, 0.025171536952257156, 0.061602599918842316, 0.05135354399681091, -0.05034307390451431, 0.014850304462015629, 0.019650038331747055, 0.010212968103587627, 0.005616229958832264, -0.008588997647166252, 0.008264203555881977, 0.014011253602802753, -0.023655831813812256, 0.013875922188162804, -0.058390747755765915, -0.007772501558065414, 0.025081316009163857, -0.005566608626395464, -0.011241482570767403, -0.03668368235230446, 0.13735178112983704, 0.024323463439941406, -0.020606376230716705, 0.04962131008505821, -0.05240010470151901, 0.009337828494608402, 0.020967258140444756, 0.000739244744181633, 0.030981741845607758, -0.03237113729119301, 0.057777248322963715, 0.01752985455095768, -0.12616443634033203, 0.017520833760499954, 0.028960801661014557, -0.009292718023061752, 0.008070229552686214, -0.04907998815178871, -0.007763479370623827, 0.07109380513429642, 0.04749210551381111, -0.005255347583442926, 0.03987748920917511, -0.009437071159482002, 0.012477504089474678, -0.0011796338949352503, -0.030241932719945908, -0.017484745010733604, -0.0009411132778041065, -0.05304969102144241, 0.024503905326128006, 0.013966143131256104, 0.05351883918046951, -0.00830480270087719, -0.053554926067590714, 0.023583654314279556, 0.012964694760739803, 0.007172534707933664, -0.022771669551730156, -0.027661625295877457, -0.0036561882589012384, -0.005918468814343214, 0.014453333802521229, -0.017629098147153854, 0.00226115295663476, 0.021689023822546005, 0.024467816576361656, -0.005769604817032814, 0.05037916079163551, 0.015229230746626854, -0.01767420768737793, 0.009134831838309765, -0.015734465792775154, -0.003164486261084676, -0.03385075554251671, -0.002329946029931307, -0.003913316875696182, 0.05510672181844711, -0.01673591509461403, -0.04752819240093231, -0.024936962872743607, -0.026885727420449257, 0.029195373877882957, -0.04871910437941551, -0.019704170525074005, 0.08127067983150482, -0.054168425500392914, 0.020822906866669655, -0.05510672181844711, 0.026109831407666206, 0.012648923322558403, 0.010853533633053303, 0.012739143334329128, 0.026182007044553757, -0.012946650385856628, -0.019036538898944855, -0.021183788776397705, -0.05196704342961311, 0.04640945792198181, -0.018856097012758255, -0.020606376230716705, 0.01720506139099598, 0.004314798396080732, -0.04236757755279541, 0.0005184863111935556, 0.014886393211781979, -0.021147700026631355, -0.031035874038934708, -0.007077803369611502, -0.025243714451789856, 0.01698853261768818, -0.016492318361997604, 0.010140791535377502, -0.05001828074455261, 0.03962486982345581, 0.03222678601741791, -0.04211495816707611, 0.01666373759508133, -0.05611719191074371, -0.010059593245387077, 0.020462023094296455, -0.04976566135883331, 0.04889954626560211, 0.0005830503650940955, -0.030296064913272858, -0.019902655854821205, -0.03390488773584366, -0.022140126675367355, 0.0034960468765348196, -0.06560839712619781, 0.03653932735323906, 0.0003250759618822485, 0.054998453706502914, -0.018170421943068504, 0.04319760575890541, 0.000466891418909654, 0.04731166362762451, 0.061133455485105515, 0.057163748890161514, -0.017538877204060555, -0.01794487051665783, -0.015355539508163929, -0.04680642858147621, -0.012233908288180828, -0.027896197512745857, -0.004705002531409264, 0.03300268203020096, -0.010835489258170128, 0.03659345954656601, 0.017827583476901054, 0.03760392963886261, -0.028311213478446007, 0.07094945013523102, 0.011187349446117878, -0.04074360802769661, 0.03883093222975731, 0.054096248000860214, -0.009581423364579678, 0.053194042295217514, -0.009166409261524677, -0.003895272733643651, 0.00910776574164629, -0.09931479394435883, -0.03197416663169861, 0.005232792813330889, 0.008873192593455315, 0.013063937425613403, -0.003962938208132982, -0.03937225416302681, 0.022916022688150406, -0.01821553148329258, -0.011223438195884228, 0.04056316614151001, 0.07441391795873642, -0.028509698808193207, -0.023565610870718956, -0.03958878293633461, -0.03922789916396141, 0.001795389223843813, -0.007885277271270752, -0.005435789003968239, 0.04947695508599281, 0.05124527961015701, -0.010005460120737553, -0.022771669551730156, -0.028148815035820007, -0.0015890096547082067, 0.03679194673895836, 0.03717087209224701, 0.012982739135622978, 0.03567321226000786, -0.052580542862415314, 0.010411453433334827, 0.024576080963015556, -0.004569671582430601, -0.0013815023703500628, 0.03383271023631096, 0.011746717616915703, 0.012260974384844303, -0.014453333802521229, 0.012026401236653328, -0.04933260381221771, 0.054745838046073914, 0.03682803362607956, 0.007524394895881414, 0.016402099281549454, 0.04630119353532791, 0.04922433942556381, 0.0036020560655742884, 0.030476506799459457, -0.019812434911727905, 0.012928606942296028, 0.055251073092222214, -0.014399201609194279, 0.03673781454563141, -0.024684345349669456, -0.005566608626395464, -0.03821742907166481, 0.005241814535111189, 0.05261663347482681, 0.03850613534450531, -0.017250170931220055, 0.022031862288713455, 0.025261757895350456, 0.018910229206085205, -0.060375601053237915, -0.03173959255218506, -0.04110448807477951, -0.007849189452826977, 0.06578883528709412, -0.013370687142014503, 0.04868301749229431, 0.053591012954711914, 0.060122981667518616, 0.005449322052299976, -0.023421257734298706, 0.017159951850771904, -0.017647141590714455, -0.006058310624212027, -0.04088795930147171, 0.018585436046123505, -0.05391580983996391, -0.05117310211062431, -0.0026366959791630507, 0.022482965141534805, 0.05095657333731651, -0.020714640617370605, -0.08949879556894302, -0.002251002937555313, 0.06272133439779282, -0.08603432774543762, -0.030169757083058357, 0.04160972312092781, -0.0011807616101577878, -0.03441012278199196, -0.015139010734856129, 0.027246609330177307, 0.0016984021058306098, 0.01725919358432293, -0.004364419728517532, 0.03940834105014801, -0.026470713317394257, 0.006071843672543764, 0.07300648093223572, -0.002079583937302232, 0.030584771186113358, -0.008719817735254765, -0.04031054675579071, 0.027102258056402206, -0.010736246593296528, 0.11707020550966263, 0.0035524347331374884, -0.015896862372756004, -0.022302523255348206, 0.08957097679376602, 0.05142572149634361, 0.04741992801427841, 0.055684130638837814, 0.0034960468765348196, 0.003234407166019082, 0.028455564752221107, 0.03706260770559311, -0.024846743792295456, -0.011999335139989853, -0.03491535782814026, -0.057163748890161514, -0.0027381940744817257, 0.012468481436371803, -0.01601414941251278, 0.04377501830458641, -0.03504166752099991, 0.07787839323282242, 0.03487927094101906, -0.011403879150748253, 0.055142808705568314, -0.03460860624909401, 0.04731166362762451, -0.002476554363965988, 0.03578147664666176, 0.007213133852928877, -0.025550464168190956, -0.03632279857993126, -0.003159975167363882, -0.03738740086555481, -0.05351883918046951, -0.08321944624185562, -0.057632897049188614, -0.04045490175485611, 0.005165127106010914, -0.009482181631028652, 0.013217312283813953, 0.023114508017897606, -0.019198935478925705, -0.04031054675579071, 0.0059004249051213264, 0.0007042842917144299, 0.03385075554251671, 0.020443979650735855, -0.053482748568058014, -0.009085210971534252, -0.014579642564058304, -0.025766992941498756, -0.005792160052806139, -0.01772833988070488, 0.06477836519479752, -0.07881668210029602, -0.03695434331893921, 0.03857831284403801, -0.05442104488611221, 0.00009050250082509592, -0.027805978432297707, 0.07621832937002182, 0.0036742324009537697, 0.0024382106494158506, -0.04049098864197731, -0.03713478520512581, -0.0015438994159922004, 0.08054891973733902, -0.017430612817406654, -0.03969704732298851, -0.01785464957356453, 0.03626866638660431, -0.07564091682434082, 0.017286259680986404, -0.03675585612654686, 0.07751750946044922, 0.014453333802521229, 0.0019194424385204911, -0.03807307779788971, 0.03796481341123581, 0.0035952895414084196, -0.03498753532767296, -0.07340344786643982, 0.04741992801427841, -0.05138963460922241, 0.07387259602546692, -0.030999785289168358, 0.0011294486466795206, 0.05193095654249191, -0.04720339924097061, 0.04153754562139511, -0.057127662003040314, -0.07621832937002182, 0.019668083637952805, 0.03468078374862671, -0.021436406299471855, 0.03774828463792801, 0.04305325448513031, -0.04630119353532791, 0.008056696504354477, 0.03976922482252121, 0.025261757895350456, 0.04117666557431221, 0.03177568316459656, 0.030259976163506508, 0.003159975167363882, -0.015373583883047104, -0.016185568645596504, 0.022591229528188705, -0.03542059287428856, -0.016582539305090904, -0.04994610324501991, 0.04200669378042221, 0.024197155609726906, -0.05066786706447601, 0.08249768614768982, 0.012567724101245403, -0.05301360413432121, 0.013145135715603828, -0.061241719871759415, 0.08459080010652542, -0.04817778244614601, 0.03958878293633461, -0.021616846323013306, -0.03731522336602211, 0.028257081285119057, 0.015481848269701004, -0.05095657333731651, -0.03439207747578621, 0.057272013276815414, -0.0003135164442937821, -0.007492817938327789, 0.059365130960941315, -0.0008960029808804393, 0.0027675158344209194, -0.005241814535111189, 0.08704479783773422, 0.03215460851788521, -0.04792516306042671, 0.0003893581160809845, 0.007786034606397152, -0.04370284080505371, -0.024413684383034706, -0.04135710746049881, 0.06272133439779282, 0.01756594330072403, -0.017701273784041405, 0.0027630047407001257, 0.0016025427030399442, -0.009689688682556152, -0.06766542047262192, 0.008133383467793465, 0.03706260770559311, -0.010961798019707203, -0.021382274106144905, -0.04099622368812561, 0.03450034186244011, -0.016384053975343704, -0.08083762228488922, -0.04456895962357521, 0.04536290094256401, 0.019271112978458405, -0.04568769410252571, 0.05333839729428291, 0.04529072344303131, 0.016474274918437004, 0.021255964413285255, -0.019289156422019005, -0.019487641751766205, 0.009716754779219627, -0.025947434827685356, -0.010609937831759453, -0.017232127487659454, 0.00211228895932436, 0.0013194757048040628, 0.029718654230237007, -0.028473610058426857, -0.03930007666349411, 0.011376813054084778, 0.04496593028306961, 0.004998219199478626, -0.061241719871759415, 0.0014548065373674035, -0.057885512709617615, -0.04760036990046501, -0.015481848269701004, -0.03347183018922806, -0.03908354789018631, -0.018982406705617905, 0.01590588502585888, -0.03843396157026291, -0.07066074758768082, -0.04471331089735031, 0.007583038415759802, 0.020281583070755005, 0.020498111844062805, 0.019848523661494255, 0.01817944273352623, 0.03379662334918976, 0.06485053896903992, -0.03145089000463486, 0.03561908006668091, 0.014642797410488129, -0.023349082097411156, -0.03524015098810196, 0.03538450598716736, -0.06820674240589142, 0.04366675391793251, 0.04247584193944931, -0.0007003371138125658, 0.009031078778207302, 0.019343288615345955, 0.022482965141534805, -0.01568935625255108, -0.04911607503890991, -0.01702461950480938, -0.0038772285915911198, -0.0020017686765640974, -0.03511384502053261, -0.055251073092222214, 0.04406372457742691, -0.06304612755775452, 0.011421923525631428, 0.0019183147232979536, 0.0016803579637780786, 0.029556255787611008, 0.025586551055312157, 0.06409268826246262, -0.019938744604587555, -0.020895082503557205, -0.01686222292482853, 0.009491203352808952, -0.018549347296357155, -0.029790829867124557, -0.04716730862855911, -0.019956788048148155, -0.058859895914793015, 0.006780075374990702, -0.015914907678961754, -0.07701227068901062, 0.010682114399969578, 0.00397196039557457, -0.06892850995063782, -0.0017198295099660754, 0.008918303065001965, 0.00879199430346489, 0.016095347702503204, -0.025351978838443756, 0.014742040075361729, 0.07997150719165802, 0.04615683853626251, -0.04651772230863571, -0.03623257949948311, 0.020732685923576355, 0.055864572525024414, 0.014236805029213428, -0.029899094253778458, 0.010664070956408978, 0.057560719549655914, -0.03785654902458191, 0.000004101334980077809, 0.06726845353841782, -0.03883093222975731, -0.08805526793003082, 0.057885512709617615, -0.03561908006668091, 0.023060375824570656, 0.056838955730199814, -0.020083097741007805, 0.04175407811999321, -0.001389396726153791, 0.019650038331747055, 0.012035422958433628, -0.015626201406121254, -0.03717087209224701, -0.056911129504442215, 0.023655831813812256, 0.022392744198441505, -0.0004446181992534548, 0.00009050250082509592, -0.014516488648951054, 0.022555140778422356, -0.03148697689175606, 0.019361332058906555, -0.06311830878257751, -0.023854317143559456, -0.07242906838655472, -0.0014627008931711316, 0.03182981535792351, 0.020389847457408905, 0.024034757167100906, 0.03731522336602211, 0.04023837298154831, -0.09837650507688522, 0.024521948769688606, -0.030278021469712257, -0.004612526390701532, 0.014182672835886478, 0.0025397087447345257, 0.06477836519479752, 0.022338612005114555, 0.04020228236913681, 0.03543863818049431, 0.006892851088196039, -0.03354400396347046, 0.028040550649166107, -0.04287281259894371, -0.006220707669854164, -0.020624421536922455, -0.030584771186113358, -0.04918825253844261, 0.03390488773584366, 0.030909564346075058, -0.013966143131256104, -0.06661886721849442, -0.03749566525220871, -0.012378261424601078, -0.0021979985758662224, -0.003335905261337757, -0.05240010470151901, 0.0032456847839057446, -0.05138963460922241, 0.006473325192928314, 0.013081981800496578, -0.024323463439941406, 0.0025600085500627756, 0.03293050453066826, 0.00869275163859129, 0.030097579583525658, 0.010158834978938103, -0.03453643247485161, 0.03237113729119301, -0.0040779695846140385, -0.06651060283184052, 0.04236757755279541, -0.007244711276143789, -0.025550464168190956, -0.07766186445951462, -0.04583204537630081, -0.024630213156342506, 0.0033043280709534883, -0.054384954273700714, -0.019361332058906555, -0.028960801661014557, -0.018639568239450455, 0.05102875083684921, -0.030115624889731407, 0.03552885726094246, -0.030043447390198708, 0.017538877204060555, 0.012856430374085903, 0.027914242818951607, -0.008282247930765152, 0.06701583415269852, -0.03693629801273346, -0.009662622585892677, -0.023782139644026756, -0.03136066719889641, 0.03435599058866501, -0.006229729857295752, 0.015572069212794304, -0.021977730095386505, -0.018675656989216805, 0.03668368235230446, -0.03679194673895836, -0.055756308138370514, 0.005620741285383701, 0.03184786066412926, 0.008679218590259552, 0.025676771998405457, 0.001223616418428719, 0.029574301093816757, -0.022988200187683105, -0.010194923728704453, 0.027697712182998657, 0.08408556133508682, -0.010474607348442078, -0.024594126269221306, -0.024720434099435806, -0.012441415339708328, -0.03173959255218506, 0.06322657316923141, 0.023673875257372856, -0.014011253602802753, -0.06824283301830292, -0.04731166362762451, 0.10184097290039062, 0.007555972319096327, -0.030674992129206657, -0.0006383105064742267, 0.01834184117615223, 0.024882830679416656, -0.0007426280062645674, -0.016762981191277504, 0.010050570592284203, 0.04305325448513031, 0.001466084155254066, -0.004247133154422045, -0.008056696504354477, 0.07556874305009842, 0.021995773538947105, 0.06282959878444672, -0.03524015098810196, -0.03857831284403801, -0.026037653908133507, -0.04456895962357521, 0.0028103706426918507, 0.013533084653317928, -0.03188394755125046, -0.03933616727590561, -0.09433461725711823, 0.022555140778422356, 0.016005128622055054, 0.06329874694347382, 0.019216980785131454, 0.015896862372756004, -0.03192003443837166, 0.018477171659469604, 0.017538877204060555, -0.01756594330072403, -0.03962486982345581, 0.057885512709617615, 0.012450437992811203, -0.018946317955851555, 0.07286212593317032, -0.01568935625255108, -0.026182007044553757, 0.007226666901260614, -0.004107291344553232, 0.007930387742817402, 0.023926492780447006, -0.0020198128186166286, 0.026777463033795357, -0.014624753035604954, -0.0025148983113467693, 0.027048124000430107, -0.03671976923942566, -0.030422374606132507, -0.03347183018922806, -0.001163845299743116, -0.03699043020606041, 0.055503688752651215, -0.055864572525024414, -0.04251192882657051, -0.027878154069185257, 0.03915572538971901, 0.011367791332304478, 0.029844962060451508, -0.007781523745507002, 0.008823570795357227, 0.04666207358241081, 0.04175407811999321, 0.003638144116848707, 0.011151261627674103, 0.04088795930147171, 0.0030517105478793383, 0.012143687345087528, -0.023186685517430305, -0.002320924075320363, 0.03372444584965706, -0.028473610058426857, -0.030620859935879707, 0.022248391062021255, -0.011250504292547703, -0.0010989992879331112, 0.04229540005326271, 0.061963483691215515, 0.013307533226907253, 0.03249744698405266, -0.014678885228931904, 0.01790878176689148, -0.026236139237880707, -0.023691920563578606, 0.020516155287623405, -0.021454449743032455, 0.026470713317394257, 0.021869463846087456, 0.030656946823000908, 0.03383271023631096, -0.005120017100125551, 0.0028667584992945194 ]
9,544
asyncclick.core
consume_value
null
def consume_value( self, ctx: Context, opts: t.Mapping[str, "Parameter"] ) -> t.Tuple[t.Any, ParameterSource]: value, source = super().consume_value(ctx, opts) # The parser will emit a sentinel value if the option can be # given as a flag without a value. This is different from None # to distinguish from the flag not being given at all. if value is _flag_needs_value: if self.prompt is not None and not ctx.resilient_parsing: value = self.prompt_for_value(ctx) source = ParameterSource.PROMPT else: value = self.flag_value source = ParameterSource.COMMANDLINE elif ( self.multiple and value is not None and any(v is _flag_needs_value for v in value) ): value = [self.flag_value if v is _flag_needs_value else v for v in value] source = ParameterSource.COMMANDLINE # The value wasn't set, or used the param's default, prompt if # prompting is enabled. elif ( source in {None, ParameterSource.DEFAULT} and self.prompt is not None and (self.required or self.prompt_required) and not ctx.resilient_parsing ): value = self.prompt_for_value(ctx) source = ParameterSource.PROMPT return value, source
(self, ctx: asyncclick.core.Context, opts: Mapping[str, asyncclick.core.Parameter]) -> Tuple[Any, asyncclick.core.ParameterSource]
[ 0.09387972205877304, -0.05894943326711655, 0.028943805024027824, -0.02548373118042946, 0.013666382990777493, 0.0035355929285287857, 0.05250527337193489, -0.014966199174523354, 0.05982818454504013, -0.05005209892988205, -0.032092656940221786, 0.03796929493546486, -0.006215320900082588, 0.026362480595707893, 0.011240668594837189, 0.0704830214381218, 0.015039428137242794, 0.03976340591907501, 0.02266440913081169, 0.05829037353396416, 0.062171515077352524, -0.010892829857766628, -0.029877476394176483, 0.029126878827810287, -0.013840301893651485, -0.043461475521326065, 0.06499083340167999, -0.05796084180474281, -0.0721672847867012, 0.013748765923082829, 0.01260456070303917, -0.027314458042383194, -0.005478452891111374, 0.02429375797510147, -0.03066468983888626, 0.01077383290976286, -0.04331501945853233, 0.12031542509794235, -0.014993660151958466, -0.027973519638180733, -0.05796084180474281, -0.030737919732928276, 0.02996901422739029, 0.013940991833806038, -0.06418531388044357, -0.007203913759440184, -0.01736445352435112, 0.0022243342828005552, -0.05272496119141579, -0.03593718633055687, 0.07246020436286926, 0.04990563914179802, -0.010682296939194202, -0.022426415234804153, -0.02317701280117035, -0.014096603728830814, 0.023561466485261917, 0.053896624594926834, -0.0025973450392484665, 0.04243626818060875, -0.0060230945236980915, 0.04642725735902786, -0.030628075823187828, -0.0255020372569561, 0.014352905564010143, -0.053384020924568176, 0.009666242636740208, -0.035735804587602615, -0.017996054142713547, 0.05916912108659744, -0.00614209147170186, -0.015771720558404922, -0.06034078821539879, 0.0031625821720808744, 0.01792282424867153, -0.05085761845111847, -0.016989152878522873, 0.020266156643629074, 0.00369807006791234, -0.06879875063896179, 0.017336992546916008, 0.04968595132231712, 0.008206237107515335, -0.04258272796869278, -0.011634275317192078, 0.016339246183633804, -0.03582734242081642, 0.0059544420801103115, 0.09117024391889572, 0.08113785088062286, 0.0025126738473773003, -0.033429089933633804, 0.01599140651524067, 0.017712291330099106, 0.0026270942762494087, 0.03443598747253418, 0.000911931274458766, -0.006521967705339193, -0.06649203598499298, 0.005730177741497755, -0.02401914820075035, 0.017593294382095337, -0.004892619792371988, -0.00119454984087497, 0.0461343415081501, -0.012375719845294952, 0.017547525465488434, 0.004087099805474281, 0.06557666510343552, 0.01221095398068428, -0.02184058167040348, -0.08706941455602646, -0.04811152443289757, -0.020376000553369522, -0.031671591103076935, 0.029071956872940063, -0.05162652209401131, 0.014380366541445255, -0.08201660215854645, 0.02035769261419773, -0.05250527337193489, 0.0520658977329731, 0.0077027869410812855, -0.028321359306573868, 0.01995493285357952, 0.004828544333577156, -0.0026202290318906307, -0.01734614558517933, -0.01159766037017107, 0.04078861325979233, -0.0022334877867251635, 0.009684549644589424, -0.002161402953788638, -0.032641876488924026, -0.025685111060738564, -0.006201590411365032, 0.019771859049797058, 0.01599140651524067, -0.010764678940176964, 0.011899730190634727, 0.06557666510343552, 0.03943387418985367, -0.02671031840145588, -0.06143922358751297, 0.017721444368362427, -0.029255028814077377, 0.07095900923013687, 0.0106365280225873, -0.004746161866933107, 0.029621174558997154, 0.024312064051628113, 0.0008495721267536283, -0.04203350841999054, 0.056203342974185944, 0.04353470727801323, 0.030628075823187828, 0.0012037034612149, -0.055251363664865494, 0.024165606126189232, -0.016742005944252014, 0.014224754646420479, -0.03743838146328926, 0.01246725581586361, 0.03093929961323738, 0.02564849518239498, 0.07974649965763092, -0.005396069958806038, 0.04272918775677681, 0.0628671944141388, -0.014069142751395702, 0.03903111442923546, -0.02482466772198677, 0.057704538106918335, -0.008581536822021008, 0.05953526869416237, 0.0662357285618782, -0.022609487175941467, -0.017263762652873993, 0.024476829916238785, -0.04452329874038696, -0.018801573663949966, 0.00721764424815774, -0.010352765209972858, -0.028156593441963196, 0.05005209892988205, 0.001857044524513185, 0.07487676292657852, -0.02563018910586834, -0.017721444368362427, 0.0026705742347985506, -0.010728064924478531, -0.0049200807698071, -0.0074052936397492886, 0.022316571325063705, -0.09966482222080231, -0.03432614728808403, 0.0216941237449646, 0.0044967252761125565, 0.04540205001831055, -0.05656948685646057, 0.003560765413567424, -0.0653935968875885, -0.02918180078268051, 0.0014165255706757307, -0.05927896499633789, 0.03458244726061821, 0.008247428573668003, -0.015286576934158802, -0.04609772562980652, -0.011652582325041294, -0.03414307162165642, -0.030866069719195366, 0.0317448191344738, 0.0009319548262283206, 0.007126107811927795, -0.05085761845111847, 0.03657793998718262, -0.013437542133033276, -0.04287564381957054, 0.04595126584172249, 0.10317981988191605, -0.06268411874771118, 0.0886804535984993, 0.03778621926903725, 0.13854947686195374, 0.006480776239186525, 0.013208701275289059, -0.060560476034879684, -0.028724119067192078, 0.053896624594926834, -0.013666382990777493, -0.01709899678826332, 0.021877197548747063, 0.030463309958577156, -0.03782283514738083, 0.013904377818107605, 0.06784676760435104, -0.02821151539683342, -0.0626475065946579, 0.007780592888593674, -0.011185746639966965, 0.003876565955579281, -0.0110575957223773, -0.0005709582474082708, -0.05217574164271355, 0.004606568720191717, 0.03932403400540352, 0.040752001106739044, 0.013419234193861485, 0.025007741525769234, 0.038848042488098145, 0.06956765800714493, 0.010206307284533978, 0.009519784711301327, -0.032879870384931564, -0.04474298655986786, -0.02795521356165409, -0.0005434973281808197, 0.02918180078268051, -0.005043655168265104, -0.011359665542840958, 0.02061399444937706, -0.029639482498168945, 0.07059286534786224, -0.006219897419214249, 0.011222361586987972, 0.027094770222902298, -0.06685817986726761, 0.015405573882162571, 0.014206447638571262, 0.019186027348041534, 0.012714404612779617, -0.01802351512014866, 0.016915924847126007, -0.0022895538713783026, 0.008535767905414104, 0.011359665542840958, -0.001063538365997374, 0.02251795120537281, -0.02998732030391693, 0.01896633952856064, -0.004796506837010384, 0.002693458227440715, 0.024623287841677666, -0.05085761845111847, -0.0019897723104804754, 0.020961832255125046, 0.019900010898709297, 0.004517320543527603, 0.03353893384337425, -0.003990986384451389, 0.05129699036478996, 0.07286296784877777, 0.009112447500228882, 0.060267556458711624, 0.03077453374862671, -0.0017426239792257547, -0.02520912140607834, -0.006984226405620575, -0.035351354628801346, 0.04939303547143936, -0.019460635259747505, -0.04031262546777725, 0.010746371932327747, -0.014700744301080704, 0.001580146956257522, 0.02956625260412693, -0.04880720376968384, 0.03756653517484665, 0.009057525545358658, 0.015671029686927795, 0.02808336354792118, 0.010801293887197971, -0.02400084026157856, 0.01274186559021473, -0.039287418127059937, 0.02941979467868805, 0.024037456139922142, -0.012998167425394058, -0.007917897775769234, -0.032330650836229324, -0.024238836020231247, 0.01471905130892992, -0.0259231049567461, -0.04122798889875412, 0.04086184501647949, -0.03811575099825859, 0.02918180078268051, 0.018014362081885338, 0.04628079757094383, -0.053933240473270416, 0.01885649561882019, -0.024312064051628113, 0.06499083340167999, 0.012851708568632603, 0.0002814744075294584, -0.027881983667612076, 0.057850997895002365, 0.04525559023022652, 0.013263622298836708, 0.03026193007826805, -0.03117729350924492, -0.0450725182890892, -0.014398673549294472, 0.04950287938117981, 0.004036754835397005, 0.01350161712616682, -0.01951555721461773, 0.12185323983430862, -0.027863675728440285, 0.031671591103076935, 0.002496655099093914, -0.0061375149525702, -0.009849315509200096, 0.06195182725787163, -0.011350512504577637, -0.02006477676331997, -0.03659624978899956, 0.0052404580637812614, -0.0431685596704483, 0.06788338720798492, -0.039836637675762177, 0.059864796698093414, 0.03414307162165642, -0.04986902326345444, -0.03324601799249649, -0.011698350310325623, -0.02103506214916706, 0.04082522913813591, 0.031012527644634247, 0.024458523839712143, -0.008998027071356773, 0.010261229239404202, -0.05697224661707878, -0.0013055377639830112, 0.010206307284533978, 0.00930009689182043, -0.006055132020264864, -0.0013478733599185944, -0.01180819422006607, 0.012778479605913162, 0.047269389033317566, -0.02346993051469326, 0.04961272329092026, -0.04452329874038696, -0.039800021797418594, -0.019863396883010864, -0.017565833404660225, -0.010334458202123642, 0.011094210669398308, -0.011853962205350399, 0.009684549644589424, 0.03542458266019821, -0.031232215464115143, 0.01762075535953045, -0.018664268776774406, 0.035076744854450226, 0.00477819936349988, -0.033593855798244476, -0.011533585377037525, 0.03538796678185463, -0.01669623702764511, 0.03238557279109955, 0.022170113399624825, -0.0011636563576757908, -0.05210251361131668, 0.027442609891295433, 0.04371777921915054, -0.03522320091724396, 0.062061671167612076, -0.0068286145105957985, -0.07542598247528076, 0.013858608901500702, 0.0014073719503358006, -0.03688916563987732, -0.025007741525769234, -0.0848725363612175, 0.06023094430565834, 0.01896633952856064, -0.01898464746773243, 0.0034257492516189814, -0.035333044826984406, -0.040605541318655014, 0.05891282111406326, 0.018115051090717316, -0.0018639096524566412, 0.016769466921687126, 0.009794393554329872, 0.022847482934594154, -0.04598788172006607, -0.040056321769952774, -0.009236021898686886, 0.035076744854450226, -0.062427815049886703, -0.029785940423607826, 0.004714123904705048, -0.04968595132231712, 0.015158426016569138, 0.034490909427404404, -0.005272496026009321, -0.02725953608751297, 0.006631811149418354, 0.004485283046960831, 0.06978734582662582, 0.021602587774395943, -0.05616672709584236, -0.02509927749633789, 0.07542598247528076, -0.025575267150998116, -0.03699900954961777, -0.024458523839712143, 0.0068698059767484665, 0.01736445352435112, -0.04565834999084473, -0.018783267587423325, -0.03782283514738083, -0.05993802845478058, 0.04554850608110428, -0.03339247405529022, -0.039946481585502625, 0.0867764949798584, -0.024348679929971695, -0.039946481585502625, -0.07381494343280792, -0.023945918306708336, 0.047122932970523834, 0.047525692731142044, 0.032477110624313354, -0.06378255784511566, 0.00498873321339488, -0.06425854563713074, -0.005643218290060759, 0.012110264040529728, 0.015762565657496452, -0.020138004794716835, -0.0029428948182612658, 0.019332485273480415, 0.01737360656261444, -0.01654062606394291, -0.004654625430703163, -0.015442188829183578, -0.0124855637550354, 0.03379523381590843, 0.008055201731622219, -0.0029337413143366575, 0.00009933128603734076, 0.025813261047005653, -0.010069002397358418, -0.019460635259747505, 0.023836076259613037, -0.019460635259747505, -0.003631706116721034, 0.03238557279109955, -0.05030839890241623, -0.021364593878388405, 0.007258835714310408, 0.05616672709584236, -0.020412614569067955, 0.07106885313987732, 0.047818608582019806, 0.0029291643295437098, 0.01761160045862198, -0.01234825886785984, -0.016897616907954216, 0.030811147764325142, -0.057850997895002365, -0.04122798889875412, 0.0017163072479888797, -0.07754962891340256, 0.03837205469608307, -0.009428247809410095, 0.04895365983247757, 0.05711870640516281, -0.010865368880331516, 0.018096743151545525, -0.007277142722159624, 0.03527812287211418, 0.027424301952123642, -0.0124855637550354, -0.022463029250502586, -0.027058156207203865, 0.014407827518880367, 0.019204333424568176, -0.021364593878388405, -0.01776721328496933, 0.008091816678643227, -0.07623150199651718, -0.041557520627975464, -0.003272425848990679, -0.05598365515470505, 0.032477110624313354, -0.03406984359025955, 0.00028590820147655904, 0.02863258309662342, -0.002775840926915407, -0.07784254103899002, 0.017263762652873993, 0.016320938244462013, -0.09373325854539871, -0.0013192682527005672, 0.036285024136304855, 0.00997746642678976, -0.02713138610124588, 0.05748485028743744, 0.042106740176677704, -0.018673423677682877, 0.009510630741715431, 0.0013753342209383845, 0.03203773498535156, -0.0303717739880085, -0.06865229457616806, -0.03026193007826805, -0.013620615005493164, 0.02048584446310997, -0.034930285066366196, -0.027845369651913643, 0.010627374984323978, 0.0903647243976593, 0.009675396606326103, -0.00025286927120760083, 0.039397262036800385, -0.028522739186882973, -0.08406701683998108, -0.007066609337925911, 0.0006401826394721866, -0.05982818454504013, -0.03990986570715904, 0.0007872129208408296, 0.03881143033504486, 0.008599843829870224, 0.0108470618724823, -0.04382762312889099, -0.030829455703496933, -0.008279466070234776, 0.013629768043756485, 0.028650889173150063, 0.02006477676331997, 0.02850443124771118, -0.015533724799752235, 0.05320094898343086, -0.07645118981599808, 0.0009479737491346896, -0.0008255438297055662, -0.04895365983247757, -0.039946481585502625, 0.05074777454137802, 0.029474716633558273, -0.0011247533839195967, -0.02590479701757431, 0.06004787236452103, 0.0132819302380085, -0.0026248060166835785, 0.008636457845568657, -0.003595091635361314, -0.00061443803133443, -0.01458174642175436, -0.006732501555234194, -0.02372623234987259, 0.007597520016133785, 0.01805097609758377, -0.09190253168344498, -0.03811575099825859, 0.02533727139234543, 0.013455849140882492, 0.02780875563621521, 0.00244173314422369, -0.016238555312156677, -0.002108769491314888, -0.04734262079000473, 0.0010023234644904733, -0.009135331958532333, -0.027552451938390732, -0.016320938244462013, -0.023543158546090126, -0.01030699722468853, 0.0529080331325531, -0.025135891512036324, 0.02766229584813118, -0.03158005326986313, -0.006462469231337309, -0.028833962976932526, 0.016723698005080223, -0.049576107412576675, -0.01525911595672369, -0.02374453842639923, -0.016513165086507797, -0.03269679844379425, -0.014600054360926151, -0.07425431907176971, -0.024513443931937218, 0.00313969817943871, 0.027168000116944313, 0.033978305757045746, 0.013812840916216373, 0.014005067758262157, 0.013977606780827045, 0.0020298194140195847, -0.03917757421731949, -0.02537388727068901, -0.009048371575772762, 0.013940991833806038, -0.021895503625273705, -0.0010492358123883605, 0.028943805024027824, -0.016458243131637573, 0.023707924410700798, -0.09138993173837662, 0.026820162311196327, 0.008247428573668003, 0.008631881326436996, 0.029108570888638496, 0.025044355541467667, -0.01350161712616682, -0.009739471599459648, 0.034802135080099106, 0.022444723173975945, 0.030719611793756485, 0.05645964294672012, 0.000047412988351425156, 0.015213347971439362, -0.036541327834129333, 0.030316852033138275, 0.10361918807029724, 0.01641247421503067, -0.06594281643629074, -0.019039569422602654, -0.10127586126327515, -0.0031877546571195126, 0.07029994577169418, 0.024183914065361023, -0.0016659622779116035, -0.06235458701848984, -0.019350793212652206, 0.0558738112449646, -0.0352415107190609, -0.0740712434053421, -0.011158285662531853, -0.000782064045779407, -0.024074070155620575, 0.035186588764190674, -0.021803967654705048, -0.05155329406261444, 0.035442888736724854, 0.04858751595020294, -0.017968593165278435, -0.04177720844745636, 0.01443528849631548, -0.01119490060955286, 0.011753272265195847, -0.02738768793642521, -0.024751439690589905, -0.045511893928050995, -0.009968312457203865, -0.010133078321814537, -0.040495697408914566, -0.04108153283596039, -0.04298548772931099, -0.03282494843006134, 0.04499929025769234, 0.04404731094837189, -0.024751439690589905, -0.023488236591219902, 0.017950285226106644, -0.010398534126579762, -0.016366705298423767, -0.01228418294340372, -0.018664268776774406, -0.021602587774395943, 0.010856215842068195, -0.009528937749564648, -0.02389099821448326, 0.047013089060783386, -0.07410786300897598, -0.027479223906993866, -0.009730317629873753, 0.003006970277056098, -0.03026193007826805, 0.012531331740319729, 0.057045478373765945, 0.03026193007826805, -0.0049566952511668205, -0.019332485273480415, 0.006741655059158802, -0.011588506400585175, -0.0017792385770007968, 0.035333044826984406, -0.07447400689125061, -0.026746932417154312, 0.07366848737001419, -0.025575267150998116, 0.008160469122231007, -0.007336641661822796, -0.01860019378364086, 0.01938740722835064, 0.02533727139234543, 0.011615967378020287, 0.0529080331325531, 0.048331212252378464, -0.027149692177772522, -0.00957470666617155, 0.0016465107910335064, 0.04093507304787636, -0.02019292674958706, -0.02088860422372818, -0.011496970430016518, 0.04639064148068428, 0.028559353202581406, -0.014957046136260033, -0.013346005231142044, -0.016092097386717796, -0.01898464746773243, -0.03976340591907501, 0.0352415107190609, 0.04975917935371399, 0.03659624978899956, -0.006247358396649361, -0.030463309958577156, 0.011908884160220623, -0.041850436478853226, 0.013803686946630478, -0.04639064148068428, 0.040495697408914566, 0.028541045263409615, 0.004892619792371988, 0.003354808548465371, 0.02374453842639923, -0.053237564861774445, 0.07319249957799911 ]
9,545
asyncclick.core
get_default
null
def get_default( self, ctx: Context, call: bool = True ) -> t.Optional[t.Union[t.Any, t.Callable[[], t.Any]]]: # If we're a non boolean flag our default is more complex because # we need to look at all flags in the same group to figure out # if we're the default one in which case we return the flag # value as default. if self.is_flag and not self.is_bool_flag: for param in ctx.command.params: if param.name == self.name and param.default: return t.cast(Option, param).flag_value return None return super().get_default(ctx, call=call)
(self, ctx: asyncclick.core.Context, call: bool = True) -> Union[Any, Callable[[], Any], NoneType]
[ 0.07072877883911133, -0.08606057614088058, 0.0495029091835022, 0.03771478310227394, -0.021587463095784187, -0.01622675731778145, 0.04722483828663826, -0.011426529847085476, 0.03923349827528, -0.046827077865600586, 0.005184426438063383, 0.0062692235223948956, -0.06219503656029701, -0.018251711502671242, 0.009234336204826832, 0.020014507696032524, -0.011697729118168354, 0.02979576215147972, 0.042307090014219284, 0.035509027540683746, 0.07709291577339172, -0.0193093903362751, -0.006192383822053671, 0.00922077614814043, 0.016244838014245033, 0.03135063871741295, 0.014789401553571224, -0.018983950838446617, -0.011426529847085476, 0.03402647003531456, 0.009989174082875252, -0.03677462413907051, -0.013162205927073956, 0.053842101246118546, -0.018965870141983032, -0.011950848624110222, -0.023793218657374382, 0.16749268770217896, -0.06374991685152054, -0.06262895464897156, 0.005469185765832663, -0.07246445119380951, 0.027210328727960587, -0.00751674035564065, -0.046827077865600586, 0.003957249689847231, 0.009143936447799206, 0.05785584822297096, 0.007069261744618416, -0.0411861315369606, 0.0739470049738884, -0.00025763933081179857, -0.005112106446176767, 0.003118791850283742, -0.07890091091394424, -0.035364389419555664, 0.028222806751728058, 0.04903283342719078, -0.025492733344435692, 0.05080466717481613, -0.0071913013234734535, 0.02587241306900978, 0.0029877121560275555, -0.04198164865374565, -0.006305383518338203, -0.03218231722712517, -0.016199637204408646, -0.007878339849412441, -0.000883657718077302, 0.06591951102018356, -0.027264568954706192, -0.0057358648627996445, -0.039884377270936966, 0.002876972546800971, 0.05583089590072632, -0.029850002378225327, -0.0012497766874730587, -0.08931496739387512, 0.01308988593518734, 0.015060600824654102, -0.022093702107667923, 0.031097518280148506, -0.02458873577415943, -0.01371364388614893, 0.01713075488805771, 0.002174114342778921, 0.05868752673268318, 0.002154904417693615, 0.07853931188583374, -0.02225642278790474, -0.013315885327756405, -0.02760808728635311, 0.04802035540342331, 0.035689827054739, 0.0270114503800869, -0.007349500898271799, 0.006644382607191801, 0.0005847734864801168, 0.007173221092671156, -0.05420370027422905, -0.05948304384946823, -0.004917747341096401, 0.018378272652626038, -0.06519631296396255, 0.023811297491192818, -0.03176647797226906, -0.0014475262723863125, 0.00984453409910202, 0.02135242335498333, -0.03541862592101097, -0.06939085572957993, -0.053697459399700165, -0.010251333005726337, 0.011064930818974972, -0.008361978456377983, 0.013424364849925041, -0.049466751515865326, -0.003966289572417736, -0.02194906212389469, 0.0595192052423954, -0.061688799411058426, 0.04953907057642937, 0.024245217442512512, -0.06436463445425034, 0.01024229358881712, 0.04010133445262909, 0.012113568373024464, 0.005455625709146261, 0.04378964751958847, 0.10659940540790558, 0.05434833839535713, 0.05687953159213066, -0.015386039391160011, -0.015268520452082157, -0.028222806751728058, -0.018658511340618134, 0.022925380617380142, 0.0672212615609169, -0.05709649249911308, 0.0685591846704483, 0.02892792411148548, -0.040752213448286057, 0.0518171451985836, -0.031097518280148506, -0.002533453283831477, 0.01427412312477827, 0.10030757635831833, -0.014319323003292084, -0.026505211368203163, 0.010956451296806335, 0.06469006836414337, 0.038944218307733536, -0.07304301112890244, 0.02305193990468979, 0.01693187654018402, 0.032652392983436584, -0.0026193330995738506, -0.03742550313472748, 0.0021153544075787067, -0.041366931051015854, -0.014328362420201302, 0.004623948130756617, -0.033556390553712845, -0.015413159504532814, 0.05011763051152229, 0.012981406413018703, -0.007046661805361509, 0.03923349827528, 0.06667886674404144, 0.04386196658015251, -0.023142339661717415, 0.046863239258527756, -0.007358540780842304, 0.031820718199014664, 0.08222762495279312, 0.1218588799238205, -0.01934554986655712, -0.004895147401839495, 0.022654181346297264, 0.0002994492242578417, 0.017365794628858566, 0.02587241306900978, 0.00998013373464346, -0.0019187349826097488, 0.006508782971650362, 0.059772323817014694, 0.0697886198759079, -0.028277046978473663, -0.0360514260828495, 0.025818172842264175, -0.04820115491747856, 0.012538447044789791, 0.004655587952584028, -0.005306466016918421, -0.052034102380275726, 0.02156938426196575, 0.016172517091035843, 0.005116626620292664, 0.02180442400276661, -0.04281332716345787, 0.0324535146355629, -0.04465748369693756, -0.016091158613562584, -0.0010384672787040472, -0.06888461858034134, 0.026722170412540436, 0.01583803817629814, 0.03608758747577667, -0.07608044147491455, 0.03010312095284462, -0.023323139175772667, -0.044982921332120895, -0.051130104809999466, 0.005853384733200073, -0.009098736569285393, -0.08678377419710159, 0.0376424603164196, 0.04397044703364372, -0.0543844997882843, 0.08577129244804382, 0.039775896817445755, -0.048526592552661896, 0.09314791858196259, 0.06555791199207306, 0.036449186503887177, 0.04172853007912636, 0.01427412312477827, -0.02406441792845726, -0.028873683884739876, -0.035780224949121475, -0.024769535288214684, -0.05709649249911308, 0.004031829535961151, -0.015548759140074253, -0.018965870141983032, -0.03395415097475052, 0.07383852452039719, -0.008908896706998348, -0.03406263142824173, -0.01686859503388405, 0.050262268632650375, 0.015738599002361298, 0.014789401553571224, 0.051202427595853806, -0.014355482533574104, -0.015937479212880135, 0.013939643278717995, -0.007381140720099211, 0.01979754865169525, -0.019490189850330353, 0.030048880726099014, 0.017935313284397125, -0.0010254723019897938, 0.025058815255761147, -0.014554361812770367, -0.034840069711208344, -0.06096560135483742, 0.03686502203345299, 0.003417111001908779, 0.013514764606952667, -0.009130376391112804, -0.007001461926847696, -0.0006898632273077965, -0.009180095978081226, -0.049394432455301285, -0.004682707600295544, 0.01760987378656864, -0.05557777360081673, -0.0027481529396027327, 0.03129639849066734, 0.06873998045921326, -0.0018000853015109897, -0.02357625775039196, -0.0530465804040432, -0.0518171451985836, -0.024570655077695847, -0.029813842847943306, 0.01633523777127266, 0.0011407319689169526, -0.052684981375932693, 0.02677641063928604, 0.00440246844664216, -0.035924866795539856, 0.041583891957998276, -0.08186602592468262, 0.003918829839676619, 0.004858987405896187, 0.007711099926382303, -0.0157657191157341, -0.013722684234380722, 0.005880504846572876, 0.0788285955786705, 0.016922835260629654, -0.021714022383093834, 0.006264703813940287, -0.01675107702612877, 0.03048280067741871, -0.019435949623584747, 0.023341219872236252, -0.009708934463560581, 0.005500825587660074, -0.0181793924421072, -0.01026037335395813, 0.01874891109764576, -0.012095488607883453, 0.04812883585691452, 0.005315505899488926, -0.031893037259578705, 0.07033101469278336, 0.024010177701711655, -0.05698801204562187, -0.014373562298715115, 0.020086826756596565, -0.028313206508755684, -0.03556326776742935, -0.011110130697488785, 0.02916296385228634, 0.02149706333875656, 0.019743308424949646, 0.05941072478890419, -0.03229079395532608, 0.03308631479740143, -0.049430590122938156, 0.007914499379694462, -0.01446396205574274, -0.032652392983436584, -0.01440972276031971, 0.0024543534964323044, -0.007566460408270359, 0.06729358434677124, -0.019670989364385605, -0.0020859744399785995, -0.0029741523321717978, 0.017971472814679146, -0.0005904234712943435, 0.010576772503554821, -0.002886012429371476, 0.005514385644346476, 0.01026037335395813, -0.04610387980937958, -0.022075623273849487, -0.006698622368276119, -0.056228652596473694, -0.006648902781307697, 0.04397044703364372, 0.01742907427251339, 0.06928238272666931, 0.01412948314100504, 0.07221133261919022, -0.03778710216283798, 0.023070020601153374, -0.040679894387722015, -0.03165799751877785, 0.004967466928064823, 0.046031560748815536, -0.02455257624387741, -0.029994642361998558, 0.002073544543236494, 0.0772375613451004, -0.010350773110985756, 0.03832950070500374, -0.05481841787695885, 0.0310432780534029, 0.06118255853652954, 0.01656123623251915, -0.01889355108141899, -0.022545700892806053, 0.03207383677363396, -0.005347146186977625, -0.02670408971607685, 0.02666793018579483, 0.010603892616927624, -0.0022690340410917997, -0.09604071080684662, 0.0213885847479105, 0.0315314382314682, -0.045742280781269073, -0.015340839512646198, -0.014536282047629356, -0.04711635783314705, -0.010468292981386185, 0.012945245951414108, -0.028982164338231087, 0.06570255011320114, -0.01564819924533367, -0.06252047419548035, -0.026378650218248367, 0.005821744911372662, 0.042379409074783325, -0.059049125760793686, 0.0027617127634584904, -0.014789401553571224, -0.04364500567317009, -0.02312425896525383, -0.0262159314006567, -0.004809267353266478, 0.0328151136636734, 0.005066906567662954, -0.021515144035220146, -0.0012904566247016191, 0.03561750799417496, 0.010405012406408787, 0.05254034325480461, 0.01689571514725685, -0.0337371900677681, 0.004962947219610214, -0.014635722152888775, 0.024154817685484886, -0.041583891957998276, 0.01564819924533367, -0.033068232238292694, -0.004171948879957199, -0.011272850446403027, 0.0033402713015675545, -0.05387825891375542, 0.024950334802269936, -0.007367580663412809, 0.08461418002843857, 0.007525780238211155, 0.019490189850330353, -0.03934197872877121, 0.02156938426196575, 0.02274458110332489, 0.04877971112728119, 0.048562753945589066, 0.01414756290614605, 0.023106180131435394, 0.017872033640742302, -0.02281690016388893, 0.007661379873752594, -0.004129009321331978, -0.03945045545697212, 0.023323139175772667, -0.03368295356631279, -0.000046012068196432665, 0.038835737854242325, -0.0017820053035393357, -0.030157361179590225, -0.02655944973230362, 0.02156938426196575, -0.0062692235223948956, -0.006364143453538418, -0.036340706050395966, 0.022166023030877113, -0.0004390038666315377, -0.026722170412540436, -0.055469296872615814, 0.06877613812685013, -0.0023662138264626265, -0.038763418793678284, 0.00920269638299942, 0.009428695775568485, 0.06823374330997467, 0.01734771393239498, -0.022093702107667923, 0.00009117664012592286, -0.08367402106523514, 0.005925704725086689, 0.0018791850889101624, -0.021930983290076256, 0.03333943337202072, -0.0032882913947105408, -0.024950334802269936, -0.023431619629263878, -0.06291823834180832, 0.03583446517586708, 0.04516372084617615, -0.017862994223833084, -0.07673131674528122, -0.04563380032777786, 0.013722684234380722, -0.02354009822010994, -0.03353831171989441, -0.03614182397723198, -0.037208542227745056, -0.018387312069535255, 0.012845806777477264, 0.0028362926095724106, -0.013912524096667767, -0.029958480969071388, -0.04610387980937958, -0.016018837690353394, 0.010811811313033104, -0.05051538720726967, -0.00933829601854086, -0.05131090432405472, -0.006472622975707054, 0.016434676945209503, -0.030880559235811234, 0.005952824372798204, -0.01878507062792778, 0.08410794287919998, 0.016091158613562584, -0.04624851793050766, -0.017293475568294525, 0.008746176958084106, 0.046754758805036545, -0.01682339608669281, 0.06573870778083801, 0.043391887098550797, 0.0004039739433210343, -0.014482041820883751, -0.044115085154771805, -0.006540422793477774, -0.0037380303256213665, -0.10146469622850418, -0.09177383780479431, -0.014536282047629356, -0.044910602271556854, 0.020574986934661865, 0.0075935800559818745, 0.003977589774876833, -0.022907299920916557, -0.01505156047642231, 0.012565567158162594, -0.009717974811792374, 0.06508783251047134, -0.02715608850121498, 0.03337559103965759, -0.0549992173910141, 0.0030668119434267282, 0.01583803817629814, -0.04538068175315857, -0.0063957832753658295, 0.005387825891375542, 0.03111559897661209, 0.013406285084784031, 0.011869489215314388, -0.00416742917150259, -0.015268520452082157, 0.020755786448717117, -0.03375527262687683, -0.027138009667396545, 0.09632998704910278, 0.005912144668400288, -0.035816386342048645, -0.025962812826037407, 0.062375836074352264, -0.14181914925575256, -0.007982298731803894, 0.02561929263174534, -0.033809512853622437, 0.0009932674001902342, -0.0008361978107132018, 0.04393428564071655, 0.008108858950436115, -0.0209004245698452, 0.09126760065555573, 0.08229994773864746, -0.031404878944158554, -0.03433382883667946, 0.011064930818974972, -0.003631810424849391, -0.00786477979272604, 0.026902969926595688, 0.017636993899941444, 0.006459062919020653, 0.050153788179159164, 0.009491975419223309, -0.017076514661312103, 0.030320079997181892, -0.021478984504938126, -0.010784692130982876, 0.0027481529396027327, -0.002813692670315504, -0.02749960869550705, -0.038148701190948486, 0.03677462413907051, 0.04288564622402191, -0.003469090908765793, -0.023395458236336708, -0.044982921332120895, -0.02259994111955166, -0.05069618672132492, 0.051093947142362595, 0.04371732473373413, -0.00656302273273468, 0.01327972486615181, -0.04917747154831886, 0.03561750799417496, -0.01442780252546072, -0.0479118749499321, 0.0372808612883091, -0.015386039391160011, -0.009112296625971794, -0.014816521666944027, 0.00656302273273468, 0.019002029672265053, -0.02323273941874504, 0.02448025532066822, -0.006490703206509352, 0.01828787289559841, -0.010395972989499569, 0.024624895304441452, -0.03368295356631279, 0.027300728484988213, 0.009528134949505329, -0.039631254971027374, 0.04689939692616463, -0.014699001796543598, -0.03843798115849495, -0.04111381247639656, 0.009329255670309067, 0.023901697248220444, 0.010549652390182018, 0.019417868927121162, -0.018839310854673386, 0.0018678851192817092, -0.014689961448311806, -0.0325077548623085, 0.001109657110646367, -0.028982164338231087, 0.00004791893661604263, 0.01885739155113697, -0.019978348165750504, -0.0007277181139215827, -0.003469090908765793, 0.014762281440198421, 0.005821744911372662, -0.027300728484988213, -0.042777169495821, 0.05398673936724663, -0.02429945580661297, -0.029470322653651237, -0.012565567158162594, -0.031784556806087494, 0.008371017873287201, 0.011263811029493809, -0.008936016820371151, 0.03389991074800491, 0.057277292013168335, 0.022581860423088074, 0.000252271827775985, 0.025438493117690086, 0.005021706689149141, -0.014662841334939003, -0.012140688486397266, 0.01546739973127842, -0.03243543580174446, 0.04787571355700493, 0.029181044548749924, 0.00022698815155308694, 0.05785584822297096, -0.007060221396386623, 0.000685343227814883, -0.03552710637450218, -0.01666971668601036, 0.05138322710990906, 0.030265841633081436, -0.008126938715577126, -0.07550188153982162, -0.02111738547682762, -0.014355482533574104, -0.013596124947071075, -0.018803151324391365, 0.0018328551668673754, 0.0057313451543450356, 0.033972229808568954, 0.007200341206043959, -0.03843798115849495, -0.09481127560138702, -0.013767884112894535, 0.01312604546546936, -0.006707662716507912, -0.060567840933799744, -0.045886918902397156, -0.06852301955223083, -0.04646547883749008, 0.047658756375312805, -0.005301946308463812, 0.00026498432271182537, -0.004504168406128883, -0.018432511016726494, -0.0012215267634019256, 0.0014757761964574456, -0.02746344916522503, 0.033972229808568954, 0.03353831171989441, 0.008384577929973602, -0.014454922638833523, 0.059989284723997116, -0.011923728510737419, 0.020430346950888634, 0.10341732949018478, -0.02885560505092144, -0.041403092443943024, 0.06863150000572205, -0.045886918902397156, 0.05134706571698189, 0.0031074918806552887, -0.05608401447534561, -0.04968370869755745, 0.04107765108346939, 0.02708376944065094, 0.01629907824099064, -0.02173210307955742, -0.06302671879529953, 0.012457087635993958, -0.015259480103850365, 0.0331224724650383, 0.0036928304471075535, -0.02410057745873928, -0.04183701053261757, 0.012267247773706913, 0.01163444947451353, 0.012131648138165474, -0.013424364849925041, -0.0021221344359219074, 0.01218588836491108, 0.021334344521164894, 0.0015345360152423382, 0.05257650092244148, 0.01927322894334793, -0.02965112216770649, -0.04805651307106018, 0.02677641063928604, -0.065015509724617, 0.04462132230401039, -0.014590522274374962, 0.021714022383093834, -0.03995669633150101, -0.03516550734639168, -0.005261266138404608, -0.009690854698419571, 0.057928167283535004, -0.015910359099507332, -0.022563781589269638, -0.04794803634285927, -0.022871140390634537, 0.02044842578470707, -0.004750507418066263, -0.0270114503800869, 0.04997298866510391, -0.024426016956567764, 0.03115175850689411, -0.029940402135252953, 0.06591951102018356, -0.029994642361998558, -0.05857904627919197, -0.024986494332551956, 0.0017560154665261507, 0.000703988189343363, -0.01293620653450489, 0.03865493834018707, 0.022581860423088074, 0.010621972382068634, -0.0006655682809650898, 0.017872033640742302, 0.006915581878274679, -0.013677484355866909, -0.018531952053308487, -0.02281690016388893, 0.04715251550078392, -0.010179013013839722, -0.0013401764445006847, 0.02496841549873352, -0.04183701053261757, 0.022310661152005196, 0.01723923534154892, 0.051961783319711685, -0.009275015443563461, -0.0005779935163445771, -0.03353831171989441, 0.051925625652074814, -0.0023639537394046783, 0.007489620242267847, -0.01961674913764, 0.03021160140633583 ]
9,546
asyncclick.core
get_error_hint
Get a stringified version of the param for use in error messages to indicate which param caused the error.
def get_error_hint(self, ctx: Context) -> str: """Get a stringified version of the param for use in error messages to indicate which param caused the error. """ hint_list = self.opts or [self.human_readable_name] return " / ".join(f"'{x}'" for x in hint_list)
(self, ctx: asyncclick.core.Context) -> str
[ 0.009105064906179905, -0.018329372629523277, 0.06646952778100967, 0.0329962782561779, 0.025466926395893097, -0.04118998348712921, 0.07311307638883591, -0.0022294207010418177, 0.08633203059434891, -0.1113390177488327, 0.02964043617248535, -0.0018663679948076606, -0.017460601404309273, -0.02655714936554432, 0.009386138059198856, 0.02335461974143982, -0.002772402949631214, 0.009411689825356007, 0.04183730483055115, -0.004684551618993282, 0.027715511620044708, 0.0295382272452116, -0.020748306065797806, -0.05934901162981987, -0.020015811547636986, 0.06626511365175247, 0.08319763839244843, -0.026540115475654602, 0.025892794132232666, -0.062006428837776184, -0.06732126325368881, -0.018073851242661476, 0.0077848732471466064, 0.0522625632584095, -0.06701464205980301, -0.010041975416243076, 0.004324692767113447, 0.03543224558234215, -0.05914459377527237, -0.0791093036532402, -0.026676392182707787, 0.008108532987535, -0.019862499088048935, -0.018176060169935226, -0.014675422571599483, -0.04095149785280228, -0.010723364539444447, 0.029998164623975754, -0.07134146243333817, -0.011498444713652134, 0.011600653640925884, -0.022230327129364014, -0.020220229402184486, -0.027221504598855972, -0.016404448077082634, -0.010663743130862713, -0.026318663731217384, -0.0147691136226058, 0.014700975269079208, 0.036283981055021286, 0.023388689383864403, 0.029998164623975754, 0.024938849732279778, 0.013065640814602375, -0.009352068416774273, -0.04459693282842636, -0.001898308051750064, 0.012341664172708988, -0.000940636673476547, 0.01606375351548195, 0.0322808213531971, -0.039282094687223434, -0.06370989978313446, -0.0016182996332645416, 0.02975967898964882, -0.058020301163196564, -0.04466507211327553, 0.018806345760822296, 0.031139492988586426, -0.0066563221625983715, 0.014530627988278866, 0.0257735513150692, -0.007929668761789799, -0.04936665669083595, 0.04183730483055115, -0.056964147835969925, -0.06370989978313446, -0.03590921685099602, -0.003098192159086466, -0.002917197998613119, -0.026625288650393486, -0.040849290788173676, -0.015595298260450363, 0.04561901465058327, -0.0225710216909647, 0.014505075290799141, 0.008108532987535, -0.026114245876669884, 0.01800571382045746, -0.0025914087891578674, 0.03478492423892021, -0.01884041540324688, 0.03095211088657379, 0.008994339033961296, 0.049502935260534286, -0.04868526756763458, 0.014189932495355606, -0.02739185094833374, 0.033660631626844406, -0.0001459929917473346, -0.02640383690595627, -0.06112062186002731, -0.03451237082481384, -0.0013531966833397746, 0.030866937711834908, 0.05348906293511391, -0.02361014112830162, -0.01597006246447563, 0.013082675635814667, 0.002384862629696727, 0.02839690074324608, -0.030611416324973106, -0.10602418333292007, -0.08762666583061218, 0.016310757026076317, 0.029674505814909935, -0.0327918604016304, 0.021106034517288208, -0.023473862558603287, -0.03737420588731766, 0.026165351271629333, 0.005459632258862257, -0.036283981055021286, -0.03897546976804733, 0.01262273732572794, 0.014189932495355606, 0.02166818082332611, 0.03543224558234215, 0.03584107756614685, 0.047049932181835175, 0.01503315195441246, 0.04633447527885437, -0.022417709231376648, -0.046777378767728806, 0.025943899527192116, -0.011796552687883377, 0.028209518641233444, 0.004188415128737688, 0.03795338422060013, 0.014718009158968925, 0.021872596815228462, 0.024325599893927574, -0.008274621330201626, -0.035125620663166046, 0.00862809270620346, 0.008117050863802433, -0.004595119506120682, -0.05529474467039108, 0.028260622173547745, -0.04923037812113762, 0.00611121067777276, -0.12489866465330124, 0.016804764047265053, -0.014317693188786507, 0.04674330726265907, 0.017665019258856773, -0.0016438517486676574, 0.015569746494293213, 0.01206910889595747, 0.039963483810424805, -0.016711072996258736, -0.026199419051408768, 0.0006100563914515078, 0.01514387782663107, 0.05546509101986885, 0.08176671713590622, -0.04994583874940872, 0.0383281484246254, -0.016762178391218185, -0.030713623389601707, 0.014096241444349289, 0.021651146933436394, 0.0012520529562607408, -0.0041415696032345295, 0.011140715330839157, -0.017596879974007607, 0.017647983506321907, 0.04340450093150139, -0.036965370178222656, 0.003306867554783821, -0.006933136377483606, 0.01611485704779625, 0.02098679170012474, 0.038907330483198166, -0.05301209166646004, -0.000635076139587909, 0.02492181397974491, -0.023967869579792023, 0.08537808060646057, 0.01062967348843813, -0.03785117715597153, 0.066196970641613, -0.02671046182513237, 0.020339472219347954, 0.016123374924063683, 0.049400728195905685, 0.04088335856795311, -0.0064731985330581665, -0.07318121194839478, 0.010408221744000912, -0.0032600220292806625, -0.00024620513431727886, -0.009726832620799541, 0.033132556825876236, 0.014249554835259914, -0.0005850366433151066, 0.04933258891105652, 0.04517611116170883, -0.052705466747283936, 0.07038751989603043, 0.07393074035644531, -0.07420329749584198, 0.10718253999948502, -0.018295302987098694, 0.051410824060440063, 0.003385653253644705, 0.02991299144923687, -0.003792357398197055, -0.027834754437208176, -0.00021359958918765187, -0.0010545564582571387, -0.024104148149490356, 0.01982842944562435, 0.0668102279305458, -0.0645616427063942, 0.052398838102817535, 0.0005182285094633698, -0.06258560717105865, 0.007120518479496241, -0.045005764812231064, -0.04330229386687279, 0.029947061091661453, -0.003568776650354266, 0.04439251497387886, 0.05110419914126396, -0.051649309694767, 0.024206355214118958, 0.0320764034986496, -0.020135054364800453, 0.009888662956655025, 0.008823991753160954, 0.03642025962471962, -0.01222242135554552, -0.021395625546574593, 0.0061836084350943565, -0.02938491478562355, -0.031054319813847542, 0.0032472461462020874, 0.014275106601417065, 0.020118020474910736, -0.06970612704753876, 0.04204172268509865, -0.034137606620788574, 0.03982720524072647, -0.014573214575648308, 0.006873514968901873, -0.025041058659553528, 0.022077014669775963, -0.013338196091353893, 0.009454277344048023, 0.03359249234199524, 0.04933258891105652, -0.03992941603064537, 0.024223390966653824, 0.004620671272277832, -0.0013574552722275257, -0.008031876757740974, 0.08435600250959396, -0.024070078507065773, -0.021378589794039726, 0.013891825452446938, -0.05791809409856796, 0.008368312381207943, 0.06790044903755188, -0.04895782470703125, 0.0027149105444550514, 0.04953700304031372, -0.02209404855966568, -0.01209466066211462, 0.040167901664972305, -0.029623400419950485, -0.008823991753160954, -0.0098631102591753, 0.016992146149277687, -0.014573214575648308, -0.016157444566488266, 0.06769602745771408, -0.03333697468042374, -0.006141021382063627, -0.030560310930013657, 0.0009523480548523366, 0.02701708674430847, -0.03573887050151825, -0.0014745690859854221, -0.014522110112011433, -0.04125812277197838, -0.016327792778611183, -0.09505381435155869, 0.019845465198159218, -0.02906125597655773, -0.03672688454389572, 0.011711379513144493, 0.022025911137461662, -0.003470826894044876, 0.030918041244149208, 0.04228020831942558, -0.0077848732471466064, 0.017647983506321907, -0.015552711673080921, 0.09076105803251266, -0.019112970679998398, -0.007789131719619036, 0.01694956049323082, -0.028056206181645393, -0.03285999968647957, -0.006673356983810663, -0.024989953264594078, 0.0051870765164494514, 0.0320764034986496, 0.002616961020976305, -0.0330473817884922, -0.02991299144923687, -0.031565360724925995, -0.06633324921131134, -0.011464376002550125, -0.008078722283244133, 0.037067580968141556, 0.007337711285799742, -0.018482685089111328, -0.0021186950616538525, 0.06531117111444473, -0.055431023240089417, -0.0163959302008152, 0.053386855870485306, 0.0005286090890876949, 0.021583007648587227, -0.006741495802998543, -0.024206355214118958, 0.03952058032155037, 0.019811395555734634, -0.006907584145665169, -0.03740827366709709, -0.03979313746094704, -0.010978885926306248, 0.05290988087654114, 0.03526189923286438, -0.03475085645914078, 0.013397817499935627, 0.015569746494293213, 0.057066354900598526, 0.05427265912294388, -0.07713327556848526, 0.06302851438522339, 0.03231488913297653, -0.011345132254064083, 0.035023413598537445, 0.05127454921603203, -0.014947978779673576, 0.026591219007968903, 0.02739185094833374, -0.0455508753657341, -0.010646708309650421, 0.013593717478215694, -0.026267558336257935, -0.04633447527885437, 0.03505748137831688, -0.0013361618621274829, 0.03556852415204048, -0.037237927317619324, 0.015305708162486553, 0.001191366696730256, -0.004062783904373646, 0.045039836317300797, 0.04176916554570198, -0.062108639627695084, -0.023848626762628555, -0.06486826390028, -0.02047574892640114, 0.04217800125479698, 0.045891571789979935, -0.0064306119456887245, -0.03710164874792099, 0.03563666343688965, -0.002832024358212948, -0.021480798721313477, 0.004273588769137859, 0.028635386377573013, -0.036283981055021286, -0.06970612704753876, 0.008683455176651478, 0.005681083537638187, -0.039248026907444, 0.0025168817956000566, 0.011362167075276375, -0.0025253992062062025, 0.0160893052816391, 0.004335339646786451, 0.09335033595561981, -0.045653086155653, 0.004311916884034872, -0.057849954813718796, -0.007192916236817837, 0.020015811547636986, 0.0017960997065529227, 0.006805376149713993, 0.0008038264932110906, -0.08953455835580826, 0.008036135695874691, -0.022315500304102898, 0.0070055341348052025, 0.00751657597720623, -0.04885561391711235, 0.021003825590014458, 0.06125690042972565, 0.00045860695536248386, 0.023831592872738838, -0.0327407568693161, 0.00841089989989996, 0.0322297140955925, 0.018499720841646194, -0.05934901162981987, 0.03435905650258064, 0.006681873928755522, -0.030560310930013657, -0.021054930984973907, -0.020169124007225037, 0.014649870805442333, 0.022996889427304268, 0.028669456019997597, -0.007669888902455568, 0.0386347770690918, 0.0386347770690918, 0.029827818274497986, 0.0716821551322937, 0.02749405987560749, -0.032042331993579865, -0.07754210382699966, -0.0027511094231158495, -0.038123734295368195, -0.03122466616332531, 0.04364298656582832, 0.014411384239792824, 0.0008373635937459767, -0.033609528094530106, 0.019027797505259514, -0.0524669773876667, -0.08190299570560455, -0.004884709604084492, -0.0642550140619278, 0.02366124466061592, -0.004201191011816263, 0.08442413806915283, -0.009428724646568298, -0.00788282323628664, 0.020015811547636986, -0.006234712433069944, 0.06483419239521027, 0.026148315519094467, -0.04439251497387886, -0.0072738309390842915, -0.02413821779191494, -0.009667211212217808, -0.011523997411131859, 0.04255276545882225, -0.007137553300708532, 0.04071301221847534, 0.0011636852286756039, 0.061359111219644547, 0.030253686010837555, 0.0294871237128973, 0.0049230377189815044, -0.0658903494477272, 0.057747747749090195, 0.037748970091342926, 0.028311727568507195, -0.014292141422629356, -0.056589383631944656, 0.02943601831793785, -0.06524302810430527, -0.015186464414000511, -0.020816443488001823, 0.02696598321199417, 0.005727929063141346, -0.03856663778424263, 0.0034772148355841637, -0.00732067646458745, 0.007759321015328169, -0.018533790484070778, -0.005514994729310274, 0.05679380148649216, 0.02083347924053669, -0.08503738790750504, 0.015237568877637386, -0.06077992916107178, 0.05178558826446533, -0.06769602745771408, 0.025569135323166847, 0.045687153935432434, -0.0035836820024996996, 0.016276687383651733, -0.0034112052526324987, 0.002014357130974531, 0.06769602745771408, 0.022213291376829147, 0.021395625546574593, -0.03699944168329239, -0.005757739767432213, 0.03519375994801521, 0.05614648014307022, 0.03291110321879387, -0.031616464257240295, 0.027119295671582222, -0.028533177450299263, -0.06503861397504807, 0.048037946224212646, -0.017903504893183708, 0.011464376002550125, -0.0259779691696167, -0.04282531887292862, 0.0716821551322937, 0.004497169516980648, 0.006745754275470972, 0.08926200121641159, 0.010748916305601597, -0.015126843005418777, 0.027204468846321106, -0.07372632622718811, -0.028243588283658028, -0.03328586742281914, 0.006051588803529739, 0.0018301691161468625, 0.012171316891908646, 0.012810119427740574, -0.029895957559347153, 0.03291110321879387, -0.024478912353515625, -0.009726832620799541, 0.033609528094530106, -0.03095211088657379, -0.061427246779203415, -0.0005536288372240961, 0.002212385879829526, -0.02461518906056881, -0.016762178391218185, -0.04091743007302284, 0.0007995677879080176, -0.00372634781524539, 0.03246820345520973, 0.010297495871782303, 0.012341664172708988, -0.021225277334451675, -0.020867548882961273, 0.05614648014307022, -0.029163463041186333, -0.013082675635814667, 0.006187866907566786, -0.028311727568507195, 0.011430306360125542, -0.056759729981422424, -0.023099098354578018, -0.0004673904913943261, 0.0074569545686244965, 0.04507390409708023, 0.009249860420823097, -0.04088335856795311, 0.0017056026263162494, 0.0519559383392334, 0.036965370178222656, 0.003519801888614893, 0.04923037812113762, -0.004684551618993282, 0.052603255957365036, 0.0036326569970697165, 0.009224307723343372, 0.009616106748580933, 0.04548273980617523, 0.02676156535744667, -0.019555874168872833, -0.008249069564044476, 0.0096842460334301, -0.08060836046934128, -0.06691243499517441, 0.020390575751662254, 0.007359004579484463, 0.0712733268737793, 0.0387369841337204, -0.007035344839096069, -0.04943479597568512, -0.008389606140553951, 0.009965319186449051, -0.01340633537620306, 0.0160382017493248, 0.03333697468042374, 0.04848084971308708, 0.0321275070309639, 0.016659969463944435, 0.002064396860077977, 0.006200642790645361, -0.07025124132633209, 0.06694649904966354, -0.0070268274284899235, 0.001540578668937087, 0.0065711485221982, -0.008129826746881008, -0.05011618509888649, -0.0035134137142449617, 0.030134443193674088, 0.03388208523392677, 0.04660702869296074, 0.016310757026076317, -0.041428472846746445, 0.04350670799612999, -0.0034239813685417175, 0.01878931000828743, 0.003798745572566986, 0.026829704642295837, -0.02807324007153511, -0.0526713952422142, -0.09246452897787094, -0.09335033595561981, -0.02240067347884178, 0.029776714742183685, 0.03614770248532295, -0.0729086622595787, -0.039384301751852036, 0.039690930396318436, 0.022281430661678314, -0.036386191844940186, -0.05951935797929764, 0.03291110321879387, -0.030611416324973106, 0.015024635009467602, -0.07372632622718811, 0.00863660965114832, -0.009522415697574615, 0.047663185745477676, -0.07652002573013306, -0.03941837325692177, 0.04234834760427475, -0.0017449954757466912, 0.004488652106374502, 0.053284645080566406, -0.0038754018023610115, 0.026625288650393486, 0.05372754856944084, 0.05519253760576248, -0.03768083080649376, 0.008304432965815067, -0.027459990233182907, -0.05573764815926552, -0.02335461974143982, -0.022008875384926796, 0.0014362409710884094, -0.030049270018935204, -0.016608865931630135, 0.008108532987535, -0.05263732746243477, -0.044358447194099426, 0.032042331993579865, -0.022434743121266365, -0.027834754437208176, -0.02970857545733452, -0.019760290160775185, -0.03001520037651062, -0.04364298656582832, -0.00039898540126159787, 0.016004132106900215, -0.0072738309390842915, -0.026795634999871254, -0.02734074741601944, 0.036283981055021286, -0.046198196709156036, -0.028107309713959694, 0.03587514907121658, 0.017801295965909958, 0.06752568483352661, -0.008696231059730053, 0.04429030790925026, 0.02330351434648037, 0.015978580340743065, -0.07413516193628311, -0.0259779691696167, -0.006051588803529739, 0.024172287434339523, -0.007776355836540461, -0.0704556554555893, -0.0460619181394577, -0.018653033301234245, 0.04330229386687279, -0.021855562925338745, 0.012086143717169762, -0.0040585254319012165, -0.020867548882961273, -0.01957290805876255, -0.007652854081243277, -0.006673356983810663, 0.04354077950119972, -0.05117233842611313, -0.0592808723449707, -0.006064365152269602, 0.021753353998064995, -0.025807620957493782, 0.03432498872280121, -0.042689040303230286, -0.019436631351709366, -0.052875813096761703, 0.017716122791171074, -0.0017364781815558672, 0.004373667761683464, -0.0001772676914697513, 0.032979242503643036, 0.0025168817956000566, 0.026897843927145004, 0.007418626453727484, 0.0047782426699995995, 0.04739062860608101, -0.006192125380039215, -0.05747519060969353, 0.02120824344456196, -0.032979242503643036, 0.001973899779841304, 0.00020308596140239388, -0.05566950887441635, 0.027408886700868607, 0.05059315636754036, 0.031139492988586426, 0.023286480456590652, 0.01793757453560829, 0.008909165859222412, 0.015237568877637386, 0.010348600335419178, 0.07604304701089859, -0.05032060295343399, -0.0228265430778265, 0.05079757422208786, 0.02958933264017105, 0.044358447194099426, -0.00689906720072031, -0.017043251544237137, -0.03788524866104126, 0.06749161332845688, 0.02088458277285099, -0.028533177450299263, 0.02613128162920475, 0.037748970091342926, -0.0589742474257946, 0.01831233873963356, 0.019794359803199768, -0.008010582998394966, 0.031139492988586426, -0.029010150581598282, 0.002510493854060769, 0.0515471026301384, 0.00878992211073637, -0.004190544597804546, 0.035398174077272415, -0.042212069034576416, 0.024223390966653824 ]
9,547
asyncclick.core
get_help_record
null
def get_help_record(self, ctx: Context) -> t.Optional[t.Tuple[str, str]]: if self.hidden: return None any_prefix_is_slash = False def _write_opts(opts: t.Sequence[str]) -> str: nonlocal any_prefix_is_slash rv, any_slashes = join_options(opts) if any_slashes: any_prefix_is_slash = True if not self.is_flag and not self.count: rv += f" {self.make_metavar()}" return rv rv = [_write_opts(self.opts)] if self.secondary_opts: rv.append(_write_opts(self.secondary_opts)) help = self.help or "" extra = [] if self.show_envvar: envvar = self.envvar if envvar is None: if ( self.allow_from_autoenv and ctx.auto_envvar_prefix is not None and self.name is not None ): envvar = f"{ctx.auto_envvar_prefix}_{self.name.upper()}" if envvar is not None: var_str = ( envvar if isinstance(envvar, str) else ", ".join(str(d) for d in envvar) ) extra.append(_("env var: {var}").format(var=var_str)) # Temporarily enable resilient parsing to avoid type casting # failing for the default. Might be possible to extend this to # help formatting in general. resilient = ctx.resilient_parsing ctx.resilient_parsing = True try: default_value = self.get_default(ctx, call=False) finally: ctx.resilient_parsing = resilient show_default = False show_default_is_str = False if self.show_default is not None: if isinstance(self.show_default, str): show_default_is_str = show_default = True else: show_default = self.show_default elif ctx.show_default is not None: show_default = ctx.show_default if show_default_is_str or (show_default and (default_value is not None)): if show_default_is_str: default_string = f"({self.show_default})" elif isinstance(default_value, (list, tuple)): default_string = ", ".join(str(d) for d in default_value) elif inspect.isfunction(default_value): default_string = _("(dynamic)") elif self.is_bool_flag and self.secondary_opts: # For boolean flags that have distinct True/False opts, # use the opt without prefix instead of the value. default_string = split_opt( (self.opts if self.default else self.secondary_opts)[0] )[1] elif self.is_bool_flag and not self.secondary_opts and not default_value: default_string = "" else: default_string = str(default_value) if default_string: extra.append(_("default: {default}").format(default=default_string)) if ( isinstance(self.type, types._NumberRangeBase) # skip count with default range type and not (self.count and self.type.min == 0 and self.type.max is None) ): range_str = self.type._describe_range() if range_str: extra.append(range_str) if self.required: extra.append(_("required")) if extra: extra_str = "; ".join(extra) help = f"{help} [{extra_str}]" if help else f"[{extra_str}]" return ("; " if any_prefix_is_slash else " / ").join(rv), help
(self, ctx: asyncclick.core.Context) -> Optional[Tuple[str, str]]
[ 0.05260298028588295, -0.0004216924717184156, 0.027271131053566933, -0.026685306802392006, 0.0620165690779686, -0.006418816279619932, 0.043553005903959274, 0.008358096703886986, -0.007635916583240032, -0.07377345860004425, -0.012716427445411682, 0.04985566809773445, -0.03759375959634781, -0.037795767188072205, 0.04026027023792267, 0.036927130073308945, -0.020049331709742546, -0.01983722299337387, 0.059026848524808884, 0.03759375959634781, 0.07316743582487106, -0.044441841542720795, -0.009085326455533504, -0.010999356396496296, 0.009746904484927654, 0.0027018620166927576, 0.00033331383019685745, -0.05248177424073219, -0.015130426734685898, 0.029493222013115883, 0.010817548260092735, -0.05494627729058266, 0.0006748342420905828, 0.041371315717697144, 0.03494744747877121, -0.04585590213537216, -0.04735076427459717, 0.0973680391907692, -0.016544485464692116, -0.04670433700084686, 0.04080568999052048, -0.06254179030656815, 0.005802690517157316, -0.04189653694629669, -0.06128934025764465, 0.00975195411592722, 0.032886963337659836, 0.0609661266207695, -0.0269883181899786, -0.07094533741474152, 0.10641801357269287, 0.011373070999979973, -0.04335099831223488, -0.01153467781841755, -0.04735076427459717, -0.04904763400554657, 0.006130954250693321, 0.021857306361198425, -0.012716427445411682, 0.021291682496666908, 0.0056360336020588875, 0.06904646009206772, -0.018877683207392693, 0.0027220628689974546, -0.042219750583171844, 0.0026008577551692724, 0.049290042370557785, -0.0004273739759810269, 0.00005855086419614963, 0.011453874409198761, -0.02347337268292904, -0.043553005903959274, -0.0573703795671463, -0.008726761676371098, 0.03407881408929825, -0.06221858039498329, -0.04860321432352066, -0.05627953261137009, 0.025190444663167, -0.0336545966565609, -0.009863059036433697, 0.015615247189998627, -0.05288579314947128, -0.04864361509680748, 0.020241238176822662, 0.011120560579001904, 0.023614779114723206, 0.028624586760997772, 0.07736920565366745, -0.005651184357702732, -0.02747313864529133, -0.0328061580657959, 0.03587668761610985, 0.07987411320209503, -0.008802514523267746, -0.07009690254926682, 0.006211757659912109, -0.030624469742178917, 0.009595397859811783, -0.017079807817935944, -0.04411862790584564, -0.04832040145993233, 0.020675556734204292, 0.0038634100928902626, -0.01586775854229927, -0.030745673924684525, -0.01860497146844864, 0.04066428542137146, 0.03929062932729721, -0.030422460287809372, -0.059956084936857224, -0.0766419768333435, -0.03044266253709793, -0.017009105533361435, -0.01674649491906166, 0.05219896510243416, -0.010474134236574173, 0.01980692148208618, 0.05223936587572098, -0.016726292669773102, -0.06811722368001938, -0.028907397761940956, -0.07672277837991714, -0.08589395880699158, -0.005484527442604303, 0.022907748818397522, -0.025311648845672607, -0.0026968116872012615, 0.024665221571922302, 0.04476505517959595, 0.02781655266880989, 0.0635114312171936, -0.038664404302835464, -0.01588795892894268, -0.004078044090420008, -0.013817372731864452, 0.002840742701664567, 0.08346986025571823, -0.006550121586769819, 0.07906607538461685, 0.00015126954531297088, -0.03329097852110863, -0.008893419057130814, -0.03147290274500847, -0.06840003281831741, -0.026422696188092232, 0.06783441454172134, 0.009570146910846233, -0.02961442805826664, 0.035593874752521515, 0.03571508079767227, 0.01641318015754223, -0.02515004202723503, -0.023230962455272675, 0.04193693771958351, 0.03852299600839615, -0.03407881408929825, -0.06763240694999695, 0.03838159143924713, -0.027978159487247467, 0.015534443780779839, -0.0922774225473404, 0.028826594352722168, -0.005499678198248148, 0.041371315717697144, 0.0823386162519455, 0.017938343808054924, -0.01980692148208618, 0.07490470260381699, 0.06844043731689453, -0.037391748279333115, 0.025412652641534805, -0.0004257957625668496, 0.02080686204135418, 0.0066511258482933044, 0.11845771223306656, -0.0072723012417554855, -0.024544017389416695, -0.009762054309248924, -0.055915918201208115, -0.025554059073328972, -0.006701627746224403, -0.0423409566283226, -0.005158788990229368, 0.03710893914103508, -0.0068531339056789875, 0.06290540844202042, -0.022382527589797974, -0.005156263709068298, 0.04541148245334625, -0.04553268849849701, -0.026745907962322235, -0.010948853567242622, 0.026766110211610794, -0.051027316600084305, 0.02070585824549198, 0.05530989170074463, -0.05425944924354553, 0.06500629335641861, -0.051875751465559006, 0.014675908721983433, -0.026624703779816628, -0.032947566360235214, -0.011181163601577282, 0.00320435781031847, 0.06565272063016891, 0.014332493767142296, 0.009181280620396137, -0.08185379207134247, 0.02868518978357315, -0.04034107178449631, -0.03054366633296013, -0.022342126816511154, 0.00652487063780427, 0.02080686204135418, -0.047108352184295654, 0.027614545077085495, 0.04682553932070732, -0.08710601180791855, 0.06415785849094391, 0.06468307971954346, -0.058138009160757065, 0.07777322083711624, 0.06908686459064484, 0.012130603194236755, 0.02919021062552929, 0.040926896035671234, -0.012898234650492668, -0.0006666276603937149, -0.021958310157060623, 0.001888778293505311, -0.035977691411972046, -0.01773633435368538, 0.031977925449609756, -0.018817080184817314, 0.01946350745856762, 0.040926896035671234, 0.030685072764754295, 0.029937641695141792, -0.0004557813808787614, 0.01392847765237093, 0.03145270422101021, 0.0260388795286417, -0.023150159046053886, 0.0017145461170002818, -0.04242175817489624, 0.022281523793935776, -0.024119799956679344, 0.028462979942560196, -0.01992812566459179, 0.014958719722926617, 0.024059196934103966, 0.011979096569120884, -0.0134941590949893, 0.0012732840841636062, 0.013968879356980324, -0.020988669246435165, -0.005651184357702732, -0.016695991158485413, -0.04553268849849701, -0.048441607505083084, 0.007413707207888365, -0.007322803605347872, 0.008403548039495945, -0.002366023138165474, 0.03189712390303612, 0.028907397761940956, -0.07454109191894531, -0.005737037863582373, 0.015463740564882755, -0.008948970586061478, 0.04957285523414612, -0.07942969352006912, -0.017867641523480415, -0.045734696090221405, 0.004610841162502766, 0.036866527050733566, -0.03985625132918358, -0.009580247104167938, 0.007842974737286568, -0.0529261939227581, -0.015413238666951656, 0.01859487034380436, 0.010797347873449326, 0.015069824643433094, 0.026301490142941475, -0.012009398080408573, 0.004984556697309017, -0.011272067204117775, 0.02347337268292904, 0.015797054395079613, 0.0707029327750206, 0.042583364993333817, -0.007519761566072702, -0.008656058460474014, -0.005550180096179247, 0.011302368715405464, -0.025008637458086014, 0.002997299190610647, -0.02214011736214161, -0.02789735607802868, -0.01761513017117977, 0.031573910266160965, 0.029311414808034897, -0.007671268191188574, -0.005206765606999397, 0.037836167961359024, -0.0688040554523468, 0.11522557586431503, -0.043593406677246094, -0.06407705694437027, 0.03050326369702816, 0.03985625132918358, 0.01347395870834589, -0.021069472655653954, 0.03264455497264862, -0.002704387065023184, -0.00184963911306113, 0.017948443070054054, 0.06787481158971786, -0.035533271729946136, 0.004014916252344847, -0.024604620411992073, 0.0014595105312764645, 0.01241341419517994, -0.05163333937525749, -0.02565506286919117, 0.008726761676371098, 0.04989606887102127, 0.03925022855401039, -0.02650349773466587, -0.014655707404017448, -0.024200603365898132, 0.030281055718660355, -0.007459159009158611, -0.031048687174916267, -0.0083883972838521, -0.01301943976432085, -0.03967444598674774, -0.03325057774782181, 0.015140527859330177, -0.009746904484927654, -0.02658430114388466, -0.017756536602973938, 0.051875751465559006, -0.04460344836115837, 0.09373188763856888, -0.017605029046535492, 0.04945164918899536, -0.04189653694629669, -0.005540079437196255, -0.02082706242799759, -0.00836819689720869, -0.004792648833245039, 0.050098076462745667, -0.0740966722369194, -0.043553005903959274, 0.004262376576662064, 0.021473489701747894, 0.018322158604860306, 0.0037270544562488794, -0.027594344690442085, -0.008050033822655678, 0.09389349073171616, -0.024604620411992073, -0.03256374970078468, 0.013463858515024185, 0.03151330724358559, 0.0012499268632382154, -0.006499619223177433, 0.004709320142865181, -0.021029071882367134, 0.05175454542040825, -0.08702521026134491, -0.0023344592191278934, 0.030402259901165962, -0.03720994293689728, 0.006979389116168022, -0.021069472655653954, -0.08011651784181595, 0.010787246748805046, 0.030341656878590584, -0.018867582082748413, 0.03395760804414749, -0.05232016742229462, -0.051067717373371124, -0.003492219839245081, 0.07336944341659546, -0.0099741630256176, 0.003032650798559189, 0.010494334623217583, 0.022705741226673126, -0.023594578728079796, -0.006332962308079004, 0.013534560799598694, 0.007529862225055695, -0.0015996538568288088, -0.004628516733646393, -0.03539186716079712, 0.019645314663648605, 0.02470562420785427, -0.036078695207834244, 0.04100770130753517, 0.019786721095442772, -0.04771437868475914, -0.018433263525366783, 0.04432063549757004, 0.012433615513145924, -0.05401704087853432, 0.03494744747877121, -0.0031993077136576176, -0.05256257951259613, -0.00932268612086773, 0.006964238826185465, -0.005974397528916597, -0.006464268080890179, -0.005158788990229368, 0.10973095148801804, 0.02735193446278572, 0.01500922255218029, -0.03888661041855812, -0.008246991783380508, 0.05930965766310692, 0.07547032833099365, 0.02919021062552929, 0.03945223614573479, -0.06500629335641861, 0.0010068854317069054, 0.032462745904922485, -0.05789560079574585, 0.00399471540004015, 0.02167549915611744, 0.03971484676003456, -0.016988905146718025, -0.014312293380498886, -0.007721770089119673, 0.03975524753332138, -0.026806510984897614, 0.020059430971741676, 0.012130603194236755, 0.01808984950184822, -0.04363380745053291, -0.023554176092147827, 0.04290657863020897, 0.01596876233816147, 0.0027422637213021517, -0.03662411868572235, 0.02159469574689865, 0.02345317229628563, -0.022463330999016762, 0.03929062932729721, 0.013706267811357975, 0.019574610516428947, 0.002083211438730359, -0.031553708016872406, -0.04775477945804596, -0.0317557156085968, 0.004103295039385557, -0.02078666165471077, -0.0039012867491692305, 0.02781655266880989, 0.04347220063209534, -0.028402376919984818, 0.006196606904268265, -0.007524812128394842, 0.031169891357421875, 0.05260298028588295, 0.010065067559480667, -0.11708405613899231, -0.019574610516428947, -0.05773399397730827, -0.023695582523941994, -0.010554937645792961, 0.03353339061141014, -0.011867991648614407, -0.0015857657417654991, 0.028159966692328453, 0.006302661262452602, -0.027998359873890877, -0.035109054297208786, -0.013181046582758427, -0.04072488844394684, -0.013787071220576763, -0.000782782444730401, -0.014069883152842522, -0.017938343808054924, 0.023554176092147827, 0.0067117284052073956, -0.012999238446354866, 0.009792355820536613, 0.024443013593554497, 0.049290042370557785, 0.011453874409198761, -0.05025968328118324, 0.034321222454309464, 0.03547266870737076, 0.0901765376329422, -0.017322218045592308, 0.029291214421391487, 0.05034048855304718, 0.024099599570035934, -0.07163216918706894, 0.019291799515485764, 0.015393038280308247, 0.001717071165330708, -0.07284422218799591, -0.07603595405817032, 0.03672512248158455, -0.04480545595288277, -0.008575255051255226, 0.002522579627111554, -0.02250373363494873, 0.04945164918899536, -0.023715782910585403, -0.016483882442116737, 0.011524577625095844, -0.016100067645311356, -0.004325504414737225, 0.05098691210150719, -0.015160728245973587, -0.05983487889170647, 0.022766344249248505, -0.08791404217481613, -0.042260151356458664, -0.007504611276090145, 0.009802456013858318, -0.012009398080408573, 0.01412038505077362, -0.02294815145432949, 0.02343297190964222, 0.013160845264792442, -0.020200837403535843, 0.03448282927274704, 0.05648154020309448, -0.014211288653314114, 0.04512866958975792, -0.05381502956151962, 0.059026848524808884, -0.05716836825013161, -0.014908217824995518, 0.06738999485969543, -0.003989665303379297, -0.04322979226708412, -0.049249641597270966, 0.04541148245334625, -0.0007587939617224038, 0.020988669246435165, 0.05700676143169403, 0.028159966692328453, -0.04102789983153343, -0.057653188705444336, 0.009423690848052502, 0.03718974068760872, 0.01680709607899189, -0.036462511867284775, 0.03363439440727234, 0.02040284499526024, 0.04549228399991989, 0.04912843555212021, 0.005287569016218185, 0.015413238666951656, -0.030624469742178917, -0.05223936587572098, 0.007762171793729067, 0.03929062932729721, 0.0017473724437877536, -0.011645782738924026, 0.011150862090289593, 0.0027725649997591972, -0.02078666165471077, -0.05882483720779419, -0.0389472134411335, 0.016635389998555183, 0.012130603194236755, -0.005625933408737183, 0.02648329734802246, 0.03088708035647869, 0.03636150807142258, -0.0017852489836513996, 0.03009924851357937, -0.01814035139977932, 0.04335099831223488, 0.0029846737161278725, -0.00023878020874690264, 0.02209971658885479, -0.0023773859720677137, 0.037735164165496826, 0.015079924836754799, 0.01851406693458557, -0.01897868700325489, -0.03710893914103508, 0.023655179888010025, -0.0011729111429303885, -0.004815374501049519, 0.018463565036654472, 0.035593874752521515, -0.011413472704589367, -0.0379977747797966, 0.07522791624069214, 0.013827472925186157, -0.05535029619932175, -0.016453582793474197, 0.0238167867064476, 0.012756829150021076, 0.023937992751598358, 0.00286599388346076, 0.028563983738422394, -0.020665457472205162, -0.058057207614183426, -0.03327077999711037, -0.0057067363522946835, -0.04294697940349579, -0.024887431412935257, 0.010938753373920918, -0.05118892341852188, -0.013413355685770512, 0.019231196492910385, -0.02030184119939804, 0.023655179888010025, -0.030382059514522552, -0.03446262702345848, 0.04690634459257126, -0.011837691068649292, -0.0004930266877636313, -0.03343238681554794, -0.0025831821840256453, 0.006787481252104044, -0.0008017207146622241, -0.015382938086986542, -0.03046286292374134, 0.01676669530570507, 0.012777029536664486, 0.011019556783139706, 0.0238167867064476, 0.005898644682019949, -0.015049624256789684, 0.031594108790159225, 0.010777146555483341, 0.0072723012417554855, 0.036462511867284775, 0.0035704979673027992, -0.004282577428966761, 0.005113336723297834, 0.014746611006557941, -0.007039991673082113, 0.01905949041247368, -0.010065067559480667, -0.002764989621937275, 0.00675213010981679, 0.021311882883310318, -0.0442398339509964, 0.01862517185509205, -0.062097374349832535, -0.022463330999016762, 0.003939163405448198, 0.022806745022535324, -0.0059642973355948925, -0.012878034263849258, -0.011989196762442589, -0.008206590078771114, -0.04411862790584564, -0.021352285519242287, 0.027109524235129356, -0.04561349004507065, -0.0053279707208275795, 0.007767221890389919, -0.02874579094350338, -0.016039464622735977, 0.07732880860567093, -0.03890681266784668, 0.02205931395292282, -0.04464384913444519, 0.004148746840655804, 0.030220452696084976, -0.023715782910585403, -0.021816903725266457, 0.021917909383773804, 0.0829850435256958, -0.02347337268292904, -0.05555230379104614, 0.10811488330364227, -0.034260619431734085, -0.007368255406618118, -0.0011135711101815104, 0.004557813983410597, -0.01817065291106701, 0.058946043252944946, -0.01980692148208618, 0.024140000343322754, -0.02337236888706684, -0.03749275580048561, -0.02072605863213539, -0.004618416540324688, 0.01808984950184822, 0.0029821486677974463, -0.07227859646081924, -0.03131129965186119, -0.031210293993353844, 0.03145270422101021, -0.021877506747841835, 0.011342770420014858, -0.00017801987996790558, 0.017009105533361435, 0.029897239059209824, 0.016079867258667946, 0.020928068086504936, -0.024059196934103966, -0.023695582523941994, -0.00675213010981679, 0.025008637458086014, 0.04779518023133278, 0.10043856501579285, 0.024483414366841316, -0.06593552976846695, -0.01279723085463047, -0.06629914790391922, -0.028927600011229515, 0.031089087948203087, 0.010307476855814457, 0.021433088928461075, 0.0023685481864959, 0.010125669650733471, 0.010524636134505272, 0.00047535094199702144, 0.03327077999711037, 0.02999824285507202, -0.09809526801109314, -0.030139649286866188, 0.017382821068167686, -0.020584654062986374, -0.06629914790391922, -0.019534209743142128, 0.006736979354172945, 0.016564685851335526, 0.06565272063016891, -0.0024342008400708437, 0.04161372408270836, -0.00819648988544941, -0.024140000343322754, -0.009226732887327671, 0.0028634686022996902, 0.058178409934043884, 0.009792355820536613, 0.05668354779481888, 0.0035528221633285284, 0.021938109770417213, 0.055511899292469025, -0.00975195411592722, -0.009999414905905724, -0.029291214421391487, 0.016544485464692116, -0.028624586760997772, -0.004103295039385557, -0.011797289364039898, 0.01329215057194233, 0.014433498494327068, -0.025836870074272156, 0.021352285519242287, 0.006009749136865139, 0.023311765864491463, 0.0006546333897858858, -0.016190970316529274, -0.001960743684321642, 0.07078373432159424, 0.005247167311608791, 0.003264960367232561, -0.007933879271149635, 0.03680592402815819 ]
9,548
asyncclick.core
get_usage_pieces
null
def get_usage_pieces(self, ctx: Context) -> t.List[str]: return []
(self, ctx: asyncclick.core.Context) -> List[str]
[ -0.003930925857275724, 0.009931197389960289, -0.03939236328005791, -0.03603487089276314, 0.06718309223651886, 0.0449771024286747, 0.04796892777085304, -0.01815040595829487, 0.06781470030546188, -0.06681742519140244, 0.020460758358240128, 0.01951334811747074, -0.00611246470361948, -0.00514427712187171, 0.005925475619733334, 0.00897547509521246, 0.00644073449075222, -0.04820162430405617, 0.06279508769512177, 0.00046097999438643456, -0.01786784455180168, 0.05907192453742027, 0.035070836544036865, -0.03344195708632469, -0.0431155227124691, 0.05641252547502518, 0.07366538047790527, -0.052755847573280334, 0.013188961893320084, -0.06781470030546188, -0.040589094161987305, 0.02820626273751259, -0.03949208930134773, -0.004990530200302601, -0.02044413797557354, -0.017834601923823357, 0.032311711460351944, 0.02011171355843544, 0.015432830899953842, 0.000027772421162808314, 0.027375198900699615, -0.0024183918721973896, 0.008264916948974133, -0.030932147055864334, -0.04122070223093033, -0.015382966957986355, 0.014011713676154613, 0.008667982183396816, -0.01610599085688591, -0.05062833055853844, 0.05305503308773041, 0.03992424160242081, -0.04574168100953102, 0.018449587747454643, 0.040589094161987305, 0.003673296421766281, 0.006154017988592386, 0.03663323447108269, 0.07333295792341232, 0.06661797314882278, 0.030067842453718185, 0.05089426785707474, 0.042949311435222626, -0.0447111651301384, 0.04836783930659294, 0.001962346490472555, 0.022638143971562386, 0.01294795423746109, -0.0010216875234618783, 0.026078741997480392, 0.03666647896170616, -0.01144373044371605, -0.018516073003411293, 0.019347134977579117, 0.011277518235147, -0.05375312268733978, 0.024798905476927757, 0.03297656029462814, 0.027225608006119728, -0.031912799924612045, 0.006361783482134342, 0.060501351952552795, 0.01971280388534069, 0.005381129682064056, 0.05172533169388771, 0.0056761568412184715, -0.0005594089743681252, -0.046838682144880295, -0.06372587382793427, 0.09494058042764664, -0.04647301509976387, 0.034073565155267715, -0.04760326072573662, 0.010712395422160625, 0.011975610628724098, -0.05395257845520973, -0.06033514067530632, -0.021325064823031425, -0.03663323447108269, 0.013363485224545002, -0.0067440723069012165, -0.025064846500754356, 0.011676428839564323, -0.005792505573481321, 0.034738413989543915, -0.016189098358154297, -0.027325335890054703, -0.01038828119635582, 0.03876075521111488, 0.030466752126812935, -0.03083241917192936, -0.014335828833281994, 0.013263758271932602, -0.04251715913414955, 0.020144956186413765, 0.037098631262779236, -0.05332097038626671, -0.046905167400836945, -0.017186373472213745, -0.011310760863125324, -0.008493458852171898, -0.024267025291919708, -0.021275199949741364, -0.025846043601632118, 0.023685282096266747, 0.032494544982910156, -0.061897534877061844, 0.000327230867696926, -0.0005578506970778108, -0.0428495816886425, 0.020228061825037003, 0.004645639564841986, -0.025679832324385643, -0.02976865880191326, 0.007620843127369881, -0.035004355013370514, 0.06711661070585251, 0.001881317817606032, 0.031513892114162445, 0.030549857765436172, -0.023884736001491547, 0.02444985881447792, 0.0019041720079258084, -0.009415938518941402, -0.0027321181260049343, -0.0038249653298407793, 0.030267296358942986, 0.03148064762353897, -0.02832261100411415, -0.030250675976276398, 0.002121287165209651, 0.035203807055950165, -0.012598907575011253, -0.04055584967136383, 0.01106975320726633, 0.03437274694442749, -0.02616184763610363, -0.017269479110836983, 0.024898633360862732, -0.052223969250917435, -0.032311711460351944, -0.06080053374171257, -0.03523705154657364, 0.007870161905884743, 0.03129781410098076, 0.03470516949892044, 0.03600163012742996, -0.02155776135623455, 0.0027674383018165827, 0.011925747618079185, -0.0025472065899521112, 0.011003267951309681, 0.015956399962306023, 0.04634004458785057, 0.022555036470294, 0.03832860291004181, -0.05883922800421715, 0.024832148104906082, 0.019480105489492416, -0.05913840979337692, -0.08576565235853195, -0.016878880560398102, -0.017302721738815308, -0.023834872990846634, 0.005622137803584337, -0.03932587802410126, 0.07585939019918442, -0.01186757255345583, -0.0027445838786661625, 0.015806809067726135, 0.0015759023372083902, 0.012499180622398853, 0.023884736001491547, 0.05059508606791496, 0.0011769923148676753, -0.006170639302581549, -0.04155312478542328, 0.003355414839461446, -0.09447518736124039, -0.07592587172985077, -0.03186293691396713, -0.006914440076798201, -0.017651768401265144, -0.03314277157187462, 0.032694000750780106, 0.09281305968761444, 0.00040046824142336845, -0.002565905451774597, -0.05960380285978317, 0.019097816199064255, 0.015200133435428143, 0.029336506500840187, 0.014510351233184338, 0.022239232435822487, 0.022920703515410423, 0.0141945481300354, 0.03325912356376648, 0.019928880035877228, -0.03866102918982506, -0.0023581399582326412, 0.009673567488789558, -0.05747628211975098, 0.010130652226507664, 0.0035237050615251064, -0.012565664947032928, -0.010363349691033363, 0.060301896184682846, 0.029868386685848236, -0.02044413797557354, -0.026111984625458717, 0.013687599450349808, -0.03686593472957611, 0.02425040490925312, 0.04889971762895584, -0.046838682144880295, 0.046240318566560745, -0.013338553719222546, 0.019081195816397667, 0.04477765038609505, -0.03659999370574951, -0.05322124436497688, 0.01252411212772131, 0.022438688203692436, 0.015532558783888817, 0.018765391781926155, 0.016072748228907585, -0.027175744995474815, 0.013646046631038189, 0.01383719127625227, -0.01628882624208927, 0.03739781305193901, 0.006424113176763058, -0.006307764444500208, -0.05627955496311188, -0.052622877061367035, -0.044478464871644974, -0.06515530496835709, -0.028289368376135826, -0.024150677025318146, -0.06728281825780869, 0.0024495567195117474, -0.017202993854880333, -0.029203537851572037, 0.03030053898692131, 0.004267505835741758, 0.03659999370574951, 0.02582942321896553, 0.016970297321677208, -0.09779943525791168, 0.028438959270715714, 0.022122884169220924, 0.03404032066464424, -0.046705715358257294, 0.01062097866088152, -0.08031388372182846, 0.03404032066464424, 0.025214437395334244, 0.04554222524166107, -0.03945884853601456, 0.02084304764866829, -0.02095939591526985, -0.01971280388534069, -0.012233240529894829, 0.021856945008039474, 0.01275680959224701, -0.04241742938756943, 0.07579290121793747, -0.006839644629508257, -0.017568660899996758, 0.02333623543381691, -0.04145339876413345, 0.014211169444024563, -0.00632438575848937, -0.05907192453742027, 0.05667846277356148, 0.03550299257040024, 0.014867708086967468, 0.01412806287407875, 0.01416961569339037, 0.02287084050476551, -0.055116064846515656, -0.03003459982573986, -0.05488336831331253, 0.015740323811769485, 0.0023186644539237022, -0.013745774514973164, 0.07366538047790527, -0.0845024362206459, 0.021341685205698013, -0.059836503118276596, -0.00566784618422389, -0.013446591794490814, 0.07240216434001923, 0.01245762687176466, -0.05116020888090134, 0.024017706513404846, -0.037497539073228836, 0.06668445467948914, 0.014335828833281994, 0.056113339960575104, -0.032893452793359756, 0.015474383719265461, 0.07492859661579132, 0.015815120190382004, 0.05338745564222336, 0.04999672248959541, -0.011435420252382755, 0.0005869378801435232, 0.061232686042785645, -0.02478228509426117, -0.04896620288491249, -0.04421252757310867, -0.03470516949892044, -0.012549043633043766, -0.009781605564057827, -0.0005251276306807995, -0.011360624805092812, -0.029918251559138298, -0.02669372782111168, -0.03259427100419998, 0.013031059876084328, -0.012532423250377178, -0.04766974598169327, 0.06066756322979927, 0.027724245563149452, -0.032428059726953506, 0.06555420905351639, 0.03016757033765316, 0.029170295223593712, -0.030849041417241096, 0.021740594878792763, -0.0038976832292973995, -0.009091824293136597, 0.06209699064493179, 0.10996619611978531, 0.007562668994069099, -0.025679832324385643, 0.03266075626015663, -0.021374927833676338, 0.05671170726418495, 0.03812914714217186, -0.06980925053358078, 0.03975803032517433, 0.033874109387397766, -0.023834872990846634, -0.05049536004662514, 0.07918363809585571, -0.011659807525575161, 0.060966745018959045, 0.003762635635212064, -0.06003595516085625, 0.03181307390332222, -0.0029793591238558292, -0.014809533953666687, -0.026510894298553467, -0.008784330449998379, 0.022787734866142273, 0.001217506593093276, -0.08031388372182846, 0.010396592319011688, -0.02616184763610363, 0.035004355013370514, -0.018815254792571068, 0.0424506738781929, -0.04530952870845795, 0.04876674711704254, -0.06326048076152802, 0.0020932387560606003, -0.004198943264782429, 0.020876290276646614, 0.03613459691405296, -0.043747130781412125, -0.06781470030546188, 0.03314277157187462, -0.03739781305193901, 0.007051565684378147, 0.0038665183819830418, -0.06000271439552307, -0.04607410728931427, -0.007878473028540611, 0.05258963629603386, -0.0591716505587101, -0.006748227868229151, 0.015208444558084011, -0.07426374405622482, -0.023884736001491547, -0.0072801075875759125, 0.050262659788131714, -0.04501034691929817, 0.02155776135623455, -0.03969154506921768, -0.04836783930659294, -0.009316210635006428, -0.02386811561882496, -0.033292364329099655, -0.055514976382255554, -0.032694000750780106, -0.02095939591526985, 0.031247951090335846, 0.020626971498131752, 0.022239232435822487, -0.06355965882539749, 0.012150133959949017, 0.06352642178535461, 0.023352857679128647, -0.00765824131667614, -0.019629696384072304, -0.029020702466368675, 0.028771383687853813, -0.027956943958997726, -0.00959046185016632, 0.05125993490219116, -0.04248391464352608, -0.06671769917011261, 0.02676021307706833, -0.01859917864203453, 0.012997818179428577, -0.019496725872159004, 0.005352042615413666, 0.028555307537317276, -0.03423977643251419, 0.06528826802968979, 0.06887846440076828, 0.06153186783194542, 0.07433023303747177, -0.0057509527541697025, -0.12239889055490494, -0.008094549179077148, -0.0038395088631659746, -0.0594375915825367, -0.06119944527745247, 0.03108173795044422, 0.02669372782111168, -0.010463077574968338, -0.006432423833757639, -0.005418527405709028, -0.033940594643354416, -0.020793184638023376, -0.042749855667352676, -0.0021264811512082815, 0.021325064823031425, 0.059770017862319946, -0.037497539073228836, 0.0293198861181736, 0.04168609529733658, -0.03259427100419998, 0.018482830375432968, -0.004500203765928745, -0.03457219898700714, 0.03239481523633003, 0.003777179168537259, 0.025679832324385643, -0.0008637856226414442, -0.010488009080290794, 0.016596319153904915, -0.0026199244894087315, -0.018516073003411293, 0.0015146114164963365, 0.029535962268710136, -0.033026423305273056, 0.005883922800421715, -0.05385285243391991, 0.004421252757310867, 0.037364572286605835, -0.03882724046707153, -0.008850815705955029, -0.0035112390760332346, -0.052689362317323685, -0.03786320984363556, -0.05009644851088524, -0.04185231029987335, -0.027258850634098053, -0.02676021307706833, -0.07060707360506058, -0.006075066979974508, 0.05947083234786987, 0.061365656554698944, 0.003266075626015663, -0.02558010444045067, 0.06139889732003212, 0.05578091740608215, 0.004870026372373104, 0.001567591680213809, -0.02956920489668846, 0.016521522775292397, -0.018632421270012856, 0.06711661070585251, 0.010404902510344982, -0.0049697537906467915, -0.02958582527935505, -0.0014190392103046179, -0.026111984625458717, 0.06615258008241653, -0.008505924604833126, 0.013945229351520538, 0.026992911472916603, 0.0071554481983184814, 0.05056184530258179, 0.024549586698412895, 0.03299318253993988, -0.01820026896893978, 0.028954219073057175, 0.015873294323682785, 0.0017286100191995502, 0.01511702686548233, -0.021873565390706062, -0.055581461638212204, -0.011285829357802868, -0.05804140493273735, 0.03219536319375038, 0.04411279782652855, -0.0210258811712265, 0.003874829038977623, -0.04896620288491249, 0.03056648001074791, 0.03207901492714882, -0.007101429160684347, -0.04451170936226845, 0.049863751977682114, 0.03330898657441139, 0.022920703515410423, -0.06791442632675171, 0.05937110632658005, -0.01957983337342739, -0.034339502453804016, -0.0071970014832913876, 0.050329145044088364, 0.0066651212982833385, 0.007994821295142174, -0.03259427100419998, 0.005036239046603441, -0.04437873885035515, 0.011003267951309681, -0.04158636927604675, 0.0867629274725914, -0.03646702319383621, 0.006407491862773895, -0.032378196716308594, -0.014743048697710037, 0.004450339823961258, -0.0033491819631308317, -0.00963201466947794, -0.055182550102472305, 0.005489167757332325, 0.014560215175151825, 0.009789916686713696, -0.030217433348298073, 0.016986917704343796, -0.05687791854143143, -0.043148767203092575, -0.032694000750780106, 0.0009926003403961658, 0.037032146006822586, -0.0071471375413239, -0.04534276947379112, -0.052090998739004135, 0.013330242596566677, -0.0017099111573770642, 0.0439133420586586, -0.03766375407576561, -0.007886783219873905, 0.03886048495769501, -0.013105856254696846, 0.013521387241780758, 0.04547573998570442, 0.017502177506685257, 0.02262152172625065, -0.027524789795279503, 0.07871824502944946, 0.035536233335733414, 0.054517701268196106, -0.03620108217000961, 0.04437873885035515, -0.003415666986256838, 0.019879015162587166, -0.004350612405687571, -0.04989699274301529, -0.03443923220038414, -0.06159835308790207, 0.05009644851088524, 0.03773023933172226, 0.05870625749230385, 0.06980925053358078, 0.013986782170832157, 0.03367465361952782, 0.017070023342967033, 0.00514427712187171, -0.03030053898692131, -0.04318200796842575, 0.06788118928670883, -0.015499316155910492, 0.012449316680431366, -0.005838214419782162, -0.014743048697710037, -0.027724245563149452, -0.0016818627482280135, 0.037165116518735886, -0.003016756847500801, 0.038162391632795334, 0.008817573077976704, -0.007903404533863068, 0.07260162383317947, -0.028821248561143875, 0.024084191769361496, 0.012698635458946228, -0.03370789438486099, -0.03163024038076401, -0.030084462836384773, -0.0008663826738484204, -0.009490733966231346, -0.00038722320459783077, -0.04667247086763382, 0.045442499220371246, -0.0027113414835184813, 0.00566784618422389, 0.003382424358278513, 0.0035133168566972017, -0.07984848320484161, -0.007429698947817087, 0.009158308617770672, -0.019014710560441017, -0.010903540067374706, -0.016920432448387146, 0.0071471375413239, -0.05411878973245621, -0.018881740048527718, -0.07054058462381363, -0.00801559817045927, -0.00183249288238585, 0.029619067907333374, 0.007043255027383566, 0.006706674583256245, 0.06395857036113739, 0.02169073186814785, -0.04161961004137993, 0.04783595725893974, -0.052223969250917435, 0.017668388783931732, -0.04358091950416565, -0.04653950035572052, -0.0432484932243824, 0.002218937035650015, 0.04766974598169327, 0.03726484254002571, -0.04773623123764992, -0.00795742403715849, 0.022820977494120598, 0.023768387734889984, -0.02391797862946987, 0.05066157132387161, 0.044544950127601624, 0.04221797734498978, 0.06691715121269226, -0.022588279098272324, -0.057875193655490875, 0.02267138473689556, 0.016222340986132622, 0.06532151252031326, 0.017851222306489944, 0.020494000986218452, 0.012374521233141422, -0.035469748079776764, -0.011127927340567112, -0.02142479084432125, 0.022571658715605736, 0.08563268184661865, -0.043547675013542175, 0.010537873022258282, -0.0062911431305110455, -0.05588064342737198, -0.04587465152144432, 0.0011073908535763621, 0.002012210199609399, 0.009316210635006428, 0.030450129881501198, 0.0008804068784229457, 0.0003807305183727294, -0.025330785661935806, 0.07911714911460876, 0.012914711609482765, 0.026926426216959953, 0.009307900443673134, 0.03673296421766281, -0.04923214390873909, 0.01938037760555744, -0.008227518759667873, -0.012723566964268684, -0.018565936014056206, -0.08124466985464096, 0.046506259590387344, 0.03576892986893654, 0.037630509585142136, 0.0018605411751195788, -0.007043255027383566, -0.006328541319817305, -0.0868958979845047, 0.008917300961911678, 0.02371852472424507, 0.006669276859611273, 0.02498173899948597, 0.02892097644507885, 0.0436474047601223, 0.06751552224159241, 0.012283104471862316, 0.004973909351974726, 0.08217546343803406, -0.012008853256702423, 0.004363078158348799, 0.007383990567177534, -0.02104250341653824, -0.043348219245672226, -0.006852110382169485, -0.03222860395908356, 0.02182370238006115, 0.024333510547876358, -0.015790188685059547, -0.008593186736106873, -0.01841634511947632, 0.003951702266931534, -0.051825057715177536, -0.006802246905863285, 0.0019031331175938249, -0.026593999937176704, 0.000496040447615087, -0.02983514405786991, -0.03030053898692131, 0.030017977580428123, -0.002858855063095689, 0.0001012857464957051, -0.0023061984684318304, 0.005335421301424503, 0.027508169412612915, -0.047104623168706894, 0.02576293796300888, 0.02596239373087883, -0.015050542540848255, 0.04035639762878418, -0.03497111052274704, -0.049531325697898865, -0.044345494359731674, -0.019862394779920578, 0.01340503804385662, -0.012241550721228123, 0.04766974598169327, 0.023386098444461823, -0.014510351233184338, 0.013646046631038189, 0.004238418769091368 ]
9,550
asyncclick.core
make_metavar
null
def make_metavar(self) -> str: if self.metavar is not None: return self.metavar metavar = self.type.get_metavar(self) if metavar is None: metavar = self.type.name.upper() if self.nargs != 1: metavar += "..." return metavar
(self) -> str
[ 0.024058712646365166, 0.047794487327337265, 0.033262379467487335, -0.0679241493344307, 0.0293333288282156, -0.019770843908190727, 0.07635635882616043, 0.01662221923470497, -0.019214676693081856, -0.024955755099654198, -0.012648316100239754, 0.04707685485482216, -0.04047461226582527, -0.007073189597576857, 0.04535453021526337, 0.006830987986177206, 0.010764524340629578, 0.005817328579723835, 0.02770070917904377, 0.06483832001686096, 0.08669030666351318, 0.018802035599946976, -0.02163669466972351, -0.1080758273601532, 0.011123341508209705, 0.05242323502898216, 0.013787562027573586, -0.0248301699757576, -0.022569619119167328, -0.034356772899627686, -0.01930437982082367, -0.03807053342461586, 0.022910496219992638, 0.03778348118066788, 0.018192045390605927, 0.01051335223019123, -0.05274616926908493, 0.03713760897517204, -0.027664827182888985, -0.045211002230644226, 0.04524688422679901, -0.044385723769664764, -0.02197756990790367, -0.05253087729215622, 0.009436899796128273, 0.0028503562789410353, 0.02558368630707264, 0.00626136502251029, -0.030445663258433342, -0.03896757960319519, 0.028005704283714294, 0.007902954705059528, -0.012639345601201057, -0.059814874082803726, -0.06358245760202408, 0.05385850369930267, 0.029512736946344376, -0.009544544853270054, -0.047328025102615356, 0.06437185406684875, -0.018784094601869583, 0.05464790388941765, 0.020075837150216103, -0.035594694316387177, -0.002232517581433058, -0.009055656380951405, 0.012110089883208275, 0.010450558736920357, 0.013383892364799976, 0.029979201033711433, -0.011796124279499054, -0.0496603399515152, -0.03381854668259621, -0.01498063001781702, 0.053607333451509476, -0.054002031683921814, -0.11345808953046799, -0.06695534288883209, 0.051346782594919205, -0.014254024252295494, -0.05199265107512474, 0.010791435837745667, -0.030212432146072388, -0.04736390709877014, 0.030589189380407333, -0.004996533505618572, -0.07750457525253296, -0.037496425211429596, 0.007669723592698574, -0.05177736282348633, -0.03546910732984543, -0.03799876943230629, 0.03972109407186508, 0.03616880252957344, -0.055580828338861465, -0.00024388375459238887, -0.02818511240184307, -0.06333128362894058, -0.01343771442770958, -0.006714371964335442, -0.007638327311724424, 0.015859732404351234, 0.052100297063589096, 0.023107845336198807, 0.004238531459122896, -0.018389396369457245, -0.023717835545539856, 0.02633720263838768, -0.02777247317135334, 0.005817328579723835, -0.021062586456537247, -0.042483989149332047, -0.05382262170314789, -0.0212958175688982, -0.0014319060137495399, 0.012827725149691105, 0.02346666343510151, -0.021331699565052986, 0.016667071729898453, 0.011885829269886017, -0.028077468276023865, 0.010701731778681278, -0.018174106255173683, -0.05945605784654617, 0.015761056914925575, 0.018658509477972984, -0.013087867759168148, -0.014370639808475971, -0.013608152978122234, -0.01633516512811184, -0.04180223494768143, 0.0688929557800293, -0.04413454979658127, 0.020793473348021507, 0.029225684702396393, 0.008930070325732231, 0.01890968158841133, 0.0781504437327385, -0.0005819571088068187, 0.08439387381076813, -0.0540379136800766, 0.014711516909301281, 0.027664827182888985, -0.04072578251361847, -0.05009092018008232, -0.0416228286921978, 0.02988949604332447, 0.02789805829524994, 0.028023645281791687, 0.031145356595516205, -0.03695819899439812, 0.007992659695446491, 0.027682768180966377, 0.01265728659927845, 0.08403505384922028, 0.018192045390605927, -0.04101283848285675, -0.04689744487404823, 0.0253145731985569, -0.042483989149332047, 0.013276246376335621, -0.09307725727558136, -0.00775942811742425, -0.03405177965760231, 0.020380832254886627, 0.0025296632666140795, 0.06386951357126236, 0.008589193224906921, 0.004559224471449852, 0.04373985156416893, -0.00564689002931118, -0.005826298613101244, 0.013715798035264015, 0.013419773429632187, 0.0000811544232419692, 0.09027847647666931, -0.013626093976199627, 0.04890682175755501, 0.021816102787852287, -0.04244810715317726, -0.02195962890982628, -0.0018467886839061975, -0.04467277601361275, -0.023986948654055595, 0.04646686464548111, -0.029189802706241608, 0.01815616525709629, 0.03290356323122978, -0.026319261640310287, 0.0053553506731987, -0.020901117473840714, -0.01504342257976532, -0.009544544853270054, 0.03154005482792854, -0.013877266086637974, -0.02804158627986908, 0.026426907628774643, -0.010450558736920357, 0.09845951944589615, -0.009073597379028797, -0.020344950258731842, 0.046036284416913986, 0.0020542300771921873, 0.04775860533118248, 0.087623231112957, 0.04836859554052353, 0.03426706790924072, -0.027467478066682816, -0.06720651686191559, -0.016873391345143318, -0.01796778477728367, -0.011464218609035015, 0.02832864038646221, -0.024058712646365166, -0.01881997659802437, -0.0693594217300415, -0.025404278188943863, 0.011715390719473362, -0.04409866780042648, 0.04549805819988251, 0.013276246376335621, -0.00968807190656662, 0.06404892355203629, 0.033728841692209244, 0.0323653370141983, -0.004938225727528334, 0.015366358682513237, 0.006391436327248812, 0.003202446037903428, 0.035110291093587875, -0.029369210824370384, -0.032777976244688034, -0.014657693915069103, 0.03842935338616371, -0.03677879273891449, 0.025942504405975342, -0.01847909949719906, 0.0021775735076516867, -0.01896350458264351, 0.014756368473172188, -0.025422219187021255, -0.006902751512825489, 0.02755718305706978, 0.05091619864106178, 0.019609374925494194, -0.031629759818315506, -0.017007948830723763, 0.0138144725933671, 0.029566559940576553, 0.0404028482735157, 0.01645178161561489, 0.02176227979362011, 0.010863198898732662, 0.025619568303227425, 0.02613985352218151, 0.03972109407186508, -0.022641383111476898, -0.047112736850976944, -0.021672576665878296, -0.024543115869164467, -0.03586380556225777, 0.003879714058712125, -0.0002567787596490234, 0.004350661765784025, -0.016254432499408722, 0.004299081861972809, 0.01757308654487133, -0.026516612619161606, -0.05019856616854668, -0.016873391345143318, 0.08948908001184464, 0.023305194452404976, -0.06229071319103241, -0.012558612041175365, 0.009499692358076572, 0.011544952169060707, 0.02694719284772873, -0.005485422443598509, -0.0271445419639349, -0.03921874985098839, 0.0019376144045963883, -0.048476241528987885, 0.039326395839452744, -0.012316410429775715, -0.02504546009004116, 0.014585930854082108, 0.005238735117018223, -0.01796778477728367, -0.006705401465296745, 0.05805666744709015, 0.015814879909157753, 0.030122727155685425, -0.00893455557525158, -0.028023645281791687, 0.04851212352514267, -0.01618266850709915, -0.0033100913278758526, -0.013536389917135239, 0.01613781601190567, -0.027467478066682816, -0.00527013186365366, -0.028059527277946472, -0.049229759722948074, -0.02585279941558838, -0.03484117612242699, 0.02592456340789795, 0.01364403497427702, -0.0107107013463974, 0.05708786100149155, -0.0013332312228158116, -0.04262751713395119, 0.017797347158193588, -0.04047461226582527, 0.03595351055264473, 0.0001948266726685688, 0.08625972270965576, -0.007929866202175617, 0.03656350076198578, 0.0416228286921978, 0.05690845102071762, -0.027987763285636902, -0.0132672768086195, -0.06810355931520462, -0.03507440909743309, 0.011598775163292885, -0.038106415420770645, -0.05615493655204773, 0.0029490310698747635, 0.010638938285410404, 0.02682160586118698, -0.008997348137199879, -0.019501730799674988, -0.03493088111281395, 0.028633635491132736, -0.05522201210260391, 0.02538633719086647, 0.03656350076198578, 0.017510293051600456, -0.0348052941262722, 0.007916410453617573, 0.0406540222465992, 0.024722523987293243, -0.010692761279642582, 0.018514981493353844, 0.041048720479011536, -0.0016976551851257682, 0.055975526571273804, -0.03563057631254196, 0.07362934947013855, -0.045282766222953796, -0.011787153780460358, -0.0043932716362178326, -0.021869925782084465, -0.05787726119160652, 0.047866251319646835, -0.018514981493353844, -0.029458915814757347, -0.017725583165884018, -0.04912211373448372, 0.041048720479011536, 0.015285625122487545, -0.02319755032658577, 0.06534066051244736, 0.02000407502055168, -0.011114371009171009, 0.00024780831881798804, -0.003931294195353985, 0.0022941892966628075, 0.02047053724527359, 0.007337817456573248, 0.016469722613692284, -0.010145564563572407, 0.02231844700872898, -0.0676729753613472, -0.02353842742741108, 0.06580712646245956, 0.002915391931310296, 0.0010338429128751159, -0.04783036932349205, -0.08137980103492737, 0.025081342086195946, 0.0034020382445305586, -0.015079304575920105, 0.036204684525728226, -0.024668700993061066, -0.0005797144840471447, 0.012163912877440453, 0.021600812673568726, 0.004426910541951656, 0.06038898229598999, 0.009858510456979275, -0.017070742323994637, 0.005682772025465965, 0.01463975291699171, 0.03003302402794361, -0.03785524517297745, -0.08209744095802307, -0.023664012551307678, -0.05335615947842598, 0.03921874985098839, 0.06688357889652252, -0.04524688422679901, -0.001647196477279067, 0.040438730269670486, -0.021672576665878296, -0.0031710495240986347, 0.030391840264201164, 0.021044645458459854, -0.01711559295654297, -0.023143727332353592, 0.01033394318073988, -0.05705197900533676, -0.013697857037186623, -0.01869439147412777, 0.07337817549705505, 0.02095494046807289, 0.007925380952656269, -0.004960651509463787, 0.04312986135482788, -0.015635471791028976, -0.03516411408782005, 0.05446849390864372, 0.03320855647325516, 0.06896471977233887, 0.0298177320510149, 0.02592456340789795, -0.04058225825428963, 0.024040771648287773, 0.009580426849424839, -0.06634534895420074, -0.011392454616725445, 0.014173290692269802, 0.03990050405263901, 0.01569826528429985, -0.012406114488840103, 0.0012255859328433871, 0.028095409274101257, -0.01569826528429985, -0.01640692912042141, 0.0106479087844491, 0.022354329004883766, -0.07413168996572495, -0.019501730799674988, 0.04944504797458649, 0.010172475129365921, 0.004875432699918747, 0.005238735117018223, -0.02721630595624447, 0.03096594847738743, -0.016667071729898453, -0.0032069312874227762, 0.04345279559493065, -0.00404118187725544, -0.03003302402794361, 0.03315473347902298, -0.05920488387346268, -0.008091334253549576, -0.02251579612493515, -0.03835758939385414, -0.03921874985098839, 0.026713961735367775, 0.04334515333175659, 0.06218307092785835, 0.0338364876806736, 0.021582871675491333, 0.0023188579361885786, 0.05156207084655762, 0.013043015263974667, -0.061644844710826874, -0.03532557934522629, -0.01842527836561203, -0.026516612619161606, 0.02373577654361725, 0.03982874006032944, -0.028508048504590988, 0.013940059579908848, 0.0132672768086195, 0.031701523810625076, -0.034356772899627686, -0.03604321554303169, 0.005471966695040464, -0.02273108810186386, 0.018443219363689423, 0.05371497571468353, -0.022336388006806374, 0.059599582105875015, -0.03037389926612377, 0.003594902576878667, -0.01214597187936306, -0.011867888271808624, 0.015545767731964588, 0.07427521795034409, 0.0020833839662373066, 0.019017325714230537, 0.07671517878770828, 0.045211002230644226, 0.027646886184811592, 0.01638001762330532, -0.05827195942401886, 0.07484932988882065, 0.025296632200479507, -0.0528179332613945, 0.0164338406175375, -0.03957756981253624, 0.011661567725241184, -0.06211130693554878, -0.03990050405263901, -0.010872169397771358, -0.05303322523832321, -0.0049023437313735485, 0.0406540222465992, 0.015016512013971806, -0.05235147103667259, 0.012128030881285667, 0.022677265107631683, 0.04007991403341293, -0.040761664509773254, 0.0045749228447675705, 0.10082770884037018, 0.01944790780544281, -0.05375085771083832, -0.024543115869164467, -0.05798490345478058, -0.04926564171910286, -0.03414148464798927, -0.005485422443598509, 0.016424870118498802, 0.028974510729312897, -0.0067816502414643764, 0.05253087729215622, 0.012711109593510628, -0.008046481758356094, -0.0020318040624260902, 0.07337817549705505, -0.018802035599946976, 0.07635635882616043, -0.11087460070848465, 0.058774303644895554, 0.054827310144901276, 0.002352497074753046, 0.01998613402247429, -0.0357741042971611, -0.0047902134247124195, -0.03573822230100632, -0.009131904691457748, 0.02088317647576332, -0.020075837150216103, 0.034482359886169434, 0.05662139877676964, -0.015465033240616322, -0.09035024046897888, 0.04743567109107971, -0.06749356538057327, 0.001317532965913415, -0.08554209023714066, 0.04919387772679329, 0.017725583165884018, -0.03882405161857605, 0.05375085771083832, 0.020183483138680458, -0.004664627369493246, -0.0416228286921978, 0.04492394998669624, 0.0023031597957015038, 0.024668700993061066, 0.0323653370141983, -0.039003461599349976, 0.03365708142518997, 0.0034738017711788416, -0.013177571818232536, -0.018299691379070282, -0.059743110090494156, 0.03365708142518997, -0.0005216869758442044, -0.056119054555892944, 0.02195962890982628, 0.05787726119160652, 0.05848724767565727, -0.013186542317271233, 0.0253145731985569, -0.02102670446038246, 0.04700509086251259, 0.006050559692084789, -0.0010153413750231266, -0.057016097009181976, -0.015052393078804016, 0.0019241587724536657, -0.036742910742759705, -0.038572877645492554, -0.030320076271891594, -0.07222995907068253, 0.03356737643480301, 0.006046074442565441, -0.018730271607637405, 0.008952496573328972, -0.025404278188943863, 0.04011579602956772, -0.04251987114548683, 0.03771171718835831, 0.03118123859167099, 0.020291129127144814, -0.01577002741396427, -0.029440974816679955, 0.08123628050088882, 0.0369940809905529, 0.021672576665878296, 0.03295738622546196, -0.0011370028369128704, -0.023789599537849426, -0.030140668153762817, -0.008710294030606747, 0.001176248537376523, -0.028005704283714294, -0.021188171580433846, -0.08869968354701996, 0.015500915236771107, 0.02504546009004116, -0.07348582148551941, 0.037424664944410324, -0.05633434280753136, -0.04836859554052353, 0.048081543296575546, 0.010019978508353233, -0.028561871498823166, -0.04208929091691971, 0.0028324155136942863, -0.01835351437330246, -0.03091212548315525, 0.008988377638161182, -0.12178265303373337, 0.011867888271808624, -0.03171946480870247, 0.008006115444004536, -0.04890682175755501, -0.010127623565495014, 0.009786746464669704, -0.043847497552633286, 0.00497859250754118, 0.009051171131432056, -0.019663197919726372, 0.0034513757564127445, -0.03665320575237274, -0.028687458485364914, 0.025601627305150032, -0.032724153250455856, 0.011248927563428879, -0.020237306132912636, 0.020721709355711937, -0.07484932988882065, -0.02730601094663143, 0.01207420788705349, 0.036886438727378845, -0.03685055673122406, 0.0007658510585315526, 0.04373985156416893, 0.005480937194079161, 0.009643219411373138, -0.015985319390892982, -0.026731902733445168, -0.03990050405263901, 0.020165542140603065, -0.058451369404792786, 0.017007948830723763, -0.02339489944279194, 0.10965462028980255, 0.011204075999557972, -0.03972109407186508, -0.05576023831963539, 0.021672576665878296, -0.01781528815627098, 0.020237306132912636, -0.026516612619161606, 0.005714168306440115, -0.047938015311956406, 0.02721630595624447, -0.0023390415590256453, 0.05827195942401886, 0.0715482085943222, 0.03293944522738457, -0.038572877645492554, 0.007476859260350466, -0.049839746206998825, -0.007979203946888447, -0.009347195737063885, 0.02020142413675785, -0.007073189597576857, 0.012746990658342838, 0.02545809932053089, -0.02265932410955429, -0.0450315922498703, 0.015743117779493332, -0.015213861130177975, -0.031629759818315506, 0.03001508302986622, 0.017752494663000107, 0.0016763503663241863, -0.0011084096040576696, -0.018389396369457245, 0.03763995319604874, -0.031001830473542213, 0.05389438569545746, 0.014119467698037624, -0.012738020159304142, 0.0027718651108443737, -0.018102342262864113, 0.026767784729599953, 0.05410967767238617, 0.013626093976199627, -0.03229357302188873, 0.002899693790823221, 0.02237227000296116, 0.10133005678653717, 0.022677265107631683, -0.0234846044331789, 0.04262751713395119, -0.08826909959316254, 0.0007910804124549031, 0.026103971526026726, 0.012343320995569229, 0.004487460944801569, 0.007185319904237986, -0.0032114165369421244, 0.01842527836561203, 0.019017325714230537, 0.02039877325296402, -0.022623442113399506, -0.058164313435554504, 0.01903526671230793, -0.0014532108325511217, -0.0028099894989281893, -0.028292758390307426, 0.017725583165884018, -0.0028660546522587538, -0.01613781601190567, 0.07800692319869995, -0.0004717889241874218, 0.005180427338927984, 0.03154005482792854, 0.03484117612242699, 0.04334515333175659, -0.046430982649326324, 0.062075424939394, -0.0023435265757143497, 0.015438121743500233, 0.027108659967780113, -0.004388786386698484, 0.009078082628548145, 0.012971252202987671, 0.0021495409309864044, 0.013330069370567799, -0.0029961259569972754, -0.03152211382985115, -0.02913597971200943, -0.032239750027656555, -0.005449540447443724, -0.06193189695477486, 0.04592863842844963, -0.004301324486732483, 0.02962038293480873, 0.004700508899986744, -0.030894184485077858, -0.06677593290805817, 0.018344543874263763, 0.022426092997193336, -0.012944340705871582, 0.003830376546829939, 0.005947399884462357, -0.02475840598344803 ]
9,552
asyncclick.core
prompt_for_value
This is an alternative flow that can be activated in the full value processing if a value does not exist. It will prompt the user until a valid value exists and then returns the processed value as result.
def prompt_for_value(self, ctx: Context) -> t.Any: """This is an alternative flow that can be activated in the full value processing if a value does not exist. It will prompt the user until a valid value exists and then returns the processed value as result. """ assert self.prompt is not None # Calculate the default before prompting anything to be stable. default = self.get_default(ctx) # If this is a prompt for a flag we need to handle this # differently. if self.is_bool_flag: return confirm(self.prompt, default) return prompt( self.prompt, default=default, type=self.type, hide_input=self.hide_input, show_choices=self.show_choices, confirmation_prompt=self.confirmation_prompt, value_proc=lambda x: self.process_value(ctx, x), )
(self, ctx: asyncclick.core.Context) -> Any
[ 0.08419646322727203, -0.038745272904634476, 0.000005101735496282345, -0.04812677949666977, 0.06567052751779556, -0.009796390309929848, 0.038440458476543427, -0.06164021044969559, 0.0659414753317833, -0.05188615247607231, 0.021472468972206116, 0.03183615207672119, -0.0164345670491457, -0.0011927973246201873, -0.0496169812977314, 0.04396098479628563, 0.07823564857244492, 0.04714459925889969, 0.05628902465105057, 0.06021774187684059, 0.04782196506857872, 0.02005000226199627, -0.0019929346162825823, -0.014910495840013027, -0.02082897163927555, -0.04494316503405571, 0.02789050154387951, -0.03559552878141403, -0.039151694625616074, 0.02809371054172516, 0.05039595067501068, -0.003236534306779504, 0.02609548345208168, 0.038948483765125275, 0.0013155697379261255, -0.015697931870818138, -0.06021774187684059, 0.11257804930210114, -0.05547618865966797, -0.050057269632816315, -0.03124345652759075, -0.029296033084392548, 0.004330901894718409, 0.021557139232754707, -0.0714619979262352, -0.014461740851402283, 0.005114105064421892, 0.052224837243556976, -0.013445693999528885, -0.01245504803955555, 0.0481945164501667, 0.023961784318089485, -0.0029825223609805107, -0.0007710317731834948, -0.02401258610188961, 0.006688978523015976, -0.03681478276848793, -0.010245144367218018, -0.008915815502405167, 0.023369090631604195, -0.013775909319519997, 0.032784461975097656, -0.03481655567884445, -0.015520123764872551, 0.013191682286560535, 0.003312737913802266, 0.04883801192045212, -0.008467061445116997, -0.05059916153550148, 0.002662890823557973, -0.042538516223430634, -0.013217083178460598, -0.06976858526468277, 0.03237804397940636, 0.05296993628144264, -0.037255071103572845, -0.03263205662369728, -0.013445693999528885, 0.02341989241540432, 0.0089835524559021, 0.006024314556270838, 0.008966618217527866, 0.012234903872013092, -0.05649223551154137, -0.04616241902112961, 0.05012500658631325, 0.02778889611363411, 0.030142739415168762, 0.08399324864149094, 0.07532297819852829, 0.008191881701350212, -0.03166681155562401, 0.013877513818442822, 0.04135312885046005, 0.03085397183895111, 0.016138220205903053, 0.05425693094730377, -0.021235391497612, -0.03816951438784599, -0.0004416101728565991, -0.026840586215257645, 0.0483977235853672, 0.07295220345258713, -0.01617208682000637, 0.0206257626414299, -0.02995646372437477, 0.017340542748570442, 0.007141966372728348, 0.124567411839962, 0.004648416768759489, -0.041522469371557236, -0.0688202753663063, -0.015426985919475555, 0.0020659631118178368, -0.014783489517867565, 0.005097171291708946, -0.06191115453839302, 0.02738247811794281, 0.038745272904634476, 0.01165067683905363, -0.048770274966955185, 0.02489316090941429, 0.01767922379076481, -0.06478995829820633, 0.05628902465105057, 0.06238530948758125, -0.028195315971970558, -0.05486655980348587, -0.018983151763677597, 0.09469562023878098, -0.0030735433101654053, 0.003302154131233692, -0.0014923196285963058, 0.010617695748806, -0.016815584152936935, 0.039050087332725525, -0.02917749434709549, 0.017696158960461617, 0.05496816337108612, 0.035866472870111465, 0.02987179346382618, 0.002281873021274805, -0.02143860049545765, -0.05205549672245979, 0.03153133764863014, -0.007302840705960989, 0.05249578133225441, 0.029634715989232063, 0.004898195154964924, -0.008670271374285221, 0.021557139232754707, 0.0253165140748024, -0.01925409771502018, 0.07911622524261475, 0.016900254413485527, 0.06854932755231857, 0.012488915584981441, -0.0712587907910347, 0.022285306826233864, -0.028042908757925034, 0.0036895221564918756, -0.028940416872501373, 0.06726233661174774, 0.03535844758152962, 0.009144426323473454, 0.06407872587442398, 0.011184988543391228, 0.05943877249956131, 0.07749054580926895, 0.033207815140485764, -0.01964358240365982, -0.039930664002895355, -0.027822764590382576, -0.028906548395752907, 0.028398524969816208, 0.02905895560979843, -0.009135959669947624, -0.045789867639541626, 0.031514402478933334, -0.043215882033109665, -0.04924442991614342, -0.031514402478933334, -0.05347796157002449, -0.011345862410962582, 0.03115878626704216, 0.02628175914287567, 0.04751715064048767, 0.017916303128004074, 0.006447667255997658, 0.0040663061663508415, -0.0873800739645958, -0.0020236277487128973, 0.02670511230826378, 0.04081123694777489, -0.05039595067501068, -0.023877114057540894, -0.0004715094983112067, 0.00006439597200369462, 0.006108984816819429, -0.0835190936923027, 0.02956697903573513, -0.0659414753317833, 0.03054915927350521, -0.004737320821732283, -0.016790183261036873, 0.004872793797403574, -0.007391744758933783, -0.014605681411921978, -0.025130238384008408, -0.05632289499044418, -0.08439967036247253, -0.01566406339406967, 0.012582053430378437, 0.022403845563530922, -0.01955891214311123, -0.029533110558986664, 0.10052095353603363, -0.049447640776634216, -0.042911067605018616, 0.05141199752688408, 0.04551892355084419, -0.04683978483080864, 0.06712686270475388, 0.015943476930260658, 0.0996403843164444, 0.008335822261869907, -0.028635602444410324, -0.035460054874420166, -0.018085643649101257, 0.020964445546269417, -0.0065789069049060345, 0.006837152410298586, -0.01448714267462492, -0.022048229351639748, -0.05371503904461861, 0.017611488699913025, 0.05842272564768791, -0.013318687677383423, -0.08162247389554977, 0.10072416812181473, 0.0012827598256990314, 0.029719386249780655, 0.017628422006964684, 0.005008266773074865, -0.03485042601823807, 0.014732686802744865, 0.054019853472709656, 0.01235344260931015, -0.02413112483918667, -0.023064276203513145, 0.02450367622077465, -0.007815097458660603, 0.006629709154367447, -0.009660917334258556, 0.03297073766589165, -0.02074430137872696, -0.030345948413014412, -0.020896708592772484, 0.051852285861968994, 0.03444400802254677, -0.04863480105996132, 0.007387511432170868, -0.04755101725459099, 0.07627128809690475, -0.042470782995224, -0.027653424069285393, -0.05842272564768791, -0.013758975081145763, 0.019779056310653687, 0.001427758252248168, 0.017933236435055733, 0.043520696461200714, 0.008898882195353508, 0.006913356017321348, -0.001708229654468596, 0.0015928660286590457, 0.010490689426660538, 0.058998484164476395, -0.04643336683511734, -0.02452061139047146, 0.0031137620098888874, -0.016553105786442757, 0.026840586215257645, -0.0021442833822220564, -0.04721233621239662, 0.016773249953985214, -0.01966051757335663, -0.05666157603263855, 0.023352155461907387, -0.0023093910422176123, 0.005266512278467417, 0.017078062519431114, 0.04514637216925621, 0.017078062519431114, 0.0026226723566651344, -0.0012054978869855404, -0.051445867866277695, -0.02987179346382618, -0.010829371400177479, -0.005524757783859968, 0.05127652361989021, -0.007510283496230841, -0.050870105624198914, 0.01637529768049717, -0.004542578477412462, -0.006252924911677837, 0.06424806267023087, -0.02601081319153309, 0.010219743475317955, -0.020879773423075676, -0.0033550732769072056, 0.03161600977182388, 0.043791644275188446, 0.0033614234998822212, 0.001942132250405848, -0.021404732018709183, 0.06306267529726028, -0.060082267969846725, -0.014698819257318974, -0.011735347099602222, -0.0490073524415493, -0.0029973399359732866, 0.006765182130038738, 0.0036281358916312456, -0.06353683024644852, 0.0007996081258170307, -0.03691639006137848, 0.012234903872013092, 0.0034312766510993242, 0.016222890466451645, -0.04236917570233345, -0.012759861536324024, -0.006066649686545134, 0.027856633067131042, -0.01578260213136673, 0.022505449131131172, -0.018034841865301132, 0.04175954684615135, 0.05862593650817871, -0.004453674424439669, 0.018085643649101257, -0.038440458476543427, 0.0005011442117393017, -0.01706959679722786, 0.03949037566781044, -0.016222890466451645, 0.0351213701069355, -0.0009282016544602811, 0.10648176819086075, -0.03867753595113754, -0.02748408168554306, 0.041928891092538834, -0.004838925786316395, -0.03142973408102989, 0.027348609641194344, -0.013420293107628822, 0.03254738450050354, -0.009500043466687202, -0.011100317351520061, -0.0434868298470974, 0.05835498869419098, -0.013454160653054714, 0.00022596470080316067, 0.03603581339120865, -0.06279172748327255, -0.028940416872501373, 0.006159787531942129, 0.03203936293721199, 0.02966858446598053, 0.03969358652830124, -0.01185388583689928, -0.02452061139047146, 0.03126038983464241, -0.05202162638306618, 0.010389084927737713, 0.030125806108117104, -0.03075236827135086, -0.005410452373325825, 0.011557538993656635, -0.006227524019777775, 0.1020788922905922, 0.011582939885556698, -0.0481945164501667, 0.013962185010313988, -0.019169427454471588, -0.03569713234901428, -0.025062503293156624, 0.03701799362897873, -0.031226523220539093, 0.0026438399218022823, 0.0077600618824362755, -0.006832918617874384, 0.05598421022295952, -0.01518990844488144, 0.027009926736354828, -0.0019230813486501575, 0.02738247811794281, -0.020371749997138977, -0.061674077063798904, 0.004142509773373604, 0.03888074681162834, 0.03222563490271568, 0.0079124690964818, -0.029329901561141014, -0.031023314222693443, -0.020016133785247803, -0.007891301065683365, 0.009119025431573391, -0.0357309989631176, -0.017238937318325043, -0.02729780599474907, -0.04883801192045212, 0.016078950837254524, 0.012133299373090267, -0.013276352547109127, -0.03134506195783615, -0.07843885570764542, 0.017425213009119034, 0.002476615598425269, -0.005994679871946573, -0.01259898766875267, -0.007662690710276365, -0.013843645341694355, 0.05713573098182678, 0.014614148065447807, 0.026349496096372604, 0.0169510580599308, 0.022759461775422096, -0.0031243457924574614, -0.026417233049869537, -0.011845419183373451, -0.013267885893583298, 0.023690838366746902, -0.023589232936501503, -0.009940329939126968, -0.006020080763846636, -0.004936296958476305, -0.0008350639254786074, -0.012285706587135792, 0.0353245809674263, -0.020422551780939102, 0.045010898262262344, 0.033969853073358536, 0.0667543113231659, 0.02638336457312107, -0.008416259661316872, -0.01884767971932888, 0.04257238656282425, -0.045789867639541626, -0.015528591349720955, -0.019626649096608162, 0.00657467357814312, 0.06113218516111374, 0.01576566882431507, -0.036747045814991, 0.022962670773267746, -0.07478109002113342, 0.03161600977182388, -0.030532224103808403, -0.032598186284303665, 0.024435939267277718, 0.018085643649101257, -0.042809464037418365, -0.04755101725459099, -0.014461740851402283, 0.0217434149235487, -0.0007281673024408519, 0.01982985809445381, -0.05408759042620659, 0.01557939313352108, -0.06854932755231857, -0.017797764390707016, 0.024537544697523117, 0.04233530908823013, -0.007908235304057598, -0.03847432881593704, -0.005215710029006004, -0.015367716550827026, -0.010803970508277416, -0.026654310524463654, -0.007294373586773872, 0.012996939942240715, 0.032682858407497406, 0.03337715566158295, 0.008145313709974289, -0.023165879771113396, 0.028432393446564674, -0.0006588432588614523, 0.036476101726293564, 0.01596887782216072, -0.0206257626414299, 0.005651763640344143, 0.0249100960791111, 0.0011684545315802097, -0.033173948526382446, -0.018000973388552666, 0.026942189782857895, 0.0018024257151409984, 0.04081123694777489, -0.005876140668988228, -0.007988672703504562, 0.029245231300592422, 0.008687205612659454, -0.0426739901304245, 0.02054109238088131, -0.038440458476543427, -0.021353930234909058, 0.015528591349720955, -0.02413112483918667, 0.025130238384008408, 0.00667204475030303, 0.02560439519584179, 0.06238530948758125, -0.05744054540991783, 0.02511330507695675, -0.01653617061674595, 0.04118378832936287, -0.02115071937441826, 0.013090076856315136, -0.0326659232378006, -0.011201922781765461, -0.0013600217644125223, -0.047788094729185104, -0.03999840095639229, -0.02074430137872696, 0.0173574760556221, -0.060082267969846725, -0.010363683104515076, 0.011794616468250751, -0.02452061139047146, 0.010846305638551712, -0.025468921288847923, 0.04494316503405571, 0.028415458276867867, 0.023775508627295494, -0.06526411324739456, -0.03667931258678436, 0.031395863741636276, -0.12124831974506378, -0.016036614775657654, 0.011828484944999218, 0.042809464037418365, -0.058287251740694046, 0.025282645598053932, 0.09584713727235794, -0.028804942965507507, 0.004838925786316395, 0.03024434484541416, -0.01954197883605957, -0.03093864396214485, -0.06265625357627869, -0.04582373797893524, 0.03192082419991493, 0.0011864469852298498, -0.05479882284998894, -0.018695272505283356, 0.018424326553940773, 0.06814291328191757, 0.04524797573685646, -0.002673474606126547, 0.03395291790366173, -0.010380617342889309, -0.009593180380761623, -0.0722748413681984, 0.03603581339120865, -0.05266512185335159, -0.054019853472709656, -0.01747601479291916, 0.02301347441971302, 0.006502703297883272, 0.01235344260931015, -0.014952830970287323, 0.01314934715628624, 0.008259618654847145, 0.022674791514873505, -0.012759861536324024, -0.007357876747846603, 0.0018352356273680925, -0.01240424532443285, 0.04660270735621452, -0.06810904294252396, -0.029736319556832314, 0.01448714267462492, -0.08338361978530884, -0.008471295237541199, 0.003336022375151515, 0.019423440098762512, 0.03203936293721199, -0.026434166356921196, 0.037356674671173096, -0.06915895640850067, 0.023589232936501503, -0.04802517220377922, 0.023656969889998436, 0.06753328442573547, -0.011896221898496151, -0.021777283400297165, -0.03336022421717644, 0.015621728263795376, -0.01185388583689928, -0.08284173160791397, 0.036374498158693314, 0.005994679871946573, 0.03505363687872887, 0.06164021044969559, -0.046568840742111206, -0.02550278976559639, -0.03867753595113754, -0.015672530978918076, -0.00798443891108036, 0.028144512325525284, -0.0013727223267778754, 0.016019681468605995, 0.07911622524261475, -0.03793243691325188, 0.03214096650481224, -0.027856633067131042, -0.012666724622249603, -0.051445867866277695, 0.023656969889998436, -0.0412515252828598, 0.03163294121623039, -0.057813096791505814, -0.011227323673665524, -0.005541692022234201, -0.009389971382915974, -0.006443433929234743, 0.011887754313647747, -0.06709299981594086, -0.05073463171720505, -0.009339168667793274, 0.02739941142499447, 0.0010208101011812687, -0.0031158786732703447, -0.008572899736464024, -0.00494053028523922, 0.011735347099602222, -0.001409765798598528, -0.026925256475806236, -0.019575847312808037, -0.04148860275745392, 0.0020522039849311113, -0.014368603937327862, 0.022454647347331047, 0.018729140982031822, 0.026230957359075546, -0.09157973527908325, 0.011151120066642761, -0.002474498702213168, 0.00917829480022192, -0.007091164123266935, 0.025265712291002274, -0.0038546298164874315, 0.01612975262105465, 0.00743831368163228, -0.008098744787275791, 0.036848653107881546, -0.010990246199071407, -0.00887348037213087, -0.005876140668988228, -0.058592066168785095, 0.006032781209796667, -0.0033381390385329723, 0.012421179562807083, 0.030837038531899452, 0.03949037566781044, -0.07403598725795746, -0.027534885331988335, 0.011811550706624985, -0.049752455204725266, 0.021811150014400482, -0.03242884576320648, 0.010888641700148582, 0.025722933933138847, -0.03921942785382271, -0.0488041415810585, -0.04399485141038895, 0.03095557726919651, 0.012582053430378437, -0.0026840586215257645, 0.01974518783390522, -0.05330862104892731, 0.008831145241856575, 0.021591007709503174, -0.028923481702804565, -0.06238530948758125, 0.02509636990725994, -0.015283046290278435, -0.01827191933989525, -0.07911622524261475, -0.05926943197846413, -0.026535771787166595, -0.03495202958583832, -0.030532224103808403, -0.0696331113576889, -0.06990405917167664, -0.05371503904461861, 0.016756314784288406, -0.005291913636028767, 0.03253044933080673, 0.03762762248516083, -0.029736319556832314, 0.030329015105962753, -0.020896708592772484, -0.004424039740115404, 0.021370863541960716, -0.03158213943243027, -0.007353642955422401, -0.033969853073358536, 0.013648902997374535, -0.01784856617450714, 0.04067576304078102, -0.03979519009590149, -0.03789856657385826, -0.04541731998324394, 0.029025087133049965, -0.048668671399354935, 0.0510394461452961, 0.015630194917321205, 0.009339168667793274, -0.0005445379065349698, 0.022996539250016212, -0.014664950780570507, -0.027958236634731293, 0.04680591821670532, 0.0365438386797905, -0.048567064106464386, -0.018983151763677597, 0.07152973860502243, 0.00834005605429411, 0.01864446885883808, -0.00015902200539130718, -0.04592534154653549, 0.05632289499044418, 0.03718733415007591, 0.014910495840013027, 0.04094671085476875, 0.05161520838737488, -0.03037981688976288, -0.0018405275186523795, 0.018085643649101257, 0.005545925348997116, -0.0034101090859621763, -0.0657382681965828, 0.03087090700864792, -0.0003243942919652909, 0.029499242082238197, -0.038372721523046494, 0.005465488415211439, 0.030007267370820045, 0.01601121388375759, -0.007383277639746666, 0.03337715566158295, 0.05439240485429764, 0.0879897028207779, 0.03400371968746185, -0.011235791258513927, 0.044604480266571045, -0.018204182386398315, 0.0667543113231659, -0.03501976653933525, 0.046399496495723724, 0.04010000452399254, 0.015647130087018013, -0.010947911068797112, 0.012996939942240715, -0.02568906545639038, 0.06174181401729584 ]
9,553
asyncclick.core
resolve_envvar_value
null
def resolve_envvar_value(self, ctx: Context) -> t.Optional[str]: rv = super().resolve_envvar_value(ctx) if rv is not None: return rv if ( self.allow_from_autoenv and ctx.auto_envvar_prefix is not None and self.name is not None ): envvar = f"{ctx.auto_envvar_prefix}_{self.name.upper()}" rv = os.environ.get(envvar) if rv: return rv return None
(self, ctx: asyncclick.core.Context) -> Optional[str]
[ 0.03321677818894386, -0.04389172047376633, -0.003707307856529951, -0.008058792911469936, 0.041823338717222214, -0.0053418539464473724, 0.09570638835430145, -0.012392750009894371, 0.023313093930482864, -0.04007047787308693, 0.008527684025466442, 0.004436937626451254, -0.038002096116542816, -0.03919404372572899, 0.06317322701215744, 0.0411221943795681, 0.049711231142282486, 0.035267628729343414, 0.0819639340043068, 0.027081752195954323, 0.043260689824819565, -0.03828255459666252, -0.03510987013578415, -0.08014095574617386, -0.01349705457687378, 0.005604783538728952, 0.07109617441892624, -0.03139379993081093, -0.04291011765599251, 0.02340073697268963, 0.013838863000273705, -0.01877317577600479, 0.0252061877399683, 0.010201670229434967, 0.07134157419204712, -0.017949329689145088, -0.022506777197122574, 0.05577613785862923, -0.03933427482843399, -0.08960641920566559, -0.026468249037861824, 0.03376016393303871, 0.017940565943717957, -0.051674436777830124, -0.011402381584048271, -0.01833496056497097, -0.010447070933878422, 0.0450836680829525, 0.009754689410328865, 0.04834399372339249, 0.05297155678272247, -0.058615781366825104, -0.02068379707634449, 0.006739763077348471, 0.01062235701829195, 0.015258682891726494, 0.010447070933878422, -0.033479705452919006, -0.05735371634364128, 0.03163919970393181, -0.020596154034137726, -0.0020300359465181828, -0.030920524150133133, 0.003562696510925889, 0.003001780016347766, 0.007826538756489754, 0.020701326429843903, -0.008825670927762985, -0.000381521851522848, -0.0336725227534771, 0.00295795826241374, -0.06594274938106537, -0.10426036268472672, -0.03659980371594429, 0.10397990792989731, -0.02538147382438183, -0.05752900242805481, -0.023891540244221687, -0.0027235127054154873, -0.03624923154711723, 0.012252520769834518, -0.012813437730073929, -0.04974628612399101, -0.05195489525794983, 0.012331400066614151, 0.00904477946460247, -0.03500469774007797, 0.01715177670121193, 0.10292818397283554, -0.008602181449532509, 0.028466515243053436, 0.003908887039870024, 0.02625790610909462, 0.10671437531709671, 0.06867721676826477, -0.005013191606849432, 0.06681918352842331, 0.006007941905409098, 0.008431277237832546, -0.032165057957172394, -0.013470761477947235, 0.013514582999050617, 0.038002096116542816, 0.0036744417157024145, -0.008470715954899788, 0.040105532854795456, 0.016143878921866417, -0.003854110138490796, 0.05072788894176483, 0.005315560847520828, -0.04886985570192337, -0.010061440989375114, -0.027221981436014175, 0.008242843672633171, -0.03369005024433136, 0.004921166226267815, -0.04396183416247368, 0.03519751504063606, 0.036073945462703705, 0.016862554475665092, -0.0252061877399683, 0.03726589307188988, -0.014198199845850468, -0.02897484600543976, 0.020788969472050667, 0.030324550345540047, -0.049325600266456604, -0.003578033996745944, 0.022191261872649193, 0.015074632130563259, 0.019421735778450966, 0.05128880590200424, -0.02576710470020771, -0.06205139309167862, 0.005512758158147335, 0.006235814653337002, 0.022086089476943016, 0.09093859791755676, -0.002309398725628853, 0.03321677818894386, -0.013391883112490177, 0.0008747887914068997, -0.035092342644929886, -0.07740648090839386, 0.00904477946460247, 0.04021070525050163, 0.06864216178655624, 0.02576710470020771, -0.0584755502641201, -0.019491849467158318, 0.05356753244996071, 0.028378872200846672, -0.046731360256671906, 0.016573330387473106, 0.012988723814487457, 0.0464509017765522, -0.022804763168096542, -0.023891540244221687, 0.023242980241775513, -0.02569698914885521, 0.0022677681408822536, -0.04539918154478073, -0.04021070525050163, -0.05518016591668129, 0.07684556394815445, 0.045434240251779556, 0.03747623786330223, 0.014916874468326569, 0.07369041442871094, 0.019579492509365082, -0.052866384387016296, -0.018124615773558617, 0.007528551854193211, -0.001532660680823028, -0.015819599851965904, 0.05766923353075981, 0.016187701374292374, -0.026047563180327415, -0.004741497803479433, 0.0464509017765522, -0.021577758714556694, -0.02601250447332859, -0.001964303432032466, -0.009097365662455559, 0.027730312198400497, 0.06057898700237274, 0.021700458601117134, -0.01733582653105259, 0.03754635155200958, 0.05693303048610687, -0.054899707436561584, 0.005775687750428915, 0.016643445938825607, -0.02669612132012844, 0.00602108845487237, -0.02539900317788124, 0.021910803392529488, -0.05370775982737541, -0.028501572087407112, -0.03447883948683739, 0.007375176064670086, -0.03370757773518562, -0.02334815077483654, 0.042208969593048096, -0.025749575346708298, 0.0053637647069990635, 0.0016531700966879725, -0.0069676353596150875, 0.00276295212097466, 0.010447070933878422, -0.09956268966197968, -0.055285338312387466, -0.016056235879659653, 0.020771440118551254, -0.006345368456095457, -0.006183228455483913, -0.028221113607287407, -0.008093850687146187, -0.016389280557632446, 0.07558350265026093, 0.04420723393559456, -0.044312406331300735, 0.10671437531709671, 0.011078101582825184, 0.03363746404647827, -0.02687140926718712, -0.022699590772390366, -0.015872186049818993, 0.015714427456259727, 0.017125483602285385, -0.00957063864916563, 0.024855615571141243, 0.034584011882543564, 0.005701190792024136, 0.04280494526028633, -0.01489934604614973, 0.036564748734235764, 0.052480753511190414, -0.007471583783626556, -0.0034706711303442717, -0.01433842908591032, -0.0020880994852632284, 0.03090299665927887, 0.021577758714556694, 0.034145794808864594, -0.013987856917083263, 0.011060573160648346, 0.03596877306699753, 0.04007047787308693, -0.002159309573471546, 0.06506632268428802, 0.01877317577600479, -0.03239293023943901, 0.018720589578151703, 0.017984386533498764, -0.02012288197875023, -0.03128862753510475, 0.02471538633108139, 0.0010029670083895326, -0.0061963750049471855, -0.015302504412829876, 0.04557447135448456, 0.020911669358611107, -0.01177048310637474, -0.06299793720245361, 0.021262243390083313, 0.04143771156668663, -0.04571469873189926, -0.015144746750593185, 0.008006207644939423, -0.011717896908521652, 0.031744372099637985, -0.014443601481616497, -0.02068379707634449, 0.007068424951285124, 0.009754689410328865, -0.0344262532889843, 0.028448985889554024, -0.01970219425857067, 0.003838772652670741, -0.022313961759209633, -0.018527774140238762, 0.0350397564470768, 0.0336725227534771, -0.029675990343093872, -0.02713433839380741, -0.01660838909447193, -0.09395352005958557, 0.0353202149271965, 0.003597753820940852, -0.03386533632874489, 0.0064198654145002365, 0.010394484736025333, 0.022682063281536102, -0.038247495889663696, -0.029886335134506226, 0.016450630500912666, -0.009754689410328865, 0.007874742150306702, -0.004167434759438038, 0.02087661251425743, 0.03405815362930298, -0.09072825312614441, 0.011069337837398052, 0.01161272544413805, 0.049080196768045425, 0.0450836680829525, -0.047467563301324844, 0.021770574152469635, 0.0040907468646764755, -0.04354114830493927, 0.014776645228266716, -0.025609346106648445, 0.015942299738526344, -0.006796731147915125, 0.007857213728129864, 0.04080668091773987, 0.004408453591167927, 0.010052676312625408, 0.016520746052265167, -0.029623406007885933, 0.006919431500136852, -0.02767772600054741, -0.03314666077494621, 0.036564748734235764, 0.057634174823760986, 0.02359355241060257, 0.020350754261016846, 0.049255482852458954, 0.059983015060424805, -0.08883515745401382, -0.014075499959290028, -0.023768838495016098, 0.011928240768611431, 0.048273880034685135, -0.052480753511190414, 0.0028002006001770496, 0.014452365227043629, 0.0333394780755043, -0.05086812004446983, -0.041893456131219864, -0.039719901978969574, -0.00520162470638752, 0.009675810113549232, -0.00003731683682417497, -0.024995842948555946, 0.008431277237832546, -0.0023860863875597715, 0.03209494426846504, -0.09787993878126144, -0.03912393003702164, -0.02476797066628933, -0.025346416980028152, -0.004903637804090977, -0.0122963422909379, -0.007971149869263172, -0.054373849183321, 0.0773363709449768, 0.05188478156924248, 0.0018974755657836795, -0.02099931426346302, -0.055460624396800995, 0.011972062289714813, 0.03807220980525017, -0.0027804807759821415, 0.013707398436963558, -0.023295564576983452, -0.0018591316184028983, -0.005324325058609247, -0.01114821620285511, -0.008536448702216148, 0.014785409905016422, 0.04725721850991249, -0.108467236161232, -0.02792312763631344, 0.01003514789044857, -0.03968484699726105, -0.02432975545525551, 0.039229102432727814, -0.000977221759967506, 0.015574198216199875, 0.02359355241060257, -0.01204217690974474, -0.0002900442632380873, -0.05581119656562805, -0.006121878512203693, -0.025907333940267563, -0.016678502783179283, 0.040596336126327515, -0.01151631772518158, -0.010552242398262024, 0.044803209602832794, 0.047467563301324844, 0.03617911785840988, 0.019474321976304054, -0.027712782844901085, -0.03782681003212929, -0.04305034503340721, 0.06958870589733124, 0.07726625353097916, -0.021507643163204193, -0.004209065344184637, 0.0638042539358139, 0.001952252583578229, 0.0008364449022337794, -0.02483808621764183, 0.010745057836174965, 0.00005405805859481916, -0.01368987001478672, 0.0076337237842381, -0.071867436170578, -0.07155191898345947, 0.04897502809762955, -0.02397918328642845, -0.03246304392814636, -0.0002664901257958263, 0.007064042612910271, 0.03277856111526489, 0.05766923353075981, -0.027519967406988144, -0.08841446787118912, 0.0027717165648937225, -0.018229788169264793, 0.05798474699258804, -0.03288373351097107, 0.051989953964948654, -0.0021198701579123735, -0.0011711324332281947, 0.032848674803972244, -0.03758141025900841, 0.0010363809997215867, -0.030885467305779457, -0.021542701870203018, 0.0029119455721229315, 0.00552590424194932, 0.01770392805337906, 0.03072771057486534, 0.008006207644939423, -0.006529419217258692, -0.02483808621764183, -0.04950088635087013, 0.010534713976085186, -0.01390897762030363, 0.06692435592412949, 0.022015973925590515, 0.033479705452919006, -0.05293649807572365, 0.03200729936361313, -0.053041670471429825, -0.04136759415268898, 0.006038617342710495, -0.012226227670907974, -0.05654739961028099, -0.0198774803429842, -0.05290144309401512, -0.029009902849793434, -0.039299216121435165, 0.026433192193508148, -0.003606518032029271, 0.014057970605790615, -0.0021352076437324286, 0.04178828373551369, 0.0023291183169931173, -0.01776527799665928, 0.0018854246009141207, -0.008562741801142693, 0.004903637804090977, 0.01770392805337906, -0.04136759415268898, -0.013724926859140396, -0.04960605874657631, 0.0037336007226258516, -0.010552242398262024, 0.0019697812385857105, -0.021349886432290077, 0.02007029578089714, -0.012103527784347534, 0.01177048310637474, 0.005350618157535791, 0.02550417371094227, -0.06327839940786362, 0.07270880788564682, 0.029185188934206963, 0.021384943276643753, 0.03549550101161003, -0.03041219338774681, -0.010841465555131435, 0.009123657830059528, -0.0028067738749086857, 0.01715177670121193, 0.04553941264748573, 0.05844049155712128, -0.03635440394282341, 0.011533846147358418, 0.018299901857972145, 0.02886967360973358, 0.07579384744167328, 0.009439174085855484, 0.04168311133980751, 0.008808142505586147, 0.001698087202385068, 0.0040929378010332584, 0.046170443296432495, 0.056827858090400696, -0.03430355340242386, -0.0851190835237503, -0.08217427134513855, 0.03416332229971886, -0.008681059814989567, 0.0020475646015256643, 0.014846759848296642, 0.001076368149369955, 0.03828255459666252, -0.0797903761267662, 0.013111424632370472, 0.04999168589711189, -0.03249810263514519, -0.04550435394048691, -0.0026818823534995317, 0.019088691100478172, -0.0851190835237503, -0.024434927850961685, -0.02811594121158123, -0.01734459213912487, 0.007050896529108286, -0.014557537622749805, 0.010613593272864819, 0.041087135672569275, -0.043260689824819565, 0.043015286326408386, -0.028133470565080643, -0.02359355241060257, -0.011849362403154373, 0.06296288222074509, 0.10664425790309906, 0.0584755502641201, -0.07085077464580536, 0.020964255556464195, -0.08231450617313385, 0.003334824228659272, 0.015460262075066566, -0.04000036045908928, -0.024732913821935654, 0.04305034503340721, -0.019176334142684937, -0.039719901978969574, -0.008536448702216148, 0.05882612243294716, 0.0025832836981862783, -0.008089468814432621, -0.0218582171946764, 0.005745012313127518, 0.03603888675570488, 0.03193718567490578, -0.053602587431669235, -0.07102605700492859, -0.008650384843349457, 0.03127109631896019, -0.029465647414326668, 0.04038599133491516, 0.038247495889663696, 0.01629287376999855, -0.004956223536282778, 0.0530066154897213, -0.012270049192011356, -0.07467201352119446, -0.08918572962284088, 0.018422603607177734, 0.054479021579027176, -0.0010988267604261637, -0.020911669358611107, -0.06569734960794449, 0.006678412668406963, -0.003236225573346019, -0.055285338312387466, 0.0252061877399683, 0.08589034527540207, 0.011533846147358418, 0.022313961759209633, 0.03863312676548958, -0.03645957633852959, -0.027730312198400497, -0.032165057957172394, 0.011542610824108124, -0.060298528522253036, -0.025556759908795357, 0.06874733418226242, 0.062472082674503326, -0.009868625551462173, -0.09227076917886734, -0.07740648090839386, 0.0026818823534995317, 0.02241913415491581, 0.020964255556464195, -0.0030784676782786846, -0.0331992469727993, -0.023733781650662422, -0.011998355388641357, 0.028641801327466965, -0.07099100202322006, 0.005745012313127518, -0.02063121274113655, 0.05518016591668129, 0.04844916611909866, 0.0011273107957094908, -0.020981784909963608, -0.050202030688524246, -0.002898799255490303, -0.017125483602285385, 0.010201670229434967, 0.003963664174079895, -0.004316428210586309, 0.010149084031581879, 0.04364632070064545, -0.05079800635576248, 0.03779175132513046, 0.010447070933878422, -0.005841420032083988, -0.030797824263572693, -0.04143771156668663, -0.017984386533498764, 0.0635237991809845, -0.018930934369564056, -0.013374353758990765, -0.007234947290271521, 0.04227908328175545, 0.034969642758369446, -0.02305016480386257, -0.03432108089327812, -0.011113159358501434, -0.016617152839899063, 0.026555892080068588, 0.029833748936653137, -0.0013365589547902346, -0.01118327397853136, -0.014145614579319954, 0.03498717024922371, 0.008440040983259678, -0.00539005734026432, -0.05405833199620247, 0.021823160350322723, 0.008545213378965855, 0.0029973979108035564, 0.05479453504085541, -0.0024364811833947897, 0.009596931748092175, -0.03041219338774681, 0.0316917859017849, -0.017852922901511192, 0.0002512895152904093, 0.010122790932655334, -0.05076294764876366, -0.012979959137737751, -0.006183228455483913, 0.03603888675570488, -0.013759983703494072, -0.010964165441691875, -0.007427762262523174, 0.0037248365115374327, 0.006560094188898802, -0.042208969593048096, -0.021945860236883163, -0.04757273569703102, 0.010087733156979084, 0.014732823707163334, -0.03435613960027695, -0.002117678988724947, -0.05752900242805481, 0.03877335786819458, -0.01566184125840664, 0.025959918275475502, -0.07768694311380386, -0.025977447628974915, 0.0014778836630284786, -0.018229788169264793, -0.02415446937084198, -0.0005335280438885093, 0.03425096720457077, 0.02371625229716301, -0.02445245534181595, 0.053357187658548355, -0.018860818818211555, 0.023944124579429626, 0.03670497611165047, -0.0010204956633970141, -0.03645957633852959, 0.02922024577856064, 0.0076337237842381, 0.06461057811975479, -0.033602405339479446, -0.020455924794077873, -0.015188568271696568, 0.005144656635820866, 0.05002674460411072, -0.03635440394282341, -0.08168347179889679, -0.0022743414156138897, 0.007379558403044939, 0.0007488016854040325, 0.02371625229716301, -0.002394850831478834, -0.0032252701930701733, 0.015547906048595905, -0.009263887070119381, 0.010473364032804966, -0.0002133564412361011, -0.003790568793192506, -0.014855524525046349, -0.03165672719478607, 0.049255482852458954, -0.0016630298923701048, -0.049395713955163956, 0.02501337230205536, -0.06685423851013184, 0.01443483680486679, 0.007949239574372768, -0.06163070723414421, 0.006752909626811743, -0.01771269366145134, 0.021700458601117134, -0.020859085023403168, 0.03137626871466637, 0.00904477946460247, -0.01396156381815672, 0.10061440616846085, 0.007440908811986446, -0.02378636784851551, 0.009929975494742393, 0.031060753390192986, 0.06138530373573303, -0.027888068929314613, -0.0035714609548449516, 0.0017342400969937444, 0.02979869209229946, 0.015311269089579582, 0.015258682891726494, -0.02527630142867565, -0.013461996801197529, -0.1058729961514473, 0.026731180027127266, 0.003518874989822507, 0.009360294789075851, -0.002738850424066186, 0.0035736518912017345, 0.055145107209682465, 0.039053816348314285, 0.01914127729833126, -0.010587300173938274, 0.010815172456204891, -0.03214753046631813, -0.005184095818549395, 0.05661751329898834, -0.007353265304118395, 0.011332266964018345, -0.012427807785570621, -0.03723083436489105, -0.027029165998101234, 0.045048609375953674, 0.047537676990032196, 0.04206874221563339, -0.04564458504319191, 0.00963198859244585, -0.05542556568980217, 0.015609255991876125, 0.006730998400598764, -0.04210379719734192, 0.018054502084851265, -0.008080704137682915 ]
9,557
asyncclick.core
value_from_envvar
null
def value_from_envvar(self, ctx: Context) -> t.Optional[t.Any]: rv: t.Optional[t.Any] = self.resolve_envvar_value(ctx) if rv is None: return None value_depth = (self.nargs != 1) + bool(self.multiple) if value_depth > 0: rv = self.type.split_envvar_value(rv) if self.multiple and self.nargs != 1: rv = batch(rv, self.nargs) return rv
(self, ctx: asyncclick.core.Context) -> Optional[Any]
[ 0.06578854471445084, -0.035088442265987396, -0.04918598383665085, -0.023294774815440178, 0.024263868108391762, -0.0024455857928842306, 0.08133058249950409, -0.016044870018959045, 0.03272970765829086, -0.049405403435230255, 0.01465522963553667, 0.0589866116642952, -0.02415415830910206, -0.01746193878352642, 0.053098924458026886, 0.049405403435230255, 0.04194522276520729, 0.05880376696586609, 0.10839201509952545, 0.08535322546958923, 0.03459475189447403, -0.01447238214313984, -0.02698829583823681, -0.06421605497598648, -0.0076978811994194984, -0.05931573733687401, 0.08901017904281616, -0.04593129828572273, -0.030535537749528885, 0.03313197195529938, 0.028377937152981758, -0.009489786811172962, 0.002943845232948661, 0.035344429314136505, 0.03916594013571739, -0.03964134305715561, -0.03854425996541977, 0.06297268718481064, -0.04190865531563759, -0.09237457066774368, -0.023587331175804138, -0.03152291476726532, 0.02985900081694126, -0.0028569926507771015, -0.02872534655034542, -0.04944197088479996, 0.013018744066357613, 0.0018559024902060628, -0.02506839670240879, 0.013576429337263107, 0.04611414670944214, -0.015084921382367611, 0.0029484163969755173, 0.008644117042422295, 0.002639861311763525, -0.0032432579901069403, 0.005942544899880886, 0.029127610847353935, -0.027737969532608986, 0.04819861054420471, -0.03144977614283562, 0.01996695064008236, -0.016794545575976372, 0.013923839665949345, 0.002580435713753104, -0.01672140695154667, 0.020936042070388794, 0.03883681446313858, -0.05489083006978035, -0.0281768050044775, -0.08184255659580231, -0.053903453052043915, -0.10839201509952545, -0.01914413645863533, 0.06542284786701202, -0.027353990823030472, -0.03289427235722542, -0.000845098402351141, -0.021521154791116714, -0.0031404062174260616, 0.00534829031676054, 0.020734909921884537, -0.034722745418548584, -0.02925560437142849, 0.02051549218595028, 0.04468793794512749, -0.034503329545259476, 0.03865396976470947, 0.0871085599064827, 0.015011781826615334, 0.001810190500691533, -0.025141535326838493, -0.01938183791935444, 0.08615775406360626, 0.044870782643556595, 0.0011565106688067317, 0.07789304852485657, 0.009782343171536922, -0.021246882155537605, -0.031614337116479874, -0.02728085219860077, -0.04117726534605026, -0.01026688888669014, -0.019582970067858696, -0.0003294112393632531, 0.03607581928372383, 0.018394460901618004, -0.005585992243140936, 0.06293611973524094, -0.01183023490011692, -0.033058833330869675, -0.002495868830010295, -0.01705053262412548, 0.01068743783980608, -0.08484125137329102, 0.034210771322250366, -0.06224130094051361, 0.024958688765764236, 0.02082633413374424, 0.027774540707468987, -0.03497873246669769, 0.06856782734394073, 0.016986535862088203, -0.0038855099119246006, 0.040994416922330856, 0.05843807011842728, -0.03411934897303581, -0.026311758905649185, -0.011318261735141277, 0.03547241911292076, 0.029712723568081856, 0.03581983223557472, -0.034210771322250366, -0.03492387756705284, -0.029109327122569084, 0.01266219187527895, -0.022965649142861366, 0.02729913592338562, 0.00815499946475029, -0.045090202242136, 0.03435705229640007, 0.021246882155537605, -0.017361372709274292, -0.09683605283498764, -0.005430571734905243, 0.008785824291408062, 0.06897009164094925, 0.020332645624876022, -0.06015683710575104, 0.032217733561992645, -0.006125392392277718, -0.0002798424393404275, -0.032217733561992645, 0.027390560135245323, 0.021228598430752754, 0.03070010058581829, 0.004646612796932459, -0.05481769144535065, 0.07017688453197479, -0.034722745418548584, -0.039860762655735016, -0.034741029143333435, -0.01222335733473301, -0.02221597544848919, 0.07518690079450607, 0.03763002157211304, 0.03373536840081215, 0.015304338186979294, 0.022709663957357407, 0.037886008620262146, -0.00794015359133482, -0.0009119520545937121, 0.03609410300850868, -0.007848730310797691, -0.0211188904941082, 0.02589121088385582, -0.032802846282720566, -0.003972362726926804, -0.00886810477823019, 0.028597353026270866, -0.05130701884627342, 0.007259047124534845, 0.021850280463695526, -0.004840888548642397, 0.019034428521990776, 0.07398010790348053, 0.011848519556224346, -0.008218996226787567, 0.012781042605638504, 0.04103098437190056, -0.047723203897476196, 0.007711594458669424, 0.03064524568617344, -0.003339253133162856, -0.05459827184677124, -0.016648268327116966, 0.0019301841966807842, -0.03236401453614235, -0.033387959003448486, -0.032217733561992645, 0.019070997834205627, -0.055037107318639755, -0.008854391984641552, 0.05119730904698372, -0.07412638515233994, 0.014298676513135433, -0.019912095740437508, 0.00970006175339222, -0.011537679471075535, 0.003371251281350851, -0.0843292772769928, -0.05094132199883461, 0.012717045843601227, 0.025507230311632156, -0.0013119310606271029, -0.01908928155899048, -0.016118010506033897, -0.006248814519494772, 0.003570097964257002, 0.05434228479862213, 0.0730293020606041, -0.06582511216402054, 0.13662368059158325, 0.04593129828572273, 0.04278632253408432, -0.030224697664380074, -0.040628720074892044, 0.01883329637348652, -0.015231199562549591, 0.00941664818674326, 0.00017441940144635737, 0.029072757810354233, 0.0619121752679348, 0.009498929604887962, 0.005796266719698906, -0.003256971715018153, 0.09924963861703873, 0.01998523436486721, 0.03960477560758591, 0.044614795595407486, 0.008191569708287716, -0.006088822614401579, 0.0098371971398592, 0.0196926798671484, 0.03439361974596977, 0.013283872976899147, 0.05141672492027283, 0.00599282793700695, 0.032747991383075714, -0.013256445527076721, 0.01670312136411667, 0.06684906035661697, -0.017507651820778847, 0.03525300323963165, 0.01560603640973568, 0.017663070932030678, -0.013676995411515236, 0.007533318363130093, 0.010513733141124249, -0.021466299891471863, -0.026915157213807106, -0.015907734632492065, 0.0422743484377861, 0.013549001887440681, -0.09998103231191635, 0.007775591220706701, 0.031705763190984726, -0.04615071788430214, 0.028213374316692352, -0.006340238265693188, -0.044029686599969864, 0.035582128912210464, 0.0012627907563000917, 0.0005448284791782498, -0.011181126348674297, 0.03212631121277809, -0.013759276829659939, 0.01775449514389038, 0.053647466003894806, 0.017525935545563698, -0.026092343032360077, -0.02444671466946602, 0.003156405407935381, 0.010010901838541031, -0.03316854313015938, -0.0013565000845119357, -0.01773620955646038, -0.08118430525064468, 0.044578228145837784, 0.01885158009827137, -0.004555189050734043, 0.021484585478901863, 0.01620943285524845, 0.004018074367195368, -0.04359085112810135, -0.011738811619579792, -0.03975105285644531, -0.014060975052416325, 0.0450170636177063, 0.02786596305668354, 0.008342418819665909, 0.024263868108391762, -0.08111116290092468, 0.02166743203997612, 0.016099724918603897, 0.04761349782347679, 0.05178242176771164, -0.03208974003791809, 0.02053377777338028, 0.0019244702998548746, -0.020149797201156616, 0.022343968972563744, -0.0295847300440073, -0.014691798947751522, 0.005380288697779179, -0.00010570872836979106, 0.014691798947751522, -0.004932312294840813, -0.03792257606983185, -0.0011010849848389626, -0.024940403178334236, -0.02278280258178711, 0.01599915884435177, -0.030846377834677696, 0.0038260845467448235, 0.040409304201602936, 0.015158060006797314, 0.006587082054466009, 0.03411934897303581, 0.05375717207789421, -0.06129049137234688, 0.01672140695154667, -0.0239713117480278, 0.0296030156314373, 0.11073246598243713, -0.03858082741498947, -0.04428567364811897, 0.02642146870493889, 0.015030067414045334, -0.04585815966129303, -0.02728085219860077, -0.05843807011842728, -0.012168503366410732, 0.007355041801929474, 0.04033616557717323, -0.039275649935007095, 0.029968710616230965, 0.021850280463695526, 0.07635712623596191, -0.05609762296080589, -0.025214673951268196, -0.019253844395279884, -0.03581983223557472, 0.005878548137843609, -0.019034428521990776, 0.00454147532582283, -0.047101523727178574, 0.002719857031479478, 0.044870782643556595, -0.022161120548844337, 0.030480682849884033, 0.0013256445527076721, 0.013549001887440681, 0.04114069417119026, 0.013823273591697216, -0.022069696336984634, -0.028377937152981758, -0.014527236111462116, 0.014847219921648502, 0.019582970067858696, -0.008223568089306355, 0.02585464157164097, 0.05876719579100609, -0.06107107549905777, -0.0016501989448443055, 0.009064665995538235, -0.05437885597348213, -0.021210312843322754, 0.038397982716560364, 0.020606916397809982, -0.0323822982609272, 0.022417107596993446, -0.015231199562549591, 0.01816590130329132, -0.04051901400089264, 0.018924718722701073, -0.019473262131214142, -0.006367665249854326, 0.03492387756705284, 0.012973031960427761, -0.022343968972563744, 0.049112845212221146, 0.044907353818416595, -0.00534371891990304, 0.015304338186979294, -0.017041388899087906, -0.009809769690036774, -0.01799219660460949, 0.04812546819448471, 0.06659307330846786, 0.017589932307600975, 0.037556882947683334, 0.03400963917374611, 0.03720947355031967, -0.025781501084566116, -0.07218820601701736, -0.007112768944352865, 0.04059215262532234, -0.045748453587293625, -0.007419038563966751, 0.016456278041005135, -0.07833188027143478, 0.0478329136967659, -0.023843318223953247, -0.033589091151952744, -0.020972611382603645, 0.019875526428222656, 0.029328742995858192, 0.058108944445848465, -0.03781286999583244, -0.03799571841955185, -0.021758856251835823, -0.025379236787557602, 0.005709413904696703, 0.00397464819252491, 0.029895571991801262, -0.01407925970852375, 0.0007673882064409554, 0.019235560670495033, -0.011263407766819, -0.03748374432325363, -0.03402792662382126, 0.008013293147087097, -0.017233379185199738, 0.01787334680557251, 0.03479588404297829, 0.0008662401814945042, 0.05156300216913223, 0.06030311435461044, -0.0017816206673160195, -0.0817694142460823, 0.013640426099300385, 0.006166533101350069, 0.059242598712444305, -0.0029827002435922623, -0.03836141154170036, -0.048015762120485306, 0.05156300216913223, -0.057560402899980545, -0.06300926208496094, -0.022654809057712555, -0.03377193957567215, -0.004210064187645912, -0.004859173204749823, -0.0012467915657907724, -0.03282113000750542, -0.07994093745946884, 0.06110764294862747, 0.0479426234960556, 0.011446255259215832, 0.020405784249305725, 0.01265304908156395, -0.0061893886886537075, -0.06085165962576866, -0.02333134412765503, -0.021320022642612457, 0.04114069417119026, 0.018604736775159836, 0.00288670533336699, -0.024867264553904533, -0.0760645717382431, 0.023751894012093544, 0.03187032416462898, 0.0507219061255455, 0.022417107596993446, -0.002635289914906025, 0.042347487062215805, -0.010148038156330585, -0.03148634359240532, -0.006152819376438856, -0.04732093960046768, 0.00866240169852972, 0.04830831661820412, 0.02194170281291008, -0.01572488807141781, -0.027427129447460175, 0.013850700110197067, 0.006637365557253361, 0.01830303855240345, 0.02473927102982998, -0.012159360572695732, 0.04326172545552254, 0.015130633488297462, -0.03011498786509037, 0.028816770762205124, 0.029657868668437004, 0.020094944164156914, -0.0030581250321120024, 0.061509910970926285, 0.023002218455076218, -0.01236049272119999, 0.03677063807845116, 0.025379236787557602, 0.004822603426873684, -0.05719470605254173, -0.044322241097688675, -0.03583811596035957, -0.013018744066357613, -0.05002708360552788, -0.012186788022518158, 0.0027655689045786858, 0.03216288238763809, 0.02505011111497879, -0.05862091854214668, 0.02616548165678978, 0.07471150159835815, 0.0017587647307664156, -0.024062734097242355, -0.031614337116479874, 0.019034428521990776, -0.053318340331315994, -0.02333134412765503, 0.003053553868085146, -0.033936500549316406, -0.0022878798190504313, -0.00955378357321024, -0.03453989699482918, 0.04812546819448471, -0.036185525357723236, -0.002909561386331916, -0.004735751077532768, -0.026366613805294037, 0.007912727072834969, 0.06772672384977341, 0.09105806797742844, -0.04523647949099541, -0.040080178529024124, 0.022380538284778595, -0.07730793952941895, 0.0011553678195923567, -0.01670312136411667, -0.030498968437314034, -0.015249484218657017, 0.07076199352741241, -0.00831042043864727, -0.007003060542047024, 0.015807168558239937, 0.05880376696586609, -0.0016044870717450976, -0.02786596305668354, -0.018961288034915924, 0.0008216710994020104, 0.041542958468198776, 0.06560569256544113, -0.029639584943652153, -0.07295616716146469, -0.027993956580758095, 0.039531636983156204, -0.03190689533948898, -0.020149797201156616, 0.04165266826748848, -0.007117340341210365, -0.01675797626376152, 0.038471121340990067, -0.03439361974596977, -0.06114421412348747, -0.11124444007873535, -0.007185908034443855, 0.05287950485944748, 0.009009812027215958, -0.01658427156507969, -0.08359789103269577, 0.0035792402923107147, -0.007601886056363583, 0.024428430944681168, 0.02058863267302513, 0.008145857602357864, -0.01561517920345068, 0.01847674325108528, 0.060668811202049255, -0.04454165697097778, 0.0018776155775412917, -0.037520311772823334, -0.0031198360957205296, -0.014691798947751522, 0.009425790049135685, 0.06875067204236984, 0.05565878748893738, 0.007761877495795488, -0.025178104639053345, -0.021521154791116714, 0.024263868108391762, 0.0253060981631279, 0.06242414563894272, 0.01634657010436058, -0.04278632253408432, -0.045748453587293625, 0.0267505943775177, 0.005860263481736183, -0.05324520170688629, -0.001128512085415423, -0.040994416922330856, 0.0507219061255455, 0.03578326106071472, 0.006230529397726059, -0.0478694848716259, -0.006367665249854326, -0.018495026975870132, 0.00041026415419764817, 0.0017347659450024366, 0.03380850702524185, -0.03453989699482918, -0.019290413707494736, 0.06831184029579163, -0.0032249733339995146, 0.04991737753152847, -0.03468617796897888, 0.012470201589167118, -0.04955168068408966, -0.0238798875361681, -0.006591653451323509, 0.01646541990339756, -0.03470446169376373, -0.02753683738410473, 0.018193328753113747, -0.020424069836735725, 0.052477240562438965, -0.04366398975253105, -0.07485777884721756, -0.03766659274697304, 0.00463518500328064, 0.03627695143222809, 0.04750378802418709, -0.013914696872234344, -0.005878548137843609, -0.006628222763538361, 0.012013082392513752, -0.03543585166335106, -0.01660255528986454, -0.008022435009479523, -0.026842016726732254, 0.006001970265060663, -0.006920779123902321, 0.03488731011748314, 0.019345268607139587, -0.02810366451740265, -0.022417107596993446, 0.022910796105861664, -0.0267323087900877, 0.039495065808296204, 0.01364956796169281, -0.034485045820474625, -0.03260171413421631, 0.014417528174817562, 0.01350328978151083, 0.03267485275864601, 0.0394219271838665, -0.00919265951961279, -0.03229087218642235, 0.004283203277736902, -0.0535743273794651, 0.010376597754657269, -0.015295196324586868, 0.012854181230068207, -0.021502869203686714, -0.025543799623847008, -0.018065335229039192, -0.020369214937090874, 0.07847815752029419, -0.037026625126600266, 0.012342208065092564, -0.08125744014978409, -0.0393853597342968, 0.028377937152981758, -0.03916594013571739, -0.07284645736217499, -0.001916470704600215, 0.047101523727178574, 0.018924718722701073, -0.024373576045036316, 0.013192449696362019, -0.038727108389139175, 0.041469819843769073, 0.05456170439720154, 0.006303668487817049, -0.03876367583870888, 0.04249376431107521, 0.014499809592962265, 0.04355427995324135, -0.017626501619815826, -0.0018056193366646767, -0.005243152845650911, 0.006116250064224005, -0.02846936136484146, -0.07233448326587677, -0.05602448433637619, -0.01605401374399662, 0.012817611917853355, -0.0063448091968894005, 0.045090202242136, -0.03408277779817581, -0.041542958468198776, -0.006971062161028385, -0.04033616557717323, 0.031413204967975616, 0.0034032496623694897, 0.0019187562866136432, -0.0004865458467975259, -0.04871058091521263, 0.033826794475317, -0.0196743942797184, -0.020716624334454536, 0.0023015933111310005, -0.05657302588224411, 0.002626147586852312, 0.03708148002624512, -0.07635712623596191, 0.01140054315328598, -0.025415806099772453, -0.003016984323039651, -0.010102326050400734, 0.010157180018723011, 0.002978129079565406, -0.01307359803467989, 0.07346814125776291, -0.0253060981631279, -0.0009668063139542937, 0.02558036893606186, 0.051892127841711044, 0.006555084139108658, -0.03920251131057739, -0.028816770762205124, 0.016282573342323303, -0.012195929884910583, 0.01250677090138197, 0.018138475716114044, -0.02506839670240879, -0.004587187431752682, -0.0842561423778534, -0.011921659111976624, 0.012013082392513752, 0.01265304908156395, 0.0029209894128143787, -0.0154780438169837, 0.04070185869932175, 0.017818491905927658, 0.008383559063076973, -0.03629523515701294, 0.014673514291644096, -0.07664968818426132, -0.010495448485016823, 0.04929569363594055, 0.018074478954076767, 0.013009602203965187, 0.03781286999583244, -0.0449439212679863, -0.006353951524943113, 0.02163086272776127, 0.013393581844866276, 0.024282151833176613, -0.04538275673985481, 0.012707903049886227, -0.048235177993774414, 0.02784767933189869, -0.008977813646197319, -0.013996978290379047, 0.01208622194826603, -0.018760155886411667 ]
9,559
asyncclick.parser
OptionParser
The option parser is an internal class that is ultimately used to parse options and arguments. It's modelled after optparse and brings a similar but vastly simplified API. It should generally not be used directly as the high level Click classes wrap it for you. It's not nearly as extensible as optparse or argparse as it does not implement features that are implemented on a higher level (such as types or defaults). :param ctx: optionally the :class:`~click.Context` where this parser should go with.
class OptionParser: """The option parser is an internal class that is ultimately used to parse options and arguments. It's modelled after optparse and brings a similar but vastly simplified API. It should generally not be used directly as the high level Click classes wrap it for you. It's not nearly as extensible as optparse or argparse as it does not implement features that are implemented on a higher level (such as types or defaults). :param ctx: optionally the :class:`~click.Context` where this parser should go with. """ def __init__(self, ctx: t.Optional["Context"] = None) -> None: #: The :class:`~click.Context` for this parser. This might be #: `None` for some advanced use cases. self.ctx = ctx #: This controls how the parser deals with interspersed arguments. #: If this is set to `False`, the parser will stop on the first #: non-option. Click uses this to implement nested subcommands #: safely. self.allow_interspersed_args: bool = True #: This tells the parser how to deal with unknown options. By #: default it will error out (which is sensible), but there is a #: second mode where it will ignore it and continue processing #: after shifting all the unknown options into the resulting args. self.ignore_unknown_options: bool = False if ctx is not None: self.allow_interspersed_args = ctx.allow_interspersed_args self.ignore_unknown_options = ctx.ignore_unknown_options self._short_opt: t.Dict[str, Option] = {} self._long_opt: t.Dict[str, Option] = {} self._opt_prefixes = {"-", "--"} self._args: t.List[Argument] = [] def add_option( self, obj: "CoreOption", opts: t.Sequence[str], dest: t.Optional[str], action: t.Optional[str] = None, nargs: int = 1, const: t.Optional[t.Any] = None, ) -> None: """Adds a new option named `dest` to the parser. The destination is not inferred (unlike with optparse) and needs to be explicitly provided. Action can be any of ``store``, ``store_const``, ``append``, ``append_const`` or ``count``. The `obj` can be used to identify the option in the order list that is returned from the parser. """ opts = [normalize_opt(opt, self.ctx) for opt in opts] option = Option(obj, opts, dest, action=action, nargs=nargs, const=const) self._opt_prefixes.update(option.prefixes) for opt in option._short_opts: self._short_opt[opt] = option for opt in option._long_opts: self._long_opt[opt] = option def add_argument( self, obj: "CoreArgument", dest: t.Optional[str], nargs: int = 1 ) -> None: """Adds a positional argument named `dest` to the parser. The `obj` can be used to identify the option in the order list that is returned from the parser. """ self._args.append(Argument(obj, dest=dest, nargs=nargs)) async def parse_args( self, args: t.List[str] ) -> t.Tuple[t.Dict[str, t.Any], t.List[str], t.List["CoreParameter"]]: """Parses positional arguments and returns ``(values, args, order)`` for the parsed options and arguments as well as the leftover arguments if there are any. The order is a list of objects as they appear on the command line. If arguments appear multiple times they will be memorized multiple times as well. """ state = ParsingState(args) try: self._process_args_for_options(state) self._process_args_for_args(state) except UsageError: if self.ctx is None or not self.ctx.resilient_parsing: raise return state.opts, state.largs, state.order def _process_args_for_args(self, state: ParsingState) -> None: pargs, args = _unpack_args( state.largs + state.rargs, [x.nargs for x in self._args] ) for idx, arg in enumerate(self._args): arg.process(pargs[idx], state) state.largs = args state.rargs = [] def _process_args_for_options(self, state: ParsingState) -> None: while state.rargs: arg = state.rargs.pop(0) arglen = len(arg) # Double dashes always handled explicitly regardless of what # prefixes are valid. if arg == "--": return elif arg[:1] in self._opt_prefixes and arglen > 1: self._process_opts(arg, state) elif self.allow_interspersed_args: state.largs.append(arg) else: state.rargs.insert(0, arg) return # Say this is the original argument list: # [arg0, arg1, ..., arg(i-1), arg(i), arg(i+1), ..., arg(N-1)] # ^ # (we are about to process arg(i)). # # Then rargs is [arg(i), ..., arg(N-1)] and largs is a *subset* of # [arg0, ..., arg(i-1)] (any options and their arguments will have # been removed from largs). # # The while loop will usually consume 1 or more arguments per pass. # If it consumes 1 (eg. arg is an option that takes no arguments), # then after _process_arg() is done the situation is: # # largs = subset of [arg0, ..., arg(i)] # rargs = [arg(i+1), ..., arg(N-1)] # # If allow_interspersed_args is false, largs will always be # *empty* -- still a subset of [arg0, ..., arg(i-1)], but # not a very interesting subset! def _match_long_opt( self, opt: str, explicit_value: t.Optional[str], state: ParsingState ) -> None: if opt not in self._long_opt: from difflib import get_close_matches possibilities = get_close_matches(opt, self._long_opt) raise NoSuchOption(opt, possibilities=possibilities, ctx=self.ctx) option = self._long_opt[opt] if option.takes_value: # At this point it's safe to modify rargs by injecting the # explicit value, because no exception is raised in this # branch. This means that the inserted value will be fully # consumed. if explicit_value is not None: state.rargs.insert(0, explicit_value) value = self._get_value_from_state(opt, option, state) elif explicit_value is not None: raise BadOptionUsage( opt, _("Option {name!r} does not take a value.").format(name=opt) ) else: value = None option.process(value, state) def _match_short_opt(self, arg: str, state: ParsingState) -> None: stop = False i = 1 prefix = arg[0] unknown_options = [] for ch in arg[1:]: opt = normalize_opt(f"{prefix}{ch}", self.ctx) option = self._short_opt.get(opt) i += 1 if not option: if self.ignore_unknown_options: unknown_options.append(ch) continue raise NoSuchOption(opt, ctx=self.ctx) if option.takes_value: # Any characters left in arg? Pretend they're the # next arg, and stop consuming characters of arg. if i < len(arg): state.rargs.insert(0, arg[i:]) stop = True value = self._get_value_from_state(opt, option, state) else: value = None option.process(value, state) if stop: break # If we got any unknown options we recombine the string of the # remaining options and re-attach the prefix, then report that # to the state as new larg. This way there is basic combinatorics # that can be achieved while still ignoring unknown arguments. if self.ignore_unknown_o
(ctx: Optional[ForwardRef('Context')] = None) -> None
[ 0.015042655169963837, 0.010752210393548012, -0.01743319444358349, 0.012944408692419529, 0.030168822035193443, -0.0224648118019104, 0.0170573890209198, 0.03108745813369751, 0.015209679491817951, -0.1233476847410202, -0.026014085859060287, 0.03211048245429993, -0.013100993819534779, 0.014917386695742607, -0.03755966201424599, 0.04484611004590988, -0.009087183512747288, 0.012004895135760307, 0.030294090509414673, 0.06476379930973053, 0.07031736522912979, -0.008330353535711765, 0.003058638423681259, 0.04257040098309517, 0.010016257874667645, 0.00700459536164999, 0.018696319311857224, -0.029291942715644836, -0.043843962252140045, -0.023174665868282318, 0.016451925039291382, -0.04447030648589134, -0.011670845560729504, 0.02816452831029892, -0.010470355860888958, -0.0635528713464737, -0.02572179213166237, 0.09879506379365921, 0.0035257854033261538, -0.018247440457344055, -0.009593476541340351, -0.05716417729854584, 0.01395699568092823, -0.024239448830485344, -0.007333424873650074, -0.011869187466800213, -0.02534598670899868, 0.05094251036643982, -0.057790521532297134, -0.09946316480636597, 0.06526487320661545, -0.03211048245429993, -0.010689576156437397, -0.02242305502295494, -0.008847085759043694, 0.07173707336187363, 0.034887269139289856, 0.057707007974386215, 0.02288237400352955, 0.015794266015291214, -0.020648419857025146, 0.05161060765385628, 0.0030064431484788656, -0.007296888157725334, -0.021629689261317253, -0.04165176674723625, -0.005167324561625719, -0.008121572434902191, -0.04031556844711304, 0.01408226415514946, -0.05144358426332474, 0.005584885831922293, 0.01264167670160532, -0.04885470122098923, -0.003995542414486408, -0.020711053162813187, -0.05424124747514725, 0.03117096982896328, 0.01249552983790636, 0.008742695674300194, -0.03077428787946701, 0.03639049082994461, 0.011441187001764774, -0.027412917464971542, 0.009400354698300362, 0.017861196771264076, 0.01947924681007862, 0.015314070507884026, 0.04192318022251129, -0.0199176874011755, -0.0336972177028656, -0.01988636888563633, -0.004253908526152372, 0.05461705103516579, -0.035367462784051895, -0.013570751063525677, -0.024135058745741844, -0.041129812598228455, -0.04217371717095375, -0.014729483984410763, -0.031985215842723846, 0.0026828330010175705, 0.010021477937698364, -0.03436531499028206, 0.057915788143873215, 0.020669298246502876, -0.03426092490553856, -0.0031578093767166138, 0.010590405203402042, -0.0062112282030284405, -0.046265821903944016, -0.037643175572156906, -0.03137975186109543, -0.024093301966786385, -0.03682893142104149, 0.03300824016332626, -0.03874971345067024, -0.06380340456962585, -0.024051545187830925, -0.0032178338151425123, -0.023717496544122696, -0.006607911549508572, 0.012913091108202934, 0.023112032562494278, -0.002013429766520858, -0.0025288572069257498, -0.03854093328118324, 0.02812277153134346, -0.018727635964751244, 0.02837330847978592, 0.06989980489015579, 0.01740187779068947, 0.03190170228481293, 0.004940275102853775, 0.017808999866247177, 0.011065381579101086, -0.016023924574255943, 0.04609879478812218, -0.05962779000401497, 0.02540862187743187, 0.04173527657985687, -0.008988012559711933, 0.01009455043822527, -0.023759253323078156, -0.04211108386516571, -0.05039967969059944, 0.01982373557984829, -0.02845682017505169, -0.028853503987193108, 0.04772728681564331, -0.0034396634437143803, 0.007578742224723101, 0.016044802963733673, 0.0343235619366169, 0.06267599016427994, 0.005772788543254137, -0.04735147953033447, -0.04559772089123726, -0.011796114034950733, -0.029751261696219444, -0.010783527046442032, -0.07774996012449265, 0.03430268168449402, -0.016159633174538612, 0.0020812833681702614, 0.020982468500733376, 0.04021117836236954, -0.018226562067866325, -0.026953598484396935, 0.05858388543128967, 0.02499105967581272, 0.03609819710254669, 0.027371160686016083, 0.03365546092391014, -0.03438619524240494, 0.10931761562824249, -0.02499105967581272, 0.009128939360380173, -0.0025419059675186872, -0.07098546624183655, -0.026494281366467476, -0.0018424903973937035, -0.02265271544456482, -0.0385826900601387, 0.03680805116891861, -0.030252335593104362, 0.05273802578449249, -0.010814844630658627, 0.01706782914698124, -0.008330353535711765, -0.003611907595768571, -0.06321881711483002, 0.05273802578449249, 0.016023924574255943, -0.05399071052670479, 0.007150741759687662, -0.05102602392435074, -0.023007642477750778, 0.1068122461438179, -0.016316218301653862, -0.04317586496472359, -0.046015284955501556, 0.04789431020617485, -0.004274786449968815, 0.008784451521933079, 0.03277858346700668, 0.03211048245429993, 0.0111280158162117, -0.014405873604118824, 0.014938265085220337, -0.035179562866687775, -0.06459677219390869, 0.01962539367377758, 0.0449296236038208, 0.010606063529849052, -0.03766405209898949, 0.05186114460229874, 0.040607862174510956, -0.006545277312397957, 0.01932266168296337, 0.0949534997344017, 0.01967758871614933, 0.05904320627450943, 0.040962789207696915, 0.03142150864005089, -0.02816452831029892, 0.04609879478812218, 0.0341147780418396, 0.06163208559155464, 0.037914589047431946, -0.010303331539034843, -0.07603795826435089, 0.003998151980340481, 0.0020747589878737926, -0.018497977405786514, -0.046182308346033096, 0.04538894072175026, 0.004358298610895872, 0.043468158692121506, -0.018080415204167366, -0.017506267875432968, 0.006174691487103701, -0.013372409157454967, -0.010298112407326698, -0.04252864420413971, 0.01685904897749424, 0.02799750305712223, -0.00433742068707943, 0.040837522596120834, 0.005339568480849266, 0.013852604664862156, 0.03751790523529053, -0.011472503654658794, 0.03877058997750282, -0.02793486788868904, -0.04563947767019272, -0.021671446040272713, 0.01697387732565403, -0.002566698705777526, -0.006978497840464115, 0.018884221091866493, -0.015512412413954735, -0.00971874501556158, 0.02501193806529045, -0.026389891281723976, -0.012579042464494705, 0.06539013981819153, -0.08200909197330475, -0.009509964846074581, 0.05052495002746582, 0.06768672913312912, -0.055535688996315, -0.06564068049192429, 0.0864352434873581, -0.05603676289319992, 0.07866860181093216, -0.00637303339317441, -0.006858448497951031, -0.012015334330499172, -0.02536686509847641, 0.021629689261317253, 0.04476260021328926, -0.02210988476872444, -0.003207394853234291, -0.035346586257219315, 0.02250656858086586, -0.00840864609926939, 0.010376404970884323, -0.007223815191537142, 0.06534838676452637, 0.05119304731488228, 0.02000119909644127, 0.0508589968085289, -0.029187552630901337, 0.06714390218257904, 0.05378193035721779, -0.01408226415514946, -0.01290265191346407, -0.013048798777163029, -0.07453473657369614, 0.013602067716419697, -0.046850405633449554, -0.029584236443042755, 0.0047732507809996605, 0.020460516214370728, 0.009927526116371155, 0.03943869099020958, -0.027705209329724312, 0.060546427965164185, 0.010637381114065647, 0.00633649667724967, 0.01723485440015793, -0.029584236443042755, -0.037872832268476486, -0.0016337096458300948, 0.0015958681469783187, -0.002714150119572878, -0.03927166387438774, -0.013007042929530144, 0.009128939360380173, -0.04543069750070572, 0.015167923644185066, -0.007119424641132355, -0.03081604279577732, 0.018456220626831055, 0.047100942581892014, 0.0018894660752266645, 0.03064901940524578, 0.021671446040272713, -0.009374257177114487, -0.011848309077322483, 0.012151041068136692, -0.057874031364917755, 0.05048319324851036, 0.02822716161608696, -0.02003251574933529, -0.018518855795264244, -0.001764197601005435, -0.02271534875035286, -0.038165125995874405, 0.08213435858488083, 0.06660106778144836, -0.06493082642555237, -0.02538774348795414, 0.046558115631341934, -0.010162404738366604, 0.07482703030109406, 0.038248639553785324, 0.07921142876148224, -0.01987593062222004, 0.01667114533483982, -0.006738399621099234, -0.043092355132102966, -0.011368113569915295, 0.05599500611424446, -0.03371809795498848, -0.018560610711574554, -0.03739263862371445, 0.017548024654388428, -0.0631353110074997, 0.04417801275849342, -0.060755208134651184, 0.014071824960410595, 0.013090554624795914, -0.018508415669202805, -0.06367813795804977, -0.01939573511481285, -0.0334884375333786, -0.0002032350457739085, -0.014927825890481472, 0.052320465445518494, -0.034678488969802856, 0.08727036416530609, -0.08284421265125275, 0.014552020467817783, 0.004561860114336014, 0.00633649667724967, 0.005303031764924526, -0.0663505345582962, -0.03743439540266991, 0.05582798272371292, 0.04175615683197975, -0.011117576621472836, 0.02803925983607769, -0.04125508293509483, -0.03173467889428139, -0.0022235154174268246, 0.013226262293756008, 0.043468158692121506, 0.012579042464494705, -0.028978772461414337, -0.012412017211318016, 0.015220118686556816, 0.01743319444358349, -0.004765421152114868, -0.018999051302671432, 0.02822716161608696, 0.010668697766959667, -0.057623494416475296, -0.010981868952512741, 0.032528046518564224, -0.009964062832295895, 0.07912791520357132, 0.03190170228481293, 0.012025772593915462, -0.004888080060482025, 0.0500238761305809, 0.05006563290953636, -0.0508589968085289, 0.044010989367961884, -0.0455559678375721, -0.01121152751147747, -0.03367634117603302, -0.00854957289993763, -0.05386544018983841, -0.017819439992308617, -0.02296588569879532, 0.06873062998056412, 0.02223515324294567, 0.00208911276422441, 0.023237301036715508, -0.012151041068136692, -0.021065980195999146, 0.05891793593764305, 0.05048319324851036, -0.0039485665038228035, -0.018790271133184433, -0.009593476541340351, -0.017746366560459137, -0.02275710552930832, -0.01936441659927368, 0.035096049308776855, -0.005569227505475283, -0.023863643407821655, -0.01121152751147747, 0.006221667397767305, -0.007834498770534992, -0.024803156033158302, 0.0385826900601387, 0.01125328429043293, -0.03332141414284706, -0.01115933246910572, 0.009530842304229736, 0.029291942715644836, 0.054533541202545166, -0.06973277777433395, -0.004055566620081663, 0.021243443712592125, -0.020805004984140396, -0.035617999732494354, 0.003037760267034173, 0.026619549840688705, 0.007422156631946564, -0.03052375093102455, -0.09520403295755386, -0.04551421105861664, -0.0631353110074997, 0.05695539712905884, -0.0512765608727932, 0.021013785153627396, 0.03350931406021118, 0.005997227970510721, 0.04989860579371452, 0.01140986941754818, -0.032256629317998886, 0.07177883386611938, 0.05979481711983681, 0.043635182082653046, -0.09378432482481003, 0.016451925039291382, -0.054951101541519165, -0.040545228868722916, -0.03087867796421051, 0.05549393221735954, -0.010908795520663261, 0.006153813563287258, -0.0010119343642145395, -0.032381899654865265, -0.049146994948387146, -0.05119304731488228, 0.024782279506325722, -0.013602067716419697, 0.07090195268392563, 0.012046650983393192, -0.0019194782944396138, -0.005120348650962114, 0.09061086177825928, -0.02281973883509636, -0.01916607655584812, -0.01738099940121174, -0.05294680595397949, -0.027329403907060623, 0.014103141613304615, -0.024197692051529884, 0.06468028575181961, 0.005089031532406807, -0.007714449893683195, 0.011503821238875389, 0.04280006140470505, -0.022068127989768982, 0.010193721391260624, -0.016316218301653862, 0.0028968332335352898, -0.013643824495375156, 0.05925198644399643, -0.00970308668911457, -0.04714269936084747, 0.05315558612346649, -0.043635182082653046, -0.020272614434361458, -0.052654512226581573, -0.007276010233908892, 0.08359582722187042, -0.01254772488027811, 0.01409270241856575, 0.024176813662052155, -0.013497677631676197, -0.000747696147300303, 0.010919234715402126, -0.027538185939192772, -0.034991659224033356, -0.03935517743229866, -0.01135767437517643, -0.020982468500733376, -0.005026397295296192, 0.024302082136273384, -0.03895849362015724, -0.009055865928530693, 0.04227810725569725, -0.05870915576815605, 0.01969846710562706, 0.02835243009030819, 0.02576354891061783, 0.038248639553785324, 0.0026084547862410545, -0.011117576621472836, -0.011764797382056713, 0.055953249335289, -0.027308525517582893, 0.029813895002007484, 0.03657839447259903, 0.09203056991100311, -0.010919234715402126, 0.029417211189866066, -0.01707826741039753, -0.007119424641132355, 0.0100110387429595, 0.011858748272061348, 0.02269447036087513, -0.02542949840426445, -0.05090075358748436, 0.07390839606523514, 0.04150561988353729, 0.06710214167833328, -0.02555476687848568, -0.06630877405405045, 0.030481994152069092, 0.010846161283552647, 0.02014734596014023, -0.02296588569879532, -0.011597772128880024, 0.009337720461189747, -0.07845981419086456, -0.058082811534404755, 0.049105238169431686, 0.04027381166815758, -0.002782003954052925, 0.003703249152749777, 0.014103141613304615, 0.023717496544122696, 0.008017182350158691, -0.06200789287686348, -0.03960571438074112, -0.035764146596193314, -0.03718385845422745, 0.02281973883509636, 0.015856901183724403, 0.006456545554101467, 0.032298386096954346, 0.016180509701371193, -0.00988577026873827, 0.010376404970884323, -0.026682183146476746, 0.013163628056645393, -0.01648324355483055, 0.035450976341962814, 0.04459557309746742, 0.018069976940751076, 0.010532990097999573, -0.014635533094406128, -0.01954188197851181, 0.0019299173727631569, 0.018362268805503845, -0.0572059340775013, -0.012756505981087685, 0.018591929227113724, 0.004522713832557201, -0.02307027578353882, 0.06242545321583748, -0.002466222969815135, -0.0226735919713974, -0.04484611004590988, -0.014384996145963669, 0.012662554159760475, -0.007239473517984152, 0.03985625132918358, -0.011065381579101086, -0.008471280336380005, -0.010016257874667645, 0.014739923179149628, -0.005104690324515104, -0.0498150959610939, -0.008199864998459816, -0.03469936549663544, -0.06714390218257904, 0.01644148677587509, 0.0016102218069136143, 0.02263183705508709, 0.0459735281765461, -0.03424004837870598, -0.02860296703875065, 0.03165116533637047, -0.023968033492565155, -0.011712601408362389, -0.08355406671762466, -0.024782279506325722, -0.038248639553785324, 0.0447208434343338, -0.041067179292440414, -0.025888817384839058, 0.00983357522636652, -0.03760141879320145, 0.020314369350671768, 0.010752210393548012, 0.00865396298468113, -0.0688559040427208, -0.020867638289928436, -0.02551301196217537, -0.02265271544456482, 0.03668278455734253, 0.006722741294652224, -0.03643224760890007, -0.040962789207696915, 0.0388958603143692, -0.043760452419519424, 0.043092355132102966, -0.02803925983607769, -0.018184805288910866, 0.030294090509414673, 0.03455321863293648, 0.049146994948387146, 0.06806253641843796, -0.028937015682458878, -0.038624443113803864, -0.01927046664059162, 0.027057988569140434, 0.023341691121459007, 0.0032830778509378433, 0.003241321537643671, 0.013612506911158562, -0.0074430350214242935, 0.03741351515054703, 0.07620498538017273, -0.007072449196130037, -0.023884521797299385, -0.024155937135219574, -0.010089331306517124, 0.01977154053747654, 0.07687308639287949, 0.05390719696879387, -0.0017146121244877577, -0.07052614539861679, -0.02219339646399021, 0.06580770015716553, -0.02501193806529045, -0.03177643567323685, -0.006012886296957731, 0.018999051302671432, 0.008038059808313847, -0.019009489566087723, -0.004708006512373686, -0.0017394048627465963, 0.005211690440773964, -0.03277858346700668, -0.021587932482361794, -0.018163928762078285, 0.06275950372219086, 0.021817591041326523, 0.038206882774829865, -0.11240757256746292, 0.001708087744191289, -0.00489590922370553, -0.03110833652317524, 0.026995355263352394, -0.051735877990722656, -0.015689875930547714, -0.03676629438996315, -0.0627177432179451, 0.08234313875436783, -0.006696643773466349, 0.08017182350158691, -0.026598671451210976, 0.00022655977227259427, -0.010689576156437397, 0.018654562532901764, 0.013779531233012676, -0.06451325863599777, -0.028916137292981148, 0.06246720999479294, 0.03112921491265297, 0.029208431020379066, 0.07582917809486389, -0.01530363131314516, -0.03071165271103382, 0.03655751422047615, -0.028916137292981148, -0.01107582077383995, 0.013090554624795914, -0.013341091573238373, 0.013977873139083385, -0.03595205023884773, 0.008017182350158691, 0.01963583193719387, 0.006785375531762838, -0.004744543228298426, 0.024176813662052155, -0.026034964248538017, -0.02803925983607769, 0.038373906165361404, -0.024489985778927803, -0.06513960659503937, 0.007996303960680962, 0.035659756511449814, -0.02551301196217537, 0.01421797089278698, -0.02582618221640587, 0.04459557309746742, 0.00843996275216341, 0.00479151913896203, 0.018936416134238243, 0.001182873616926372, 0.004867202136665583, -0.035430099815130234, 0.00988055020570755, -0.03486638888716698, 0.03584766015410423, 0.012171919457614422, 0.021139053627848625, 0.024552619084715843, -0.032548923045396805, -0.023091154173016548, -0.05712242051959038, -0.023341691121459007, 0.03641136735677719, -0.015815144404768944, 0.010783527046442032, -0.029646871611475945, 0.04202757030725479, 0.0002945766318589449, -0.047100942581892014, -0.05916847288608551, -0.029333699494600296, 0.0041834451258182526, 0.011117576621472836, 0.052069928497076035, -0.009661330841481686, -0.02269447036087513, 0.01939573511481285 ]
9,560
asyncclick.parser
__init__
null
def __init__(self, ctx: t.Optional["Context"] = None) -> None: #: The :class:`~click.Context` for this parser. This might be #: `None` for some advanced use cases. self.ctx = ctx #: This controls how the parser deals with interspersed arguments. #: If this is set to `False`, the parser will stop on the first #: non-option. Click uses this to implement nested subcommands #: safely. self.allow_interspersed_args: bool = True #: This tells the parser how to deal with unknown options. By #: default it will error out (which is sensible), but there is a #: second mode where it will ignore it and continue processing #: after shifting all the unknown options into the resulting args. self.ignore_unknown_options: bool = False if ctx is not None: self.allow_interspersed_args = ctx.allow_interspersed_args self.ignore_unknown_options = ctx.ignore_unknown_options self._short_opt: t.Dict[str, Option] = {} self._long_opt: t.Dict[str, Option] = {} self._opt_prefixes = {"-", "--"} self._args: t.List[Argument] = []
(self, ctx: Optional[ForwardRef('Context')] = None) -> None
[ 0.008290840312838554, 0.00741137471050024, 0.03715851902961731, -0.019852053374052048, 0.022821906954050064, -0.036274634301662445, 0.04829546809196472, 0.03318103775382042, 0.000411282671848312, -0.05009859427809715, -0.004963013343513012, 0.04129510000348091, -0.03496648371219635, 0.019233334809541702, -0.04543168097734451, 0.019975798204541206, 0.010677329264581203, -0.0006413689698092639, 0.008069869130849838, 0.046421632170677185, 0.04193149879574776, 0.01838480494916439, 0.0066644917242228985, 0.030529383569955826, 0.005709896329790354, 0.052467405796051025, -0.01644909754395485, -0.014628294855356216, 0.007300889119505882, -0.06668027490377426, -0.02840805985033512, -0.012657231651246548, -0.0076809595339000225, 0.045042771846055984, -0.015485662966966629, -0.05388162285089493, -0.056285787373781204, 0.07580196857452393, -0.025013942271471024, -0.034082598984241486, 0.012020834721624851, -0.043416425585746765, -0.012038512155413628, 0.001539064571261406, 0.02031167410314083, -0.021478401497006416, 0.031466301530599594, 0.023352237418293953, -0.07891324162483215, -0.09439890086650848, 0.03452454134821892, 0.02729436568915844, 0.0076809595339000225, -0.021902667358517647, -0.04426495358347893, 0.05734645202755928, 0.03719387575984001, 0.07481201738119125, -0.008259904570877552, 0.047376230359077454, -0.050805702805519104, 0.09454032778739929, -0.0004350370727479458, 0.014964170753955841, -0.002775398548692465, -0.016687747091054916, -0.04578523710370064, 0.01919797994196415, -0.009793444536626339, 0.022945651784539223, -0.015344241634011269, -0.0010313831735402346, -0.031236492097377777, 0.003126742783933878, 0.008679749444127083, -0.07117041200399399, -0.06735202670097351, -0.003173146629706025, 0.03194360062479973, 0.035868048667907715, -0.05243204906582832, 0.012197610922157764, -0.011198821477591991, -0.014080286026000977, 0.0130373015999794, 0.04041121527552605, 0.019144946709275246, -0.008909559808671474, 0.028142893686890602, 0.02372347004711628, -0.046704474836587906, -0.01757163181900978, -0.03268606215715408, 0.043557845056056976, -0.013222917914390564, -0.015140947885811329, -0.002340085105970502, -0.014601778239011765, -0.031483978033065796, -0.015830378979444504, -0.055083706974983215, -0.01905655860900879, -0.019852053374052048, -0.0178544744849205, 0.014380807057023048, 0.010527068749070168, -0.018172673881053925, -0.003197453450411558, 0.00452107097953558, -0.003000789089128375, 0.007636765483766794, 0.006010417360812426, -0.011570053175091743, 0.027612563222646713, -0.025950860232114792, 0.026145314797759056, -0.02632209099829197, -0.050841059535741806, 0.0020472982432693243, -0.0015158625319600105, -0.0082333879545331, -0.006288840901106596, -0.02305171824991703, -0.007658862508833408, 0.006191613618284464, 0.021177882328629494, -0.04461850970983505, -0.03857273608446121, -0.004874625243246555, 0.03630999103188515, 0.07926679402589798, 0.008388067595660686, 0.03761814162135124, 0.010862944647669792, -0.002408586209639907, -0.02687009982764721, 0.012913557700812817, 0.03676960989832878, -0.07530698925256729, 0.028036829084157944, 0.010836428962647915, 0.0016594938933849335, -0.006050191819667816, -0.029698532074689865, -0.06919050961732864, -0.040517281740903854, -0.024890197440981865, -0.07452917098999023, -0.005599410738795996, 0.053139157593250275, -0.007552796043455601, -0.03811311721801758, 0.022521385923027992, 0.023935602977871895, 0.055755458772182465, 0.027913084253668785, -0.046563055366277695, -0.04426495358347893, 0.012701425701379776, -0.05229062959551811, -0.005789445713162422, -0.06462965905666351, 0.022026410326361656, 0.0013302466832101345, -0.0009297364158555865, 0.011490503326058388, 0.026392802596092224, -0.036663543432950974, -0.020629873499274254, 0.06360435485839844, 0.0171208493411541, 0.029309622943401337, 0.010889461264014244, 0.03882022202014923, -0.037512075155973434, 0.06346293538808823, 0.018897458910942078, 0.031165780499577522, -0.0034935548901557922, -0.07389277219772339, -0.03620392456650734, 0.003261535195633769, -0.002291471464559436, -0.03828989341855049, 0.06399326771497726, -0.04769442602992058, 0.07827684283256531, 0.028726259246468544, -0.018154995515942574, -0.004609459545463324, -0.0041829850524663925, -0.013116851449012756, 0.057523228228092194, 0.021336980164051056, -0.04893186688423157, 0.011543536558747292, -0.06374577432870865, -0.01330246776342392, 0.036115534603595734, 0.01493765413761139, -0.0315193347632885, -0.01124301552772522, 0.03871415928006172, -0.02508465200662613, 0.04695196449756622, 0.06526605784893036, -0.0113137261942029, 0.03549681603908539, -0.0047729783691465855, -0.01592760533094406, -0.008763718418776989, -0.056851476430892944, 0.03031725063920021, 0.013258272781968117, 0.01644025929272175, 0.014195190742611885, 0.024077024310827255, 0.03604482486844063, -0.020364707335829735, 0.034772031009197235, 0.0931968241930008, 0.026834744960069656, 0.052856314927339554, 0.012887041084468365, -0.0002517690882086754, -0.00469342852011323, 0.0726906955242157, 0.010527068749070168, 0.016077864915132523, 0.03963339701294899, -0.04695196449756622, -0.07707475870847702, -0.0014959751861169934, -0.0008883043192327023, -0.06431145966053009, -0.05840711295604706, 0.024854842573404312, -0.004373020492494106, -0.008405745029449463, -0.06660956144332886, 0.02648119069635868, 0.01261303760111332, -0.026817066594958305, -0.0041211131028831005, -0.03072383813560009, 0.027188299223780632, 0.014495711773633957, -0.03247392922639847, 0.04744694009423256, 0.006430262234061956, 0.0068368492648005486, 0.0035355393774807453, -0.023935602977871895, 0.03514326363801956, -0.037653494626283646, -0.029574787244200706, -0.012807492166757584, -0.037087809294462204, -0.0356382392346859, 0.010049770586192608, 0.01454874500632286, -0.018720680847764015, -0.006271163001656532, 0.055083706974983215, 0.0022196557838469744, 0.026428157463669777, 0.05052286013960838, -0.08110527694225311, -0.003818382741883397, 0.004463618621230125, 0.040800124406814575, -0.03185521066188812, 0.013461566530168056, 0.07339780032634735, -0.06968548148870468, 0.04871973395347595, -0.0011888251174241304, -0.004454779904335737, -0.04058799520134926, -0.03111274726688862, 0.0315723679959774, 0.00802567508071661, 0.004468038212507963, 0.01797821745276451, -0.02796611748635769, 0.0051574683748185635, -0.003732203971594572, 0.05907886475324631, -0.026375124230980873, 0.030387962237000465, -0.000846872222609818, 0.07216036319732666, 0.050947122275829315, -0.006288840901106596, 0.06091734394431114, 0.03473667427897453, -0.0253851730376482, -0.00003680551890283823, -0.00782680045813322, -0.053952332586050034, -0.015158625319600105, -0.06544283777475357, -0.06363970786333084, 0.025756405666470528, -0.005948545411229134, 0.05296238139271736, 0.03496648371219635, -0.014486873522400856, 0.10231851041316986, -0.02110717073082924, 0.04811869189143181, 0.04352249205112457, -0.010518229566514492, 0.004848108626902103, -0.04362855851650238, 0.023352237418293953, 0.01742137037217617, -0.05936170741915703, -0.005254695657640696, 0.041118323802948, -0.05635650083422661, -0.0007861051126383245, 0.023387594148516655, -0.04790655896067619, 0.03510790690779686, 0.08061029762029648, 0.021991055458784103, -0.004094596486538649, 0.01699710637331009, 0.025349818170070648, -0.0004789551021531224, 0.033092647790908813, -0.02948639914393425, -0.020682906731963158, -0.043840691447257996, -0.042992159724235535, -0.03240321949124336, -0.0039973692037165165, -0.054942283779382706, -0.05193707346916199, 0.07325638085603714, 0.01592760533094406, -0.03620392456650734, -0.010314936749637127, 0.052891671657562256, -0.045891303569078445, 0.04900257661938667, -0.014239385724067688, 0.08018603920936584, -0.0294687207788229, 0.03468364104628563, -0.02370579168200493, -0.0071594673208892345, 0.0009424422169104218, 0.06929657608270645, -0.04242647439241409, -0.02648119069635868, -0.019922764971852303, 0.01659051887691021, -0.0685541108250618, 0.0672459602355957, -0.025597305968403816, -0.014628294855356216, -0.0043884883634746075, -0.024784130975604057, -0.057417161762714386, 0.024041669443249702, -0.026534223929047585, 0.003725574817508459, 0.030352607369422913, 0.07785257697105408, -0.029521754011511803, 0.0438760444521904, -0.040941547602415085, 0.008056610822677612, 0.005161887500435114, -0.029274266213178635, -0.00009135778964264318, -0.04034050554037094, -0.04815404862165451, 0.008609038777649403, 0.060422368347644806, 0.01771305315196514, 0.028567159548401833, -0.03530236333608627, -0.05133603513240814, -0.012268321588635445, 0.025013942271471024, 0.05844246596097946, 0.0260569266974926, -0.012471615336835384, -0.017633503302931786, -0.0071108536794781685, 0.013868154026567936, 0.012330194003880024, -0.015688955783843994, 0.013735570944845676, -0.0061739357188344, -0.051088545471429825, -0.009687378071248531, 0.0383959598839283, -0.03185521066188812, 0.06487715244293213, -0.00021448018378578126, 0.011764507740736008, -0.007451149635016918, 0.03638070076704025, 0.06526605784893036, -0.03480738773941994, 0.024625033140182495, -0.007760509382933378, -0.003694638842716813, -0.0301581509411335, 0.014964170753955841, -0.05557868257164955, -0.0260569266974926, 0.012427421286702156, 0.06692776083946228, 0.017633503302931786, -0.028231283649802208, -0.012860524468123913, -0.00029002473456785083, -0.003416215069591999, -0.0045741042122244835, 0.06399326771497726, 0.01671426370739937, -0.017447886988520622, -0.02110717073082924, 0.041189033538103104, -0.042567893862724304, -0.057275738567113876, 0.0480479821562767, -0.00603251438587904, -0.03680496662855148, -0.00483043072745204, 0.012188772670924664, -0.006470037158578634, -0.039704106748104095, 0.05462408438324928, 0.032597675919532776, -0.05303309112787247, -0.025756405666470528, 0.041365813463926315, 0.02276887372136116, 0.014186352491378784, -0.08068101108074188, -0.018826747313141823, 0.027647918090224266, 0.004167517181485891, -0.05366948992013931, 0.038219183683395386, 0.07657978683710098, 0.05087641254067421, -0.08308517932891846, -0.06272047013044357, -0.060705214738845825, -0.05907886475324631, 0.06144767627120018, -0.03797169402241707, 0.032155729830265045, -0.006748461164534092, -0.014566422440111637, 0.02922123298048973, -0.02580943889915943, -0.027612563222646713, 0.04550239443778992, 0.06105876713991165, 0.06077592447400093, -0.06321544945240021, -0.021761246025562286, -0.06187194213271141, -0.012701425701379776, -0.012780975550413132, 0.08478223532438278, 0.004790655802935362, 0.0049453359097242355, 0.018473193049430847, -0.08987341076135635, -0.04200220853090286, -0.04171936586499214, -0.018897458910942078, -0.011941284872591496, 0.059609197080135345, 0.019516177475452423, -0.0575585812330246, -0.011402115225791931, 0.04224969819188118, -0.04486599564552307, -0.02508465200662613, -0.010438680648803711, -0.04688125476241112, 0.04104761406779289, 0.00981996115297079, -0.041648656129837036, 0.06526605784893036, 0.050664279609918594, -0.002943336730822921, 0.033958856016397476, -0.008357131853699684, -0.008838849142193794, 0.013602987863123417, -0.016625873744487762, 0.003853738075122237, -0.05805355682969093, 0.03620392456650734, -0.014584100805222988, -0.04016372933983803, 0.01631651446223259, -0.044088177382946014, -0.001032488071359694, -0.024183090776205063, 0.0008419003570452332, 0.04963897541165352, 0.012560004368424416, 0.027099911123514175, 0.05158352106809616, -0.016077864915132523, 0.008419003337621689, 0.04949755221605301, 0.012719103135168552, -0.02151375822722912, -0.02001115307211876, 0.006213710643351078, -0.03758278489112854, -0.008427842520177364, -0.016422580927610397, -0.02347598224878311, 0.024501288309693336, 0.060280948877334595, -0.01103972177952528, 0.04734087362885475, -0.01742137037217617, 0.008476455695927143, 0.015741989016532898, -0.003743252484127879, 0.028284315019845963, -0.04235576465725899, 0.06781164556741714, -0.015220497734844685, 0.02549123950302601, 0.038183826953172684, 0.034082598984241486, -0.02731204219162464, 0.01295775268226862, -0.00931614637374878, 0.005785026587545872, -0.004905560985207558, 0.043557845056056976, 0.021354658529162407, -0.005166307091712952, -0.01619277149438858, 0.02633976936340332, -0.01840248331427574, 0.04564381390810013, -0.014292418025434017, -0.03240321949124336, 0.031749144196510315, -0.011667280457913876, 0.031483978033065796, 0.003674751380458474, -0.025756405666470528, -0.012011995539069176, -0.0753777027130127, -0.03790098428726196, 0.04564381390810013, 0.006063450127840042, 0.016838006675243378, 0.0011755669256672263, -0.00031212184694595635, 0.01186173502355814, -0.01796054095029831, -0.06349828839302063, 0.005245856940746307, 0.009740411303937435, -0.030759193003177643, 0.029680853709578514, 0.02085968293249607, 0.037123166024684906, 0.009236596524715424, 0.020877361297607422, -0.0018981427419930696, 0.010730362497270107, -0.08860062062740326, 0.0370170995593071, -0.07254926860332489, -0.0011136949760839343, 0.06675098836421967, -0.03111274726688862, 0.01220645010471344, -0.028743935748934746, 0.0065186507999897, -0.03963339701294899, 0.012312516570091248, 0.010465197265148163, 0.0006120902835391462, -0.014221707358956337, 0.01344388909637928, -0.04292144998908043, 0.03484274074435234, -0.03358762338757515, -0.02824896015226841, 0.002014152705669403, -0.01009396556764841, 0.042567893862724304, 0.007932866923511028, 0.07226642966270447, -0.021902667358517647, -0.026693323627114296, -0.06823591142892838, 0.03143094480037689, 0.01240974385291338, -0.06222549453377724, 0.0050690798088908195, 0.0356735922396183, -0.06600852310657501, 0.01420402992516756, -0.003853738075122237, 0.012153416872024536, 0.03235018625855446, -0.012356710620224476, -0.021160203963518143, 0.047517649829387665, -0.02358204871416092, 0.00945756770670414, -0.0919947400689125, -0.03197895362973213, 0.0038758351001888514, -0.003442731685936451, -0.04069405794143677, 0.00641258480027318, 0.038608092814683914, -0.05815962329506874, 0.0043884883634746075, -0.0076058292761445045, 0.01699710637331009, -0.06363970786333084, -0.0022395432461053133, -0.025544272735714912, 0.03726458549499512, 0.06074056774377823, 0.011472825892269611, -0.025455884635448456, -0.0239886362105608, 0.04345177859067917, -0.03238554298877716, -0.002408586209639907, -0.052325986325740814, -0.00620487192645669, -0.003601830918341875, 0.010986688546836376, 0.03452454134821892, 0.06134160980582237, -0.014884620904922485, -0.00544915022328496, -0.035461459308862686, 0.008670910261571407, 0.003736623330041766, 0.0052060820162296295, 0.018172673881053925, 0.003661493072286248, -0.03231482952833176, 0.04348713532090187, 0.06201336160302162, -0.021071815863251686, -0.005431472323834896, -0.007645604200661182, 0.024483611807227135, -0.028072183951735497, 0.01946314424276352, 0.04143652319908142, 0.0260746031999588, -0.03459525480866432, -0.006059031002223492, 0.05610901117324829, -0.03882022202014923, -0.006991529371589422, -0.0023312463890761137, 0.0014495712239295244, 0.033128004521131516, -0.017509758472442627, -0.04981575161218643, -0.013178723864257336, 0.013815120793879032, -0.04224969819188118, -0.02646351233124733, 0.024306833744049072, 0.0603516586124897, 0.01767769828438759, 0.022715840488672256, -0.11702635884284973, -0.005223759450018406, 0.01413331925868988, -0.024625033140182495, 0.024448255077004433, -0.04401746764779091, -0.01783679611980915, -0.043416425585746765, -0.1178748831152916, 0.05412910878658295, -0.009280791506171227, 0.09489388018846512, -0.027365075424313545, -0.009669700637459755, -0.01089830044656992, -0.00021572315017692745, 0.00844551995396614, -0.010138159617781639, -0.0260569266974926, 0.08195380866527557, 0.03659283369779587, 0.04483063891530037, 0.07749902456998825, 0.022556742653250694, -0.03219108656048775, 0.03128952533006668, 0.0010661861160770059, -0.003288051811978221, 0.017527436837553978, -0.023387594148516655, 0.00021075129916425794, -0.002384279388934374, -0.0015247013652697206, 0.006399326492100954, 0.006112063769251108, 0.049285419285297394, 0.003681380534544587, -0.028019150719046593, -0.008520649746060371, 0.06268511712551117, -0.0932675302028656, -0.06873089075088501, -0.04910864308476448, 0.01590108871459961, -0.011623086407780647, -0.00603251438587904, -0.026269057765603065, 0.046563055366277695, -0.002801914932206273, 0.03509023040533066, 0.037370651960372925, 0.001713631791062653, 0.023087073117494583, -0.013435049913823605, 0.019392434507608414, -0.027506496757268906, 0.002452780492603779, 0.009271952323615551, 0.011437470093369484, 0.05579081177711487, -0.0466691218316555, -0.04072941467165947, -0.005259114783257246, -0.015954121947288513, 0.05119461193680763, -0.024607354775071144, -0.003988530486822128, -0.014380807057023048, 0.07587267458438873, 0.008609038777649403, -0.03995159640908241, -0.04302751645445824, -0.0411536805331707, 0.0010650812182575464, 0.0071108536794781685, 0.03988088667392731, 0.006938496138900518, 0.03991623967885971, 0.018172673881053925 ]
9,561
asyncclick.parser
_get_value_from_state
null
def _get_value_from_state( self, option_name: str, option: Option, state: ParsingState ) -> t.Any: nargs = option.nargs if len(state.rargs) < nargs: if option.obj._flag_needs_value: # Option allows omitting the value. value = _flag_needs_value else: raise BadOptionUsage( option_name, ngettext( "Option {name!r} requires an argument.", "Option {name!r} requires {nargs} arguments.", nargs, ).format(name=option_name, nargs=nargs), ) elif nargs == 1: next_rarg = state.rargs[0] if ( option.obj._flag_needs_value and isinstance(next_rarg, str) and next_rarg[:1] in self._opt_prefixes and len(next_rarg) > 1 ): # The next arg looks like the start of an option, don't # use it as the value if omitting the value is allowed. value = _flag_needs_value else: value = state.rargs.pop(0) else: value = tuple(state.rargs[:nargs]) del state.rargs[:nargs] return value
(self, option_name: str, option: asyncclick.parser.Option, state: asyncclick.parser.ParsingState) -> Any
[ 0.0452481247484684, -0.025864191353321075, 0.02484099380671978, 0.002908537397161126, 0.016115380451083183, -0.012117326259613037, 0.0014767695683985949, 0.019260769709944725, 0.05214524269104004, -0.09769653528928757, -0.01846494898200035, 0.06593947857618332, -0.019668154418468475, -0.02993803843855858, 0.01847442239522934, 0.07067651301622391, 0.0029606446623802185, 0.030487533658742905, -0.016229070723056793, 0.11649307608604431, 0.07613357156515121, -0.02374200150370598, -0.03321606293320656, 0.021600862964987755, 0.011084653437137604, -0.06957751512527466, 0.042292218655347824, -0.03022226132452488, -0.06446152180433273, 0.02969171293079853, 0.013358429074287415, -0.04001844301819801, 0.005367056466639042, 0.0673416405916214, -0.05294106528162956, -0.0255989171564579, 0.015707995742559433, 0.06442362815141678, -0.02069135382771492, -0.054343223571777344, -0.022756699472665787, -0.07677780836820602, 0.04028371721506119, 0.028971685096621513, -0.04547550156712532, -0.04331541433930397, -0.026375791057944298, -0.026205258443951607, -0.08322016894817352, -0.06097506731748581, 0.08844985067844391, 0.014447946101427078, -0.04286066070199013, 0.02449992671608925, -0.008356123231351376, -0.005632330197840929, 0.04032161086797714, 0.06271829456090927, 0.012600503861904144, 0.046498700976371765, -0.06760691106319427, 0.029142217710614204, 0.0017124369041994214, -0.02834639698266983, 0.011586778797209263, -0.034750863909721375, 0.007659779861569405, 0.02366620860993862, -0.06593947857618332, 0.022245099768042564, -0.0020700828172266483, 0.025352591648697853, -0.02326829917728901, -0.01876811869442463, 0.031757060438394547, -0.021487174555659294, -0.023287246003746986, -0.0039104195311665535, -0.011094127781689167, -0.00014122275752015412, -0.044224925339221954, 0.056844376027584076, -0.0038772602565586567, 0.0036451457999646664, -0.011065705679357052, 0.022946180775761604, 0.015357456170022488, -0.016788039356470108, 0.04911354184150696, 0.006404466461390257, 0.001991921802982688, -0.07632305473089218, -0.019743947312235832, 0.023419883102178574, -0.039487894624471664, 0.02321145497262478, 0.010374099016189575, -0.054911669343709946, -0.061164550483226776, -0.015603781677782536, -0.04528602212667465, -0.03584985435009003, 0.01993342861533165, -0.0036617254372686148, 0.0630214661359787, 0.009564066305756569, -0.011226764880120754, -0.025466281920671463, 0.03198443725705147, -0.05229682847857475, -0.011482564732432365, -0.043580688536167145, -0.06294567137956619, -0.02840324118733406, -0.029843298718333244, 0.03050648234784603, -0.009507222101092339, -0.028194811195135117, -0.09345215559005737, 0.014978493563830853, -0.010014084167778492, 0.0027759005315601826, 0.027323197573423386, 0.014675323851406574, -0.025182059034705162, 0.0028090595733374357, -0.006068137474358082, -0.008962463587522507, -0.018133357167243958, 0.0361151285469532, 0.04816613718867302, 0.033291857689619064, -0.000139890456921421, -0.04301224648952484, -0.03548983857035637, 0.05692017078399658, 0.025276800617575645, 0.025921035557985306, -0.034106627106666565, 0.03156757727265358, 0.06851642578840256, 0.03840785101056099, -0.0049217757768929005, -0.025636814534664154, 0.03361397609114647, -0.03033594973385334, 0.05968659743666649, 0.03734675794839859, -0.014590056613087654, -0.009256159886717796, 0.022661957889795303, 0.022870387881994247, 0.001832046895287931, 0.027626367285847664, 0.018607059493660927, 0.002828007796779275, 0.020274493843317032, -0.048204030841588974, -0.009417218156158924, -0.03670252114534378, 0.004365174565464258, -0.041306912899017334, -0.030582275241613388, -0.038028888404369354, -0.019147081300616264, 0.017148053273558617, 0.038843657821416855, 0.08056743443012238, 0.02232089266180992, 0.00499756820499897, -0.02711476758122444, 0.015262715518474579, -0.0023460148368030787, 0.020388184115290642, -0.013623702339828014, 0.06597737222909927, -0.043163832277059555, -0.005476008169353008, 0.051766280084848404, -0.049719881266355515, -0.034163471311330795, -0.010042506270110607, -0.024102015420794487, -0.02489783801138401, -0.018133357167243958, -0.012287859804928303, 0.02290828339755535, -0.0414963960647583, 0.017489120364189148, 0.006376044359058142, 0.006153403781354427, -0.034334003925323486, -0.03899524360895157, -0.024537822231650352, -0.05335792154073715, -0.0164280254393816, -0.01945972442626953, -0.00025372725212946534, 0.0851149782538414, -0.02279459498822689, 0.02571260742843151, -0.048204030841588974, -0.04748400300741196, 0.03566037118434906, -0.04547550156712532, 0.01289419922977686, 0.05138731747865677, -0.014627953059971333, -0.009507222101092339, 0.038616281002759933, -0.004419650416821241, -0.049075644463300705, -0.007399243302643299, 0.08412967622280121, -0.00037748218164779246, -0.055214837193489075, -0.002610104391351342, 0.022889336571097374, 0.02736109308898449, 0.06351412087678909, 0.056730687618255615, -0.07188919186592102, 0.09678702801465988, 0.08875302225351334, 0.04615763574838638, 0.008138219825923443, -0.013481591828167439, -0.0005521602579392493, 0.010876224376261234, 0.04827982559800148, 0.00918036699295044, -0.03425821289420128, 0.0895109474658966, -0.04846930503845215, 0.004708609078079462, -0.016579609364271164, 0.05843602120876312, -0.03653198853135109, 0.020786093547940254, 0.036039333790540695, -0.04881037399172783, -0.013680546544492245, -0.026849495247006416, 0.02736109308898449, -0.017053313553333282, 0.0026124727446585894, 0.03763097897171974, 0.03171916306018829, -0.011302556842565536, -0.007655042689293623, 0.006556051783263683, 0.08958674222230911, 0.018152303993701935, 0.04437651112675667, 0.0028422188479453325, -0.051993656903505325, -0.021695604547858238, 0.03242024406790733, 0.022396685555577278, 0.029199061915278435, 0.015347981825470924, -0.061467722058296204, -0.004424387589097023, -0.019317613914608955, -0.06036872789263725, -0.04934091866016388, 0.008758771233260632, -0.04377017170190811, 0.01247734110802412, 0.027550574392080307, 0.11141498386859894, -0.04244380071759224, -0.03874891623854637, 0.027834797278046608, -0.026868442073464394, -0.013718442991375923, 0.010061454959213734, 0.0328560508787632, 0.03243919089436531, -0.029824350029230118, 0.0011084653669968247, 0.04138270765542984, -0.0006501575699076056, 0.03728991001844406, -0.06976699829101562, 0.028592722490429878, 0.033651869744062424, -0.009417218156158924, 0.05237261950969696, 0.0646510049700737, 0.05881498381495476, 0.037668872624635696, 0.025447333231568336, -0.020198702812194824, 0.02237773686647415, 0.009464588947594166, -0.032647620886564255, 0.018218623474240303, 0.02770216017961502, 0.0006608159164898098, 0.05400215834379196, -0.0020535031799227, -0.08246224373579025, 0.024405186995863914, -0.01881548948585987, 0.03728991001844406, 0.02413991279900074, -0.006338147912174463, 0.04377017170190811, 0.05108414590358734, -0.019308140501379967, -0.016030114144086838, -0.01672172173857689, -0.012676295824348927, 0.02571260742843151, 0.029199061915278435, -0.006612895987927914, -0.015878530219197273, 0.004992831032723188, -0.0036759364884346724, -0.013803709298372269, 0.017574386671185493, 0.009720388799905777, -0.04399754852056503, -0.03361397609114647, -0.012524710968136787, -0.10717059671878815, 0.02654632367193699, 0.009748810902237892, 0.03243919089436531, -0.07332924753427505, -0.026565272361040115, -0.03566037118434906, 0.03494034335017204, 0.030013831332325935, 0.02167665585875511, -0.003969632554799318, 0.030354898422956467, 0.03795309737324715, -0.006091822404414415, 0.040132131427526474, 0.02391253411769867, -0.08352334052324295, 0.027796899899840355, 0.06635633856058121, 0.03456138074398041, 0.018104935064911842, -0.018398629501461983, 0.12232910096645355, -0.004294118843972683, -0.040473196655511856, 0.01528166327625513, -0.018967073410749435, 0.008839300833642483, 0.030658068135380745, 0.007996109314262867, -0.022301943972706795, -0.02296512946486473, 0.0323633998632431, -0.0014471630565822124, -0.025883140042424202, -0.07560302317142487, 0.05563169717788696, 0.013131051324307919, 0.02408306859433651, -0.06290777772665024, -0.03224971145391464, -0.010127773508429527, -0.01906181499361992, -0.010923594236373901, 0.006845010444521904, -0.05968659743666649, 0.030847549438476562, -0.036380402743816376, 0.026697909459471703, 0.02654632367193699, 0.027285302057862282, -0.006669740192592144, -0.032173916697502136, -0.06078558787703514, 0.0009503669571131468, 0.02857377380132675, -0.04471757635474205, 0.06794797629117966, -0.01435320544987917, -0.02501152642071247, -0.061240341514348984, 0.016920676454901695, 0.036797259002923965, -0.03630460798740387, -0.04759769141674042, 0.008687715977430344, 0.03016541711986065, -0.03429610654711723, -0.020653456449508667, -0.020539768040180206, -0.0038843657821416855, -0.023817794397473335, -0.04001844301819801, 0.03221181407570839, 0.04695345461368561, 0.022358788177371025, 0.017962822690606117, 0.04365648329257965, -0.013623702339828014, -0.007531879935413599, -0.04691556096076965, 0.014533212408423424, -0.049075644463300705, -0.01192784495651722, 0.0034675069618970156, -0.004140165634453297, 0.004805718548595905, -0.014656375162303448, -0.044869162142276764, 0.023287246003746986, -0.028194811195135117, 0.06548472493886948, -0.013197369873523712, -0.007659779861569405, 0.002025080844759941, -0.019203925505280495, -0.005357582587748766, 0.061240341514348984, 0.027209509164094925, 0.011965741403400898, 0.003306447993963957, 0.03240129351615906, -0.02156296744942665, 0.02671685814857483, -0.03063911944627762, -0.019308140501379967, 0.030961237847805023, -0.03871102258563042, 0.01853126659989357, 0.03151073306798935, -0.06165720149874687, 0.010042506270110607, -0.0274747833609581, 0.021487174555659294, -0.010790958069264889, 0.008412967436015606, -0.031188614666461945, 0.061164550483226776, 0.017053313553333282, -0.08261382579803467, -0.015802737325429916, 0.04729452356696129, 0.006129718851298094, -0.05218314006924629, -0.01701541617512703, -0.017053313553333282, 0.007489246781915426, -0.013955295085906982, -0.032609723508358, -0.018834436312317848, -0.0646510049700737, 0.029615920037031174, -0.028194811195135117, -0.02683054655790329, 0.017167001962661743, -0.028156915679574013, 0.018218623474240303, -0.02495468221604824, -0.00035971833858639, 0.04839351400732994, 0.065219447016716, -0.00005177427374292165, -0.07162391394376755, -0.003628566162660718, -0.051690489053726196, -0.015499566681683064, 0.025523126125335693, 0.027512678876519203, -0.012837355025112629, -0.006276566535234451, -0.01864495500922203, 0.020767146721482277, -0.000756740802899003, -0.030298052355647087, 0.02110821194946766, 0.02226404845714569, 0.0009189841221086681, 0.01660803146660328, -0.00040708863525651395, 0.022112462669610977, 0.02402622438967228, 0.0331023745238781, 0.011340453289449215, -0.018967073410749435, -0.04441440850496292, 0.004917038604617119, 0.016579609364271164, -0.037024639546871185, 0.027436885982751846, 0.05294106528162956, 0.0014980861451476812, 0.003384609008207917, 0.05381267890334129, 0.03926051780581474, -0.017782816663384438, -0.009815129451453686, -0.0002025080902967602, -0.013566858135163784, 0.017460698261857033, -0.05085676908493042, -0.04748400300741196, 0.012249963358044624, -0.012467866763472557, -0.0031098611652851105, -0.00018696470942813903, 0.04558918997645378, 0.05115994065999985, -0.019800791516900063, 0.04388386011123657, 0.007133969571441412, -0.0016532239969819784, -0.004464652389287949, -0.03829416260123253, -0.009350900538265705, -0.049303025007247925, -0.0468776635825634, -0.04070057347416878, -0.010516209527850151, -0.012752088718116283, 0.004843614529818296, -0.012998414225876331, 0.004069109912961721, 0.0157743152230978, -0.04028371721506119, -0.01142571959644556, 0.01537640392780304, 0.017517542466521263, 0.08663082867860794, 0.002308118622750044, -0.12566396594047546, -0.008337175473570824, 0.05676858499646187, -0.09132996946573257, 0.005940237548202276, 0.030127519741654396, 0.027872692793607712, 0.021032419055700302, 0.05108414590358734, 0.0322876051068306, 0.005907078273594379, -0.022529320791363716, 0.07204077392816544, 0.04407333955168724, -0.04441440850496292, -0.043391209095716476, 0.03380345553159714, 0.0419890470802784, 0.017744919285178185, 0.016788039356470108, -0.06241512671113014, -0.0014909806195646524, 0.07389768958091736, 0.024291496723890305, -0.06480258703231812, -0.0024561507161706686, -0.01268577016890049, -0.049947258085012436, -0.022017722949385643, -0.004926512949168682, -0.015442722477018833, -0.04331541433930397, -0.06430993974208832, 0.028952736407518387, 0.018284941092133522, 0.020141858607530594, -0.031757060438394547, -0.00003206748078810051, -0.010573054663836956, 0.013083680532872677, 0.009076151996850967, 0.02770216017961502, 0.0180575642734766, 0.023628313094377518, 0.05991397425532341, 0.008484023623168468, -0.025845244526863098, 0.030601223930716515, 0.025333644822239876, -0.014267939142882824, 0.0441870279610157, 0.017574386671185493, 0.00844612717628479, -0.001134518999606371, 0.04342910274863243, 0.04748400300741196, -0.025504177436232567, 0.043467000126838684, -0.014921649359166622, 0.013784761540591717, 0.005774441175162792, 0.018540741875767708, -0.0005415019113570452, 0.06010345369577408, 0.017972297966480255, -0.020956628024578094, -0.04259538650512695, 0.00229509174823761, -0.005651278421282768, 0.012098378501832485, 0.018313363194465637, -0.006229196209460497, 0.018967073410749435, 0.0005110072670504451, 0.0037896251305937767, 0.021373486146330833, -0.045854464173316956, -0.02296512946486473, -0.05968659743666649, -0.0036167234648019075, 0.035167720168828964, -0.00865455623716116, 0.0004346226342022419, -0.025731554254889488, 0.013841605745255947, -0.01945972442626953, 0.010914120823144913, -0.02904747612774372, -0.010487787425518036, -0.009853025898337364, -0.06688688695430756, 0.018948126584291458, 0.02607262134552002, -0.06396887451410294, -0.034921396523714066, -0.0038180474657565355, 0.005149153061211109, 0.03145388886332512, -0.03634250536561012, -0.012922622263431549, -0.0011830736184492707, -0.014372153207659721, 0.02150612324476242, -0.06249091774225235, 0.049303025007247925, 0.03903314098715782, -0.0038559436798095703, -0.04134481027722359, 0.024045171216130257, -0.003806204767897725, 0.018900755792856216, -0.020312391221523285, 0.020236598327755928, 0.018720747902989388, 0.01987658441066742, 0.007086599245667458, 0.01963025890290737, -0.03526246175169945, 0.006191300228238106, -0.005850234068930149, 0.0034082941710948944, 0.0441870279610157, 0.004230169113725424, -0.01830388978123665, -0.022946180775761604, -0.07007016986608505, 0.02374200150370598, 0.022472476586699486, 0.016854358837008476, -0.05945922061800957, -0.06434783339500427, -0.12263227254152298, 0.018265994265675545, 0.07651253044605255, 0.018152303993701935, -0.013453169725835323, -0.028137966990470886, -0.007039228919893503, 0.02419675700366497, -0.023647261783480644, -0.03994264826178551, 0.023533571511507034, -0.02624315395951271, 0.007692939136177301, 0.003216444281861186, 0.03806678578257561, 0.0009912238456308842, 0.04539971053600311, -0.0007922684890218079, -0.014286886900663376, -0.05540432035923004, 0.044111236929893494, 0.02512521483004093, 0.04926512762904167, -0.0038156788796186447, -0.056958068162202835, -0.002920379862189293, -0.0371762216091156, 0.0012387337628751993, -0.02501152642071247, -0.033879250288009644, -0.036569882184267044, 0.027323197573423386, 0.05896656587719917, 0.021468225866556168, 0.02161981165409088, -0.03899524360895157, 0.02629999816417694, -0.03338659927248955, -0.0005166325136087835, -0.003216444281861186, -0.06442362815141678, -0.04032161086797714, -0.04115533083677292, -0.0008656925056129694, -0.019042866304516792, 0.01201311219483614, -0.05582118034362793, 0.01760280877351761, -0.009019307792186737, 0.015262715518474579, -0.09117837995290756, 0.01835126057267189, 0.005594434216618538, 0.05040201544761658, -0.08284120261669159, -0.0296348687261343, -0.0063570961356163025, -0.014239517040550709, -0.01976289600133896, 0.02069135382771492, -0.05627593398094177, -0.05131152644753456, 0.013756339438259602, 0.0489998534321785, -0.02402622438967228, 0.017233319580554962, 0.05161469429731369, -0.0008935225778259337, -0.0034082941710948944, 0.023931482806801796, 0.06449942290782928, 0.06813745945692062, 0.03050648234784603, 0.04502074792981148, 0.03056332655251026, 0.05032622069120407, -0.009871973656117916, -0.003299342468380928, 0.02379884570837021, 0.029199061915278435, -0.021373486146330833, -0.014627953059971333, -0.026906339451670647, -0.03243919089436531, -0.016626980155706406, -0.05233472213149071, 0.036494091153144836, 0.010440417565405369, -0.0005050859763287008, 0.011444668285548687, -0.04543760418891907, 0.004412544891238213, -0.005561274942010641, 0.006925540044903755, -0.05066728964447975, 0.028554825112223625, -0.01400266494601965, 0.029596973210573196, -0.03403083235025406, -0.008531393483281136, -0.0732155591249466, 0.006039714906364679 ]
9,562
asyncclick.parser
_match_long_opt
null
def _match_long_opt( self, opt: str, explicit_value: t.Optional[str], state: ParsingState ) -> None: if opt not in self._long_opt: from difflib import get_close_matches possibilities = get_close_matches(opt, self._long_opt) raise NoSuchOption(opt, possibilities=possibilities, ctx=self.ctx) option = self._long_opt[opt] if option.takes_value: # At this point it's safe to modify rargs by injecting the # explicit value, because no exception is raised in this # branch. This means that the inserted value will be fully # consumed. if explicit_value is not None: state.rargs.insert(0, explicit_value) value = self._get_value_from_state(opt, option, state) elif explicit_value is not None: raise BadOptionUsage( opt, _("Option {name!r} does not take a value.").format(name=opt) ) else: value = None option.process(value, state)
(self, opt: str, explicit_value: Optional[str], state: asyncclick.parser.ParsingState) -> NoneType
[ 0.06465046107769012, 0.021116536110639572, 0.02352221868932247, 0.06536325812339783, -0.009756374172866344, -0.038526542484760284, 0.036459438502788544, -0.00976528413593769, -0.0020671039819717407, -0.07912018895149231, -0.018995972350239754, 0.013088689185678959, -0.03424977511167526, -0.0404154472053051, -0.02646249532699585, 0.04847002401947975, -0.0030115568079054356, 0.0010079359635710716, -0.03642379865050316, 0.11604294180870056, 0.08403847366571426, -0.00009752198093337938, -0.022221367806196213, 0.06625425070524216, 0.004178757779300213, -0.03510512784123421, 0.04387250170111656, -0.05534849315881729, -0.06033805385231972, 0.008633723482489586, 0.04825618863105774, -0.05438622087240219, 0.019637487828731537, 0.05566925182938576, -0.006259226705878973, -0.029723530635237694, 0.0020470567978918552, 0.08567789942026138, -0.04287458956241608, -0.06632553040981293, -0.013516365550458431, -0.009836563840508461, 0.03362607955932617, 0.005876099690794945, -0.012144235894083977, -0.018657395616173744, 0.009203959256410599, -0.003984966780990362, -0.052818071097135544, -0.04472785443067551, 0.06632553040981293, -0.0423399917781353, -0.05730867758393288, -0.023183640092611313, -0.03678019717335701, 0.043409183621406555, 0.021544214338064194, 0.09323351830244064, 0.036744557321071625, 0.024662690237164497, -0.043337903916835785, -0.020635399967432022, -0.030204666778445244, -0.03366171941161156, 0.0024190463591367006, -0.03011556714773178, 0.042660750448703766, 0.013703473843634129, -0.03264598920941353, 0.010388979688286781, -0.04291022941470146, 0.016037875786423683, -0.020385922864079475, -0.006664628628641367, 0.0025036907754838467, 0.005394963547587395, -0.07662540674209595, 0.019441470503807068, 0.011698739603161812, 0.012322435155510902, -0.02956315129995346, 0.021971890702843666, 0.047186996787786484, -0.005885009653866291, -0.04704443737864494, -0.007992208003997803, 0.041698478162288666, -0.012429353781044483, 0.06461481750011444, 0.019441470503807068, -0.011529451236128807, -0.000630934489890933, 0.0059384689666330814, 0.05705919861793518, -0.010050402022898197, 0.04027288779616356, -0.0042990418151021, -0.0005092582432553172, -0.02639121562242508, 0.008722822181880474, -0.016759580001235008, -0.03613867983222008, 0.03314494341611862, -0.002160658361390233, 0.0796191468834877, 0.024377571418881416, 0.01986914686858654, -0.05053712800145149, 0.006522069685161114, 0.005288043990731239, -0.027264390140771866, -0.07199224084615707, -0.08311183750629425, -0.00910594966262579, -0.019833507016301155, 0.08774500340223312, 0.017338726669549942, -0.06336743384599686, -0.03620995953679085, -0.002412363886833191, -0.013453995808959007, -0.026302115991711617, -0.024431031197309494, -0.02109871618449688, 0.0028311305213719606, -0.02131255529820919, -0.024359751492738724, 0.012563003227114677, -0.0030761538073420525, 0.028084103018045425, 0.07755204290151596, 0.03594266250729561, 0.03795630857348442, -0.0336795412003994, -0.020528482273221016, 0.030614523217082024, -0.027513867244124413, 0.0317549929022789, -0.03469527140259743, 0.006223586853593588, -0.0072348639369010925, 0.010798836126923561, -0.020261183381080627, -0.04433581605553627, -0.014033141545951366, -0.06579092890024185, -0.012099686078727245, 0.007658085785806179, -0.004114160779863596, 0.03485565260052681, -0.008807467296719551, 0.0029848269186913967, -0.0007573441253043711, 0.0420905165374279, 0.037350431084632874, -0.004904916975647211, 0.007849649526178837, -0.04722263664007187, 0.025660602375864983, -0.026515955105423927, 0.05431494116783142, -0.09950610995292664, 0.02191843092441559, -0.025607142597436905, -0.033643901348114014, 0.0076001714915037155, -0.020100804045796394, 0.06154980510473251, 0.0011109570041298866, 0.03228959068655968, -0.0017530289478600025, 0.03106001950800419, -0.0011783384252339602, 0.019904786720871925, -0.00023680926824454218, 0.11133850365877151, -0.007756094913929701, -0.03663763776421547, 0.028761258348822594, -0.0488264225423336, -0.05648896470665932, 0.0023989989422261715, -0.010834475979208946, -0.030953101813793182, 0.004397050943225622, -0.013872763141989708, 0.009631635621190071, -0.025411123409867287, -0.02200753055512905, -0.014888495206832886, -0.003138523316010833, -0.024145914241671562, 0.0023254919797182083, -0.028173202648758888, -0.05263987183570862, -0.02528638392686844, 0.008771827444434166, -0.017098158597946167, 0.08432358503341675, -0.031238218769431114, -0.03093528188765049, -0.07067357748746872, 0.004811362829059362, 0.023593498393893242, 0.0215263944119215, 0.03610303997993469, 0.06322487443685532, 0.03781374916434288, -0.0034971479326486588, -0.021811511367559433, -0.03608522191643715, -0.03106001950800419, -0.036601997911930084, 0.04383686184883118, 0.009319787845015526, -0.03817014396190643, -0.007283868733793497, 0.03731479123234749, -0.0234509389847517, 0.013186697848141193, 0.056880999356508255, -0.032004471868276596, 0.09123769402503967, 0.055847447365522385, 0.023076722398400307, 0.010192961432039738, 0.04661675915122032, 0.03490911051630974, 0.026997091248631477, 0.05470697581768036, -0.026765434071421623, -0.05060840770602226, 0.042518191039562225, -0.027210930362343788, -0.03004428744316101, -0.005408328026533127, 0.020867059007287025, 0.02578533999621868, 0.07719564437866211, 0.014460817910730839, -0.030953101813793182, -0.018586115911602974, -0.022310467436909676, 0.04490605369210243, -0.020884878933429718, -0.00047166948206722736, 0.00012341646652203053, -0.008566899225115776, 0.041413359344005585, -0.017508015036582947, 0.013935131952166557, 0.07512854039669037, 0.01960184797644615, 0.049931254237890244, 0.056738439947366714, -0.03113129921257496, -0.028832538053393364, -0.008820831775665283, 0.002057080389931798, 0.009747465141117573, -0.03594266250729561, 0.04832746833562851, -0.014843945391476154, 0.02681889198720455, -0.060872651636600494, -0.015904227271676064, -0.001590422703884542, -0.03407157585024834, -0.013008499518036842, 0.03373299911618233, 0.019619667902588844, -0.04469221457839012, -0.030899642035365105, 0.04789979010820389, 0.0019000428728759289, 0.08190008997917175, 0.04098568484187126, 0.0015536692226305604, -0.027406947687268257, -0.030543243512511253, -0.03011556714773178, 0.0622982382774353, 0.05046585202217102, 0.00938215758651495, -0.041698478162288666, 0.03706531226634979, 0.027389127761125565, 0.02879689820110798, -0.02487652748823166, 0.018318818882107735, 0.02337965928018093, 0.003287764498963952, 0.10649149864912033, -0.0043747760355472565, 0.009667275473475456, 0.02480524778366089, 0.0008453297195956111, 0.008161497302353382, -0.00841542985290289, -0.03670891746878624, 0.007920929230749607, -0.05449314042925835, -0.048291828483343124, 0.014737025834619999, 0.018728675320744514, 0.021366015076637268, -0.016242804005742073, -0.023682596161961555, 0.06653936952352524, 0.02845831960439682, -0.017222896218299866, 0.03122039884328842, -0.026622874662280083, -0.03214703127741814, 0.022363927215337753, 0.03428541496396065, -0.032075751572847366, -0.013275797478854656, -0.0008631495875306427, -0.0007968819700181484, 0.00687401182949543, 0.025072546675801277, -0.04005905240774155, -0.06475737690925598, -0.04034416750073433, -0.01165418978780508, -0.017632754519581795, 0.025072546675801277, 0.032004471868276596, 0.00025629973970353603, -0.0216511320322752, -0.022702503949403763, -0.03129167854785919, 0.018889054656028748, 0.008108037523925304, -0.01512906327843666, -0.025607142597436905, 0.0026440219953656197, 0.008651543408632278, -0.00639287568628788, 0.028618698939681053, 0.02915329486131668, -0.03606740012764931, -0.004806907847523689, 0.09480166435241699, 0.04472785443067551, 0.014380629174411297, 0.0029692344833165407, 0.05648896470665932, -0.04583268612623215, -0.04914718121290207, -0.029099835082888603, -0.0028779078274965286, -0.03774246945977211, 0.0707092136144638, 0.021668951958417892, 0.0001001671189442277, 0.012607553042471409, 0.0050519309006631374, -0.03326968476176262, -0.023219279944896698, -0.06636116653680801, 0.02006516419351101, -0.03225395083427429, 0.03959573432803154, -0.020475022494792938, -0.02913547493517399, -0.04091440513730049, -0.03141641616821289, -0.01587749645113945, 0.018657395616173744, -0.07413062453269958, 0.05766507610678673, -0.0649355798959732, 0.040593646466732025, 0.008651543408632278, -0.023254919797182083, 0.022666864097118378, -0.056738439947366714, -0.03253906965255737, 0.06810751557350159, 0.04298150911927223, 0.010870115831494331, 0.034677453339099884, -0.03401811793446541, -0.039916492998600006, -0.03106001950800419, 0.040522366762161255, 0.001521370722912252, 0.0013587644789367914, 0.013730203732848167, -0.011369071900844574, 0.04597524553537369, -0.010781017132103443, -0.0040317438542842865, 0.018514836207032204, 0.011966037563979626, -0.009872203692793846, -0.06315359473228455, -0.025482403114438057, 0.009230689145624638, -0.01498650386929512, 0.0131688779219985, 0.04269639030098915, -0.006628988776355982, 0.016661571338772774, 0.0115472711622715, 0.042589470744132996, -0.08182881027460098, 0.00478017795830965, -0.051998358219861984, 0.00033551460364833474, 0.02893945574760437, -0.020243363454937935, -0.06678884476423264, 0.005390508566051722, -0.0191207118332386, 0.03442797437310219, -0.010353339836001396, -0.03373299911618233, 0.027941543608903885, -0.03134513646364212, -0.015512189827859402, 0.08382463455200195, 0.03692275658249855, -0.01799806021153927, -0.011805659160017967, -0.031790632754564285, -0.0072972336784005165, -0.05666716396808624, -0.02735348790884018, -0.0013097599148750305, 0.0240568146109581, -0.0013788118958473206, 0.021704591810703278, 0.001238480443134904, -0.03553280606865883, -0.01601114682853222, 0.020653219893574715, -0.0279059037566185, -0.01712488755583763, 0.007052210625261068, -0.012910489924252033, 0.0687846690416336, 0.042446911334991455, -0.07947658747434616, 0.013605465181171894, -0.001081999740563333, -0.006927471607923508, -0.03745735064148903, -0.002929139882326126, -0.03555062413215637, -0.05010945349931717, 0.005136575549840927, -0.04276767000555992, -0.04775723069906235, -0.0904536247253418, 0.02872561849653721, -0.05121428519487381, -0.004198804963380098, 0.025126006454229355, 0.008852016180753708, 0.04351610317826271, 0.016545742750167847, -0.043337903916835785, 0.06055189296603203, 0.05417238175868988, 0.0191207118332386, -0.07748076319694519, 0.0053548687137663364, -0.05670280382037163, -0.06315359473228455, -0.0027086189948022366, 0.04850566387176514, -0.00033078118576668203, -0.0049806516617536545, 0.006357235834002495, 0.037706829607486725, -0.00010865939839277416, -0.00728832371532917, 0.012313525192439556, 0.037778109312057495, 0.01683085970580578, -0.004283449612557888, 0.041555918753147125, 0.015004323795437813, 0.008914385922253132, 0.0036575268022716045, -0.029438411816954613, 0.012179875746369362, -0.040950044989585876, 0.026070458814501762, 0.029064195230603218, -0.027193110436201096, 0.06358126550912857, 0.004557429812848568, 0.02480524778366089, 0.016135884448885918, 0.05595436692237854, -0.024092454463243484, -0.035568445920944214, -0.042803309857845306, -0.005809274967759848, 0.00032911059679463506, 0.05135684460401535, -0.04601088538765907, -0.03141641616821289, 0.04569012671709061, -0.02963443100452423, 0.04654547944664955, -0.03232523053884506, -0.01460337731987238, 0.06315359473228455, -0.005421692971140146, 0.06956874579191208, 0.05092916637659073, -0.008843107149004936, -0.0404154472053051, -0.003842407837510109, -0.027959363535046577, -0.04793542996048927, -0.0420905165374279, -0.02054630219936371, -0.08724604547023773, 0.02157985419034958, -0.04283894971013069, -0.02749604731798172, -0.007350692991167307, 0.028832538053393364, -0.09715388715267181, 0.012759021483361721, 0.006112212780863047, 0.04055800661444664, 0.07341783493757248, 0.026177378371357918, -0.03038286603987217, 0.00038340548053383827, 0.06746599823236465, -0.07969042658805847, 0.009907843545079231, -0.002811083337292075, 0.049325380474328995, -0.0016071288846433163, 0.024627050384879112, 0.012571913190186024, 0.009471257217228413, -0.02427065186202526, 0.06311795115470886, 0.04116388037800789, -0.00014123633445706218, -0.05520593374967575, 0.0519627183675766, 0.03366171941161156, 0.06265463680028915, -0.06525633484125137, -0.039417535066604614, 0.016893230378627777, 0.045262452214956284, 0.00031073385616764426, -0.026979271322488785, 0.031933192163705826, -0.0027999458834528923, -0.02384297549724579, -0.007609081454575062, 0.022453026846051216, -0.025874439626932144, 0.00010204655700363219, -0.03079272247850895, 0.039987772703170776, 0.049182821065187454, 0.014086601324379444, -0.025482403114438057, -0.018300998955965042, -0.004717808682471514, -0.026337755843997, 0.0115472711622715, 0.06147852540016174, 0.006357235834002495, 0.01268774177879095, 0.036744557321071625, -0.014193519949913025, 0.04212615638971329, 0.018853414803743362, 0.04797106981277466, -0.008580263704061508, 0.02001170627772808, 0.05859170854091644, 0.011386891826987267, -0.0663968101143837, -0.03421413525938988, -0.015378541313111782, 0.02198971062898636, 0.025072546675801277, -0.04287458956241608, -0.014309349469840527, 0.021954070776700974, -0.011030495166778564, -0.020172083750367165, 0.0702458992600441, 0.02936713397502899, -0.0449773333966732, -0.04262511059641838, -0.04590396583080292, 0.00431240675970912, 0.009996943175792694, 0.009685095399618149, 0.02116999588906765, -0.014933045022189617, -0.02448449097573757, 0.004145345650613308, 0.006548799574375153, -0.01609133556485176, 0.0069452915340662, -0.01430043950676918, -0.05730867758393288, 0.027175290510058403, 0.014362809248268604, 0.007920929230749607, 0.00618349201977253, -0.006833916995674372, -0.04779287055134773, 0.011983857490122318, -0.02220354788005352, -0.01594877615571022, -0.051927078515291214, -0.018924694508314133, 0.0077783698216080666, 0.05520593374967575, -0.047472111880779266, -0.0325925275683403, -0.012215515598654747, 0.03931061550974846, -0.0020815825555473566, 0.04611780494451523, -0.03164807707071304, -0.05720175802707672, -0.006851736921817064, -0.019958246499300003, -0.028297942131757736, 0.02646249532699585, -0.016536831855773926, -0.0027932634111493826, -0.055704887956380844, 0.0365663580596447, -0.003913687076419592, 0.07812227308750153, -0.030062107369303703, -0.0022174590267241, 0.007092304993420839, 0.05160631984472275, 0.05039457231760025, 0.05919758230447769, -0.03503384813666344, -0.007524436805397272, 0.03314494341611862, 0.008958935737609863, 0.0433022640645504, -0.013026319444179535, -0.009551445953547955, 0.03314494341611862, -0.046224724501371384, 0.010264241136610508, 0.04308842867612839, -0.022631226107478142, -0.03809886425733566, -0.03307366371154785, -0.04886206239461899, -0.05563361197710037, 0.042233072221279144, 0.0055241575464606285, -0.02881471812725067, -0.07117252796888351, -0.02206099033355713, 0.046438559889793396, -0.026355575770139694, -0.02295198291540146, -0.015859678387641907, -0.019298911094665527, 0.020368102937936783, -0.014211339876055717, 0.05356650799512863, -0.0259813591837883, 0.009774194099009037, -0.027531687170267105, -0.031594615429639816, 0.0056711710058152676, -0.016376454383134842, 0.052818071097135544, 0.05898374319076538, -0.0632605105638504, -0.02728221006691456, -0.04886206239461899, -0.05891246348619461, 0.04412198066711426, -0.022720323875546455, -0.039274975657463074, -0.03157679736614227, 0.025215106084942818, 0.10485207289457321, 0.02482306770980358, 0.055384133011102676, -0.0027063915040344, -0.003425868460908532, -0.03139859810471535, 0.005127665586769581, 0.016857590526342392, -0.06368818879127502, -0.019708767533302307, -0.012883760035037994, 0.025518042966723442, -0.00214952090755105, 0.026694154366850853, -0.0055330670438706875, -0.0420905165374279, 0.025411123409867287, 0.0060364785604178905, -0.03767118975520134, -0.022577766329050064, 0.03277072682976723, 0.007457612548023462, -0.03009774722158909, 0.010433529503643513, -0.015022143721580505, -0.022524306550621986, 0.02674761414527893, 0.04298150911927223, -0.03670891746878624, -0.05039457231760025, 0.040379807353019714, 0.0442645363509655, -0.0488264225423336, 0.009391067549586296, 0.016670480370521545, -0.02956315129995346, -0.02116999588906765, 0.01168091967701912, 0.030970919877290726, 0.031166939064860344, 0.006744817830622196, 0.03615650162100792, -0.0008347491966560483, 0.05203399807214737, 0.028779078274965286, -0.00009766119910636917, -0.0372791513800621, -0.0055241575464606285, -0.005310318898409605, 0.003555062459781766, -0.01725853607058525, -0.028476139530539513, -0.010914665646851063, -0.0603736937046051, 0.03209357336163521, 0.08860035240650177, 0.040593646466732025, 0.005074205808341503, -0.014336079359054565, 0.0721704438328743, 0.03373299911618233, -0.0001464569941163063, -0.040807485580444336, 0.014460817910730839, 0.011778929270803928, 0.017356546595692635, -0.06461481750011444, -0.03122039884328842, -0.04536936804652214, 0.026658514514565468 ]
9,563
asyncclick.parser
_match_short_opt
null
def _match_short_opt(self, arg: str, state: ParsingState) -> None: stop = False i = 1 prefix = arg[0] unknown_options = [] for ch in arg[1:]: opt = normalize_opt(f"{prefix}{ch}", self.ctx) option = self._short_opt.get(opt) i += 1 if not option: if self.ignore_unknown_options: unknown_options.append(ch) continue raise NoSuchOption(opt, ctx=self.ctx) if option.takes_value: # Any characters left in arg? Pretend they're the # next arg, and stop consuming characters of arg. if i < len(arg): state.rargs.insert(0, arg[i:]) stop = True value = self._get_value_from_state(opt, option, state) else: value = None option.process(value, state) if stop: break # If we got any unknown options we recombine the string of the # remaining options and re-attach the prefix, then report that # to the state as new larg. This way there is basic combinatorics # that can be achieved while still ignoring unknown arguments. if self.ignore_unknown_options and unknown_options: state.largs.append(f"{prefix}{''.join(unknown_options)}")
(self, arg: str, state: asyncclick.parser.ParsingState) -> NoneType
[ -0.012676459737122059, 0.031155264005064964, 0.04667745903134346, 0.024595288559794426, 0.018543479964137077, -0.027810601517558098, 0.047564443200826645, 0.048599254339933395, 0.04420129954814911, -0.11168589442968369, -0.03370533883571625, 0.04187297075986862, -0.040579453110694885, -0.017628779634833336, -0.013896061107516289, -0.011419901624321938, -0.01378518808633089, 0.02930738404393196, -0.04069032892584801, 0.08359811455011368, 0.09690285474061966, 0.03490646183490753, -0.021158231422305107, 0.06072135269641876, 0.001667712116613984, 0.0099231181666255, 0.04978189989924431, -0.05236893147230148, -0.04708399251103401, -0.0063751875422894955, 0.0425751656293869, -0.033686861395835876, 0.00495693925768137, 0.07073686271905899, -0.006486060563474894, -0.03061937913298607, -0.01832173392176628, 0.08034583926200867, -0.050742797553539276, -0.0366804264485836, 0.0022855971474200487, -0.0452730730175972, -0.001405544113367796, 0.0009943906916305423, 0.019051646813750267, -0.01252862997353077, 0.011770998127758503, 0.037789154797792435, -0.05584294721484184, -0.06175616383552551, 0.06205182522535324, -0.03278139978647232, -0.05218414589762688, -0.0502253919839859, -0.02265501394867897, 0.04080120101571083, 0.028032345697283745, 0.07694574445486069, -0.004529616795480251, 0.05676688626408577, -0.052849382162094116, 0.008777432143688202, -0.018367931246757507, -0.016464615240693092, -0.025999678298830986, -0.056286439299583435, 0.020677782595157623, -0.013822145760059357, -0.04471870884299278, -0.0022105269599705935, -0.02962152287364006, 0.0005312656285241246, -0.004684376996010542, -0.023412644863128662, -0.03769676014780998, 0.0016723318258300424, -0.08980698883533478, -0.0010105596156790853, -0.00039613936678506434, 0.0010307708289474249, -0.03791850805282593, 0.012602544389665127, -0.0058023445308208466, -0.007640985772013664, -0.03034219704568386, 0.008472532033920288, 0.03760436549782753, -0.019957108423113823, 0.02330177277326584, -0.026424691081047058, -0.03769676014780998, -0.019994067028164864, 0.042316462844610214, 0.05813431739807129, -0.0011081508127972484, 0.012445474974811077, -0.03097047656774521, 0.0036680425982922316, -0.010754664428532124, -0.016843430697917938, -0.06944334506988525, -0.01798911578953266, 0.004970798268914223, 0.01326778158545494, 0.06718893349170685, 0.04069032892584801, -0.012232968583703041, -0.018839141353964806, -0.03703152388334274, 0.02084409072995186, -0.026295339688658714, -0.08293287456035614, -0.04771227389574051, -0.030767209827899933, -0.012482432648539543, 0.03760436549782753, 0.018719028681516647, -0.021731074899435043, -0.0773153156042099, -0.0043124910444021225, -0.03130309656262398, -0.02784755825996399, 0.007816534489393234, -0.019402744248509407, 0.009424190036952496, -0.02337568812072277, -0.01982775703072548, 0.025168132036924362, -0.0002011013712035492, 0.056988634169101715, 0.06711501628160477, 0.04531002789735794, 0.022488705813884735, -0.013859103433787823, -0.02540835551917553, 0.024484416469931602, 0.009664414450526237, 0.024151798337697983, -0.06382579356431961, 0.015402083285152912, 0.025371398776769638, -0.019642969593405724, -0.011161197908222675, -0.02827257104218006, -0.04353606328368187, -0.04811880737543106, -0.02189738303422928, -0.010708467103540897, 0.025297483429312706, 0.03984030336141586, -0.022710449993610382, 0.001752021606080234, 0.019291872158646584, 0.03065633773803711, 0.022710449993610382, -0.015402083285152912, -0.012778093107044697, -0.00081537727965042, 0.012888966128230095, -0.002134301932528615, 0.026424691081047058, -0.09941596537828445, -0.013720512390136719, -0.028050824999809265, -0.0432034432888031, -0.017259202897548676, 0.0031829741783440113, 0.02960304543375969, -0.014413467608392239, 0.031210700049996376, 0.009969315491616726, 0.03520212322473526, 0.03788154944777489, 0.04294474050402641, -0.03651411831378937, 0.1091727763414383, -0.03097047656774521, -0.013295499607920647, -0.007465437054634094, -0.07805447280406952, -0.01724996417760849, 0.01060683373361826, -0.025371398776769638, -0.03307706117630005, 0.007391521707177162, -0.015078704804182053, 0.026757309213280678, -0.019365787506103516, -0.023763742297887802, 0.0035525502171367407, 0.04294474050402641, -0.03651411831378937, -0.006735524162650108, -0.009969315491616726, -0.04220559075474739, 0.012214490212500095, -0.014450425282120705, -0.01992015168070793, 0.08788519352674484, -0.014025412499904633, -0.04885796085000038, -0.04080120101571083, -0.0035664092283695936, 0.023246336728334427, 0.020141897723078728, 0.0405055396258831, 0.039248980581760406, 0.05392115190625191, -0.025851847603917122, -0.014071609824895859, -0.011161197908222675, -0.0570625476539135, 0.012685699388384819, 0.034001000225543976, 0.01130902860313654, -0.009498105384409428, -0.02581489086151123, 0.03902723640203476, -0.02084409072995186, -0.0012346151052042842, 0.07768489420413971, -0.02538987807929516, 0.08951132744550705, 0.07535656541585922, 0.00020702036272268742, -0.017157569527626038, 0.07062599062919617, 0.05684080347418785, 0.017527146264910698, 0.02890085056424141, -0.04290778562426567, -0.036717385053634644, 0.06493452191352844, -0.004245505202561617, -0.012020462192595005, -0.0032730582170188427, 0.057616911828517914, 0.025851847603917122, 0.10348130762577057, -0.0067262849770486355, -0.019421223551034927, -0.030138930305838585, -0.023541996255517006, 0.0060610477812588215, -0.009244021959602833, 0.01746246963739395, 0.014542819000780582, -0.012463953346014023, 0.04708399251103401, 0.012805811129510403, -0.023763742297887802, 0.09586803615093231, 0.0201603751629591, 0.03769676014780998, 0.02095496468245983, -0.09224618971347809, -0.04283386841416359, 0.004668207839131355, -0.02198977768421173, -0.021841946989297867, -0.02923346869647503, 0.0358673594892025, 0.009470387361943722, 0.010024751536548138, -0.044053468853235245, 0.036421723663806915, 0.040949031710624695, -0.05968653783202171, 0.019698405638337135, 0.0258333683013916, 0.013240063562989235, -0.06515626609325409, -0.04915361851453781, 0.07827621698379517, 0.007363803684711456, 0.07790663838386536, 0.0007859266479499638, 0.015226534567773342, -0.024521373212337494, 0.0061349631287157536, -0.02232239581644535, 0.03928593918681145, 0.04427521675825119, -0.0005254910211078823, -0.0403207503259182, 0.03522060066461563, 0.030416112393140793, 0.024188755080103874, -0.010893255472183228, 0.0314139686524868, 0.029510650783777237, 0.0314139686524868, 0.029344340786337852, -0.0296584814786911, -0.003915196750313044, 0.06574758887290955, 0.005737668834626675, 0.001613430678844452, -0.01921795681118965, -0.019735362380743027, -0.0002077421813737601, -0.05247980356216431, -0.0851503312587738, 0.0026794266887009144, 0.0008552221697755158, 0.02158324420452118, -0.007220592815428972, 0.014154763892292976, 0.0733608528971672, 0.014921634458005428, -0.02649860642850399, -0.0016168954316526651, -0.00801056157797575, -0.04948623850941658, 0.022710449993610382, 0.011115000583231449, -0.036070626229047775, 0.005044713616371155, -0.028013868257403374, 0.019587533548474312, 0.01361887902021408, 0.012648741714656353, -0.05502988025546074, -0.013905300758779049, -0.029030201956629753, 0.022193044424057007, -0.017841285094618797, 0.013304739259183407, 0.021416934207081795, -0.006213497836142778, 0.012408517301082611, -0.04065337032079697, -0.05684080347418785, 0.009525823406875134, -0.019661448895931244, -0.042020801454782486, -0.018007595092058182, 0.008851347491145134, -0.03525755926966667, -0.00009816864621825516, 0.06171920895576477, 0.06474973261356354, -0.04970798268914223, 0.012011222541332245, 0.1008942723274231, 0.039175067096948624, 0.04641875624656677, 0.0020592317450791597, 0.06600628793239594, 0.014099327847361565, -0.023615911602973938, -0.01077314279973507, 0.008098335936665535, -0.02688666060566902, 0.1256558746099472, 0.02267349325120449, -0.025593144819140434, 0.0015395154478028417, -0.008236926980316639, -0.041614267975091934, -0.008458673022687435, -0.08012409508228302, 0.01252862997353077, -0.02544531412422657, 0.01588253304362297, -0.0337977334856987, -0.042316462844610214, -0.033686861395835876, -0.03353903070092201, -0.013471048325300217, 0.03355750814080238, -0.05395811051130295, 0.018220100551843643, -0.07908928394317627, 0.009636696428060532, 0.0010977564379572868, 0.015050986781716347, 0.009636696428060532, -0.07195646315813065, -0.05684080347418785, 0.05443855747580528, 0.04205776005983353, 0.009516584686934948, 0.07495003193616867, -0.0667824000120163, -0.03167267143726349, -0.04146643728017807, 0.02125062607228756, 0.04146643728017807, 0.007978224195539951, 0.010726946406066418, -0.053440701216459274, 0.049671027809381485, -0.008629601448774338, -0.007396141532808542, -0.0016515431925654411, 0.030545463785529137, -0.00036726624239236116, -0.07324998080730438, -0.011891110800206661, 0.003857450559735298, -0.06519322097301483, 0.022895239293575287, 0.060425691306591034, 0.0040676468051970005, 0.002875763922929764, 0.04353606328368187, 0.042020801454782486, -0.04460783302783966, 0.027385588735342026, -0.02293219603598118, -0.0035525502171367407, -0.002168949693441391, -0.022728929296135902, -0.07628050446510315, -0.007479296065866947, 0.01517109852284193, 0.051408033818006516, -0.0068833548575639725, 0.00093779934104532, 0.018081510439515114, -0.013526485301554203, 0.0008748559048399329, 0.06766938418149948, 0.05532554164528847, -0.007737999316304922, -0.013535724021494389, -0.03146940469741821, 0.023893093690276146, -0.04043162614107132, -0.037438057363033295, 0.013277021236717701, 0.02300611138343811, -0.02019733376801014, 0.011503055691719055, -0.009969315491616726, -0.017323879525065422, -0.008957600221037865, 0.009997033514082432, 0.003663423005491495, -0.012112856842577457, -0.024096360430121422, -0.0177766103297472, 0.054142896085977554, 0.038916364312171936, -0.0411338172852993, 0.021010400727391243, -0.013489527627825737, 0.006264314986765385, -0.019661448895931244, 0.0017935989890247583, -0.039544641971588135, -0.038140252232551575, -0.015254253521561623, -0.009692133404314518, -0.09875073283910751, -0.0667824000120163, 0.05440159887075424, -0.03895331919193268, -0.013896061107516289, 0.014358031563460827, 0.023763742297887802, 0.05129716172814369, 0.032042246311903, -0.027052970603108406, 0.07665008306503296, 0.0760587602853775, 0.03339120000600815, -0.0572473369538784, -0.006948030553758144, -0.07276953011751175, -0.03717935457825661, -0.018220100551843643, 0.02261805720627308, -0.0004717869742307812, -0.0012057420099154115, -0.018257059156894684, 0.024299627169966698, 0.0004483997472561896, 0.010043229907751083, -0.01252862997353077, 0.0067955804988741875, 0.062236614525318146, 0.01550371665507555, 0.036791298538446426, -0.01096717081964016, 0.022858280688524246, 0.009544302709400654, -0.04242733493447304, 0.00046630107681266963, -0.013572681695222855, 0.012417756952345371, 0.0056267958134412766, -0.03024980239570141, 0.05236893147230148, 0.005950175225734711, -0.017702694982290268, 0.03060089983046055, 0.027126885950565338, 0.018210861831903458, -0.008042899891734123, -0.02821713499724865, -0.008828248828649521, 0.02930738404393196, 0.01953209564089775, -0.03414883092045784, -0.03865765780210495, 0.0405055396258831, -0.026369255036115646, 0.023597434163093567, -0.0432034432888031, 0.029769353568553925, 0.049634069204330444, 0.014579776674509048, 0.024983344599604607, 0.0723629966378212, 0.0034324380103498697, -0.0035363812930881977, 0.0040353089570999146, -0.022747408598661423, -0.04216863214969635, -0.04279690980911255, -0.0005049910978414118, -0.02189738303422928, -0.013572681695222855, 0.009895400144159794, -0.010579115711152554, -0.021158231422305107, 0.025537708774209023, -0.08049367368221283, 0.0004022027424070984, 0.021102795377373695, 0.005150966811925173, 0.05458638817071915, -0.007206733804196119, -0.010320411995053291, 0.017000500112771988, 0.06142354756593704, 0.004919981583952904, 0.018959254026412964, 0.022913718596100807, 0.022895239293575287, 0.0025939622428268194, 0.021139752119779587, -0.026221424341201782, 0.04586439207196236, -0.03732718527317047, 0.04523611441254616, 0.042722996324300766, 0.022211523726582527, -0.06260619312524796, 0.0403207503259182, 0.024207234382629395, 0.07365651428699493, -0.03182050213217735, -0.030915040522813797, 0.0069341715425252914, 0.05846693739295006, -0.018294015899300575, 0.0009753343765623868, 0.018894577398896217, -0.028457358479499817, -0.00582082336768508, -0.006948030553758144, 0.016769515350461006, -0.025722496211528778, 0.007807294838130474, -0.04139252379536629, 0.0570625476539135, 0.06134963035583496, -0.0029404398519545794, -0.03279987722635269, -0.060795266181230545, -0.010865537449717522, -0.06175616383552551, -0.011022606864571571, 0.06548888236284256, 0.0010971790179610252, 0.014043891802430153, 0.004153111483901739, -0.025888804346323013, 0.03182050213217735, 0.009040755219757557, 0.05565815791487694, -0.03753045201301575, 0.03769676014780998, 0.04224254563450813, -0.00634746951982379, -0.04423825815320015, -0.035349953919649124, 0.004859925713390112, 0.01379442773759365, 0.03839895501732826, -0.05846693739295006, -0.023061547428369522, 0.013859103433787823, 0.019439702853560448, -0.05026234686374664, 0.07410001009702682, 0.010006272234022617, -0.03627389296889305, -0.05340374633669853, 0.003538690973073244, -0.031561799347400665, 0.011669364757835865, 0.04970798268914223, 0.02928890474140644, -0.017148330807685852, -0.031580276787281036, -0.029048681259155273, 0.0011797561310231686, -0.043683893978595734, -0.008250785991549492, -0.02476159855723381, -0.07997626811265945, 0.013896061107516289, 0.033243369311094284, -0.015762420371174812, 0.0390641912817955, -0.011918828822672367, -0.0479709766805172, 0.022802844643592834, -0.04519915580749512, -0.02964000217616558, -0.04919057711958885, -0.021139752119779587, 0.002374526346102357, 0.06818678975105286, -0.011752519756555557, -0.0390641912817955, -0.022156085819005966, -0.004822968039661646, -0.003159875515848398, -0.0012057420099154115, -0.022913718596100807, -0.06164529174566269, -0.04253820702433586, -0.007701041642576456, -0.05273851007223129, 0.03943376988172531, -0.026424691081047058, -0.01842336729168892, -0.03588583692908287, 0.02126910351216793, -0.0044002654030919075, 0.05891042947769165, -0.03651411831378937, -0.0062181176617741585, -0.0007068142876960337, -0.0001324554905295372, 0.07273257523775101, 0.07458045333623886, -0.0355532206594944, -0.008135293610394001, 0.053847238421440125, 0.0031829741783440113, 0.04641875624656677, -0.0009678273927420378, 0.015023267827928066, 0.024576809257268906, 0.028328007087111473, -0.0013916849857196212, 0.08248938620090485, -0.020825613290071487, 0.011410661973059177, -0.020456036552786827, -0.02609207294881344, -0.07073686271905899, 0.012288404628634453, 0.03383469209074974, -0.0522950179874897, -0.06474973261356354, -0.03036067634820938, 0.04449696093797684, -0.031118307262659073, -0.0067586228251457214, 0.006365948356688023, 0.012491672299802303, 0.021010400727391243, -0.018210861831903458, 0.017711933702230453, -0.05495596304535866, 0.0502253919839859, -0.021453892812132835, -0.018525002524256706, 0.03910114988684654, 0.009322556667029858, -0.017277682200074196, 0.04309257119894028, -0.05957566574215889, 0.0003017242415808141, -0.046899206936359406, -0.021490849554538727, 0.03581192344427109, -0.021749552339315414, -0.014977071434259415, -0.034666236490011215, 0.027459504082798958, 0.07539352029561996, -0.018996210768818855, 0.05846693739295006, 0.014921634458005428, 0.00990463886409998, -0.02468768320977688, 0.0334835946559906, 0.017222246155142784, -0.05011451989412308, -0.012491672299802303, 0.024853991344571114, 0.049634069204330444, -0.0007177860825322568, 0.03420426696538925, -0.0007160537061281502, 0.006892594043165445, 0.04190992936491966, -0.04009900614619255, -0.00680019985884428, -0.035349953919649124, 0.01953209564089775, 0.029436735436320305, -0.023486560210585594, -0.01481076143682003, -0.03355750814080238, 0.030915040522813797, 0.0002537948312237859, -0.004231646191328764, -0.014034652151167393, -0.014284116216003895, -0.0005029699532315135, 0.013073754496872425, -0.06781721115112305, 0.009516584686934948, 0.033686861395835876, -0.0432034432888031, 0.009627456776797771, 0.01078238245099783, 0.047527484595775604, 0.02854975312948227, 0.023116985335946083, 0.036089103668928146, -0.0041923788376152515, 0.03612606227397919, 0.046825289726257324, 0.00582082336768508, 0.011909589171409607, 0.03061937913298607, 0.000616152654401958, 0.021841946989297867, -0.0008263490162789822, -0.026720350608229637, -0.0021955128759145737, -0.04531002789735794, -0.004832207225263119, 0.0667824000120163, -0.023080026730895042, -0.004199308343231678, -0.05883651226758957, 0.05757995694875717, 0.014043891802430153, -0.022082172334194183, -0.07476524263620377, -0.03828808292746544, -0.00014869663573335856, 0.023172421380877495, 0.0004893995937891304, -0.011595450341701508, -0.016714079305529594, -0.010218778625130653 ]
9,564
asyncclick.parser
_process_args_for_args
null
def _process_args_for_args(self, state: ParsingState) -> None: pargs, args = _unpack_args( state.largs + state.rargs, [x.nargs for x in self._args] ) for idx, arg in enumerate(self._args): arg.process(pargs[idx], state) state.largs = args state.rargs = []
(self, state: asyncclick.parser.ParsingState) -> NoneType
[ -0.018909210339188576, -0.010569668374955654, -0.04205378517508507, 0.034951116889715195, -0.012584276497364044, -0.002429243177175522, 0.033807944506406784, 0.01643545925617218, 0.0389428548514843, -0.036562804132699966, 0.011403622105717659, 0.002376535441726446, -0.017306894063949585, 0.030003614723682404, -0.06874032318592072, 0.044302649796009064, 0.02593691647052765, 0.0751870721578598, -0.04722617566585541, 0.004586748778820038, -0.02760482393205166, 0.009543622843921185, 0.0008116998942568898, 0.014017928391695023, 0.019433945417404175, -0.008779945783317089, 0.06544198840856552, -0.04389035701751709, 0.01757863163948059, -0.02623676508665085, 0.04175393655896187, 0.022151324898004532, 0.0028649610467255116, 0.04261600226163864, 0.04700129106640816, -0.019602611660957336, -0.019565129652619362, 0.06206868961453438, 0.007121407426893711, 0.01320271473377943, 0.021570367738604546, -0.047750912606716156, 0.027567343786358833, -0.009848156943917274, -0.0018845961894840002, 0.006207806058228016, 0.00023381759820040315, -0.021176816895604134, -0.010475965216755867, -0.04752602428197861, 0.004207252524793148, -0.07953488081693649, 0.048425570130348206, 0.002284004120156169, 0.039130259305238724, 0.08598162233829498, 0.04175393655896187, 0.03950507193803787, 0.0036895449738949537, -0.049175191670656204, 0.030472127720713615, 0.030228501185774803, 0.0025885379873216152, -0.05206123739480972, 0.016576012596488, -0.07293820381164551, 0.021476665511727333, -0.008428560569882393, -0.04940007999539375, 0.03796834498643875, -0.059145163744688034, -0.034576307982206345, -0.0078382333740592, -0.010297929868102074, -0.012190724723041058, 0.03890537470579147, -0.0036801747046411037, 0.048725418746471405, 0.0010588408913463354, 0.030828198418021202, 0.0014465359272435308, 0.018543770536780357, -0.04175393655896187, 0.02260109782218933, 0.003827756503596902, 0.01030729990452528, 0.012902866117656231, 0.028354445472359657, 0.007557125296443701, -0.024587595835328102, -0.021926438435912132, -0.000931170885451138, 0.006966798100620508, 0.03757479414343834, 0.049175191670656204, 0.04692632704973221, -0.04771342873573303, -0.04156653210520744, -0.038005828857421875, 0.02153288759291172, -0.0793849527835846, -0.01864684373140335, -0.004343121312558651, -0.056708890944719315, 0.04913771152496338, 0.0048116352409124374, 0.0015168129466474056, -0.05955745652318001, -0.006175009999424219, 0.026442909613251686, -0.010944479145109653, 0.008109970949590206, -0.03935514762997627, 0.011019441299140453, -0.06191876530647278, -0.012856015004217625, -0.01842195726931095, -0.009435865096747875, 0.001625742414034903, 0.06589175760746002, -0.051461540162563324, 0.005922012496739626, 0.0625559389591217, 0.03373298421502113, -0.02739867754280567, 0.020427195355296135, -0.017016416415572166, 0.03705006092786789, -0.023931676521897316, -0.04984985291957855, -0.01879676803946495, 0.01878739707171917, -0.02441893145442009, -0.0030102001037448645, -0.000033363296097377315, -0.01266860868781805, -0.027023866772651672, -0.013596266508102417, -0.025318477302789688, -0.02906658686697483, 0.06131906807422638, 0.0013493193546310067, 0.02123303897678852, -0.004286899697035551, -0.04726365581154823, 0.00985752698034048, 0.06030707806348801, 0.0321025550365448, -0.011965838260948658, 0.030078576877713203, -0.015854502096772194, 0.023069612681865692, 0.02884170040488243, 0.02929147332906723, 0.029460137709975243, -0.03444512188434601, 0.004186169244349003, -0.012218835763633251, -0.034951116889715195, 0.04190386086702347, -0.01316523365676403, -0.05281085893511772, -0.007632087450474501, -0.02389419637620449, -0.04010476917028427, -0.012368760071694851, 0.02837318740785122, -0.03429519757628441, -0.013549414463341236, 0.026311727240681648, 0.0675034448504448, 0.005828309804201126, 0.03886789083480835, 0.02001490257680416, -0.005996974650770426, 0.0627058669924736, -0.02106437459588051, -0.008536318317055702, -0.00015182769857347012, -0.0010155033087357879, 0.010485335253179073, -0.03545711189508438, -0.0393926277756691, -0.030172279104590416, 0.021870216354727745, 0.029010364785790443, -0.013952336274087429, -0.031165527179837227, -0.018459437415003777, -0.0017815231112763286, -0.006652893964201212, -0.050936803221702576, 0.013080901466310024, -0.003619267838075757, -0.026817722246050835, 0.03481993451714516, -0.05993226543068886, -0.005341055803000927, 0.017691075801849365, 0.00795536208897829, -0.036637768149375916, -0.09212852269411087, 0.009145386517047882, 0.02869177609682083, -0.03965499624609947, 0.007065185811370611, -0.009595159441232681, 0.03133419156074524, -0.009173497557640076, 0.0006090677343308926, -0.010860146023333073, -0.06293075531721115, 0.02829822525382042, 0.013493193313479424, -0.028129559010267258, 0.040592022240161896, 0.03408905491232872, 0.007055815774947405, 0.04276592656970024, 0.004535212181508541, 0.06394274532794952, 0.02138296328485012, 0.0251872930675745, -0.05179886892437935, -0.0002133201196556911, 0.006690375041216612, 0.04276592656970024, 0.056558966636657715, 0.008906444534659386, 0.08650635927915573, -0.01596694439649582, -0.00788039993494749, -0.00859722588211298, 0.026611575856804848, -0.003354557789862156, -0.03302084282040596, 0.047600988298654556, -0.011375511065125465, -0.015114250592887402, 0.033283211290836334, -0.026386689394712448, 0.0008222414762713015, -0.053073227405548096, -0.0780356302857399, -0.03946758806705475, -0.02327575720846653, 0.043103255331516266, 0.020502157509326935, 0.05228612199425697, 0.02396915853023529, -0.011647249571979046, 0.03886789083480835, -0.007065185811370611, 0.017775407060980797, -0.03433268144726753, -0.010944479145109653, 0.009000146761536598, 0.01848754845559597, -0.010813294909894466, -0.03333942964673042, 0.050412070006132126, -0.01038226205855608, 0.031315453350543976, 0.00013850434334017336, 0.025768250226974487, 0.04306577518582344, 0.04793831706047058, -0.04452753812074661, -0.006428007502108812, 0.026986386626958847, 0.0736878290772438, -0.06514213979244232, -0.018140848726034164, 0.10307300090789795, -0.008011583238840103, 0.060606926679611206, -0.01178780384361744, 0.0069949086755514145, 0.008049064315855503, 0.059070199728012085, 0.10959471017122269, 0.034951116889715195, -0.02623676508665085, -0.03935514762997627, 0.0523236058652401, 0.0248124822974205, -0.009866897016763687, 0.05742103233933449, -0.0010477136820554733, -0.009866897016763687, 0.04632662981748581, 0.055584460496902466, 0.012818533927202225, 0.0005420117522589862, 0.04152904823422432, -0.008545689284801483, -0.048725418746471405, 0.026742758229374886, 0.017925331369042397, -0.04921267554163933, 0.003989393822848797, -0.046139225363731384, 0.0017522410489618778, -0.04130416363477707, 0.025824472308158875, -0.022544877603650093, 0.02078326605260372, 0.036469101905822754, -0.025580845773220062, -0.003462315769866109, 0.059220124036073685, -0.016866492107510567, -0.0660042017698288, -0.030978122726082802, 0.02814830094575882, -0.03452008590102196, 0.049025267362594604, 0.021251779049634933, -0.0155265424400568, -0.0015273544704541564, -0.03461378812789917, -0.0020134374499320984, -0.009468660689890385, 0.007486848160624504, -0.013408861123025417, 0.11049425601959229, -0.02190769836306572, 0.0392427034676075, 0.0057627176865935326, -0.017072636634111404, 0.02230124920606613, 0.046663958579301834, -0.07050193101167679, 0.020408455282449722, 0.03600058704614639, -0.06428007036447525, -0.03080945834517479, -0.001727644121274352, -0.003916773945093155, -0.05993226543068886, -0.010588408447802067, 0.06030707806348801, -0.03262729197740555, 0.041791416704654694, 0.007154203485697508, 0.02767978608608246, 0.012696719728410244, 0.015236063860356808, 0.08088419586420059, -0.06221861392259598, -0.014102260582149029, -0.0624060183763504, -0.058395542204380035, -0.003595842281356454, 0.0328521765768528, -0.03103434480726719, -0.03813701122999191, -0.0790851041674614, -0.006175009999424219, -0.0012439037673175335, 0.06922757625579834, -0.053747884929180145, -0.0010020335903391242, -0.02471878007054329, 0.02016482688486576, -0.08148389309644699, -0.0030476811807602644, -0.007093296851962805, -0.004453222267329693, 0.03348935395479202, 0.03217751905322075, -0.034876156598329544, -0.040816910564899445, -0.04501479119062424, -0.040217213332653046, 0.0022816613782197237, 0.011169365607202053, 0.02138296328485012, -0.0741375982761383, -0.008564429357647896, -0.02861681394279003, -0.013671228662133217, 0.032402403652668, 0.0013141807867214084, -0.04010476917028427, -0.023856714367866516, 0.009018887765705585, 0.005083373282104731, 0.03650658205151558, 0.0044883606024086475, -0.04838808998465538, -0.02792341262102127, 0.029010364785790443, -0.03766849637031555, 0.040517061948776245, -0.021626589819788933, 0.034801192581653595, 0.008756520226597786, -0.04321569949388504, 0.004952189512550831, 0.004155715927481651, -0.04167897254228592, 0.006681004539132118, 0.020595859736204147, 0.049175191670656204, -0.03431393951177597, 0.004790551960468292, 0.10592156648635864, -0.008302061818540096, 0.06499221175909042, 0.03341439366340637, 0.007885084487497807, 0.011834654957056046, -0.05228612199425697, -0.04299081116914749, -0.015151731669902802, -0.01091636810451746, 0.020352233201265335, 0.016238683834671974, 0.021570367738604546, 0.019415205344557762, 0.0520237572491169, 0.016173090785741806, 0.019733794033527374, 0.02359434776008129, -0.017850369215011597, -0.029272733256220818, -0.036487843841314316, 0.020146086812019348, 0.026311727240681648, -0.05524712800979614, 0.033058322966098785, -0.038755450397729874, 0.059220124036073685, 0.005884531419724226, 0.049100231379270554, 0.024025380611419678, 0.055434536188840866, 0.02775474824011326, -0.0162761639803648, -0.040741946548223495, -0.003415464423596859, 0.04700129106640816, -0.028354445472359657, 0.0741375982761383, -0.03227122128009796, -0.0012860699789598584, -0.0043126679956912994, -0.03950507193803787, -0.004179141949862242, -0.051611464470624924, 0.009225034154951572, -0.006123473402112722, -0.07619906216859818, -0.06517961621284485, -0.056858815252780914, -0.015348507091403008, 0.0395425520837307, 0.021214298903942108, 0.004771811421960592, 0.039130259305238724, 0.0019642433617264032, -0.015329767018556595, -0.03423897922039032, 0.017156969755887985, -0.038005828857421875, -0.014870623126626015, -0.02008986473083496, -0.048650458455085754, 0.0009979340247809887, 0.03363927826285362, 0.021195556968450546, 0.04336562380194664, -0.002061460167169571, -0.01864684373140335, -0.00851757824420929, 0.015713946893811226, -0.007327553350478411, -0.019190318882465363, -0.030603311955928802, 0.06409266591072083, -0.01368996873497963, 0.09152882546186447, 0.04197882488369942, -0.018215810880064964, -0.022694801911711693, 0.06394274532794952, -0.031015602871775627, -0.001047127996571362, -0.03266477212309837, -0.02884170040488243, -0.07267583906650543, 0.04662647843360901, 0.041041795164346695, 0.0166509747505188, -0.052773378789424896, 0.000561923545319587, 0.018093997612595558, 0.09595159441232681, -0.010935108177363873, -0.01749430038034916, -0.010644630528986454, 0.05119917169213295, -0.002469066996127367, 0.03824945539236069, 0.02061459980905056, 0.014027298428118229, 0.04291585087776184, -0.05176138877868652, 0.02464381791651249, -0.058395542204380035, -0.015517172403633595, 0.02616180293262005, -0.06023211404681206, -0.022563617676496506, -0.008817426860332489, 0.009328106418251991, 0.004036244936287403, -0.03585066273808479, 0.028129559010267258, 0.03813701122999191, -0.019152838736772537, -0.026461651548743248, 0.0008005726849660277, 0.00009406875324202701, 0.009482716210186481, -0.019143467769026756, 0.0031718374229967594, 0.060906775295734406, -0.06919009238481522, 0.02297590859234333, -0.010447854176163673, 0.018290773034095764, -0.03425771743059158, -0.013446342200040817, 0.006362415384501219, 0.0512741357088089, -0.015582763589918613, 0.01076644379645586, 0.06851543486118317, 0.020408455282449722, 0.06413014978170395, -0.05333559215068817, 0.007543069776147604, -0.022001400589942932, -0.007529014255851507, -0.038305677473545074, -0.018890470266342163, 0.03088442049920559, -0.008990776725113392, -0.0523236058652401, -0.02906658686697483, -0.007936621084809303, 0.08950484544038773, 0.007430626545101404, -0.058395542204380035, 0.017784778028726578, -0.002813424449414015, -0.027211273089051247, -0.003406094154343009, 0.001667908625677228, -0.014533293433487415, -0.039130259305238724, -0.012893496081233025, -0.04374043270945549, -0.009988711215555668, -0.03749983385205269, 0.01901228353381157, -0.028654294088482857, 0.0512741357088089, 0.0514240600168705, -0.04460249841213226, -0.075486920773983, -0.036469101905822754, -0.006999594159424305, -0.06859039515256882, 0.02290094643831253, -0.04782587289810181, 0.04692632704973221, -0.04152904823422432, 0.05003725737333298, -0.014964326284825802, -0.02464381791651249, -0.03828693553805351, -0.03817449137568474, 0.043777916580438614, -0.029235251247882843, 0.0251872930675745, 0.03545711189508438, -0.013043420389294624, -0.015011177398264408, -0.012565536424517632, 0.0748872235417366, -0.059445012360811234, -0.021270519122481346, 0.0167259369045496, 0.03080945834517479, -0.04542708396911621, -0.04351554811000824, -0.049624964594841, -0.008690928108990192, 0.012218835763633251, 0.002867303555831313, -0.019077876582741737, -0.012434352189302444, -0.03690013661980629, -0.012677979655563831, 0.04167897254228592, -0.023388201370835304, 0.04329065978527069, 0.027098828926682472, -0.03444512188434601, 0.06712863594293594, 0.01591072417795658, -0.033807944506406784, 0.02601187862455845, 0.001904507982544601, 0.0334518738090992, 0.09175371378660202, 0.021570367738604546, -0.05858294665813446, -0.03148411586880684, -0.01167536061257124, -0.02001490257680416, -0.03577570244669914, -0.0387929305434227, -0.006540450733155012, -0.014392739161849022, -0.006235916633158922, -0.002084885723888874, 0.020221048966050148, -0.04516471549868584, 0.0384930819272995, -0.030078576877713203, 0.037012577056884766, -0.032833438366651535, -0.041416607797145844, -0.03562577813863754, -0.08155885338783264, -0.05689629912376404, 0.008273950777947903, -0.0649547353386879, -0.025543363764882088, -0.024981148540973663, -0.029572581872344017, 0.017559891566634178, -0.04306577518582344, -0.03416401520371437, 0.038980334997177124, 0.04969992861151695, 0.051011767238378525, 0.0037785626482218504, -0.017588002607226372, 0.025243515148758888, -0.06806566566228867, 0.054497506469488144, -0.01171284168958664, -0.004478990565985441, -0.021176816895604134, 0.007107351906597614, -0.007032389752566814, 0.061206623911857605, 0.04482738673686981, 0.020033644512295723, -0.03453882783651352, -0.048200685530900955, -0.02769852615892887, 0.06735352426767349, 0.06952742487192154, 0.032589808106422424, -0.031540337949991226, -0.03690013661980629, 0.004682793747633696, 0.04853801429271698, -0.03489489480853081, -0.0030921900179237127, 0.036319177597761154, 0.016978934407234192, 0.020108606666326523, 0.01924654096364975, -0.08253336697816849, -0.06930253654718399, -0.003174179932102561, -0.0009048169595189393, 0.011740951798856258, 0.020633341744542122, -0.01305279042571783, 0.03690013661980629, 0.03483867645263672, -0.011516065336763859, 0.015779539942741394, -0.005205186549574137, 0.03886789083480835, -0.08103412389755249, -0.016903972253203392, 0.02327575720846653, -0.024475153535604477, -0.0774359330534935, 0.08583170175552368, -0.013371379114687443, 0.015076769515872002, -0.0027501750737428665, -0.007257276214659214, -0.04299081116914749, 0.03257106989622116, 0.012799792923033237, -0.05438506603240967, 0.035101041197776794, -0.013961706310510635, 0.0499248132109642, -0.02175777405500412, -0.04572693258523941, -0.0248124822974205, 0.007102666888386011, 0.05963241681456566, 0.04336562380194664, 0.06697870790958405, 0.0008222414762713015, 0.03935514762997627, -0.025243515148758888, 0.013914855197072029, 0.025430921465158463, 0.0034951118286699057, -0.011244327761232853, -0.028410667553544044, -0.046514034271240234, -0.04186638072133064, -0.051386576145887375, 0.0627058669924736, 0.00519113102927804, -0.027979634702205658, -0.01591072417795658, 0.009285940788686275, -0.03980492055416107, -0.015404729172587395, -0.014420850202441216, 0.06821558624505997, 0.009342161938548088, -0.05539705231785774, 0.016332386061549187, -0.0035888145212084055, -0.010251078754663467, -0.030528349801898003, 0.04460249841213226, 0.021701551973819733, 0.04707625135779381, -0.009417124092578888, -0.0057018110528588295, 0.02959132194519043, -0.03626295551657677, 0.036937616765499115, 0.060756850987672806, -0.008719039149582386, -0.0375935360789299, -0.02479374222457409, -0.033283211290836334, 0.06356792896986008, -0.010672740638256073, -0.02906658686697483, -0.02655535377562046, -0.025149812921881676, -0.027098828926682472, 0.006910576485097408, -0.008541003800928593, 0.09512700885534286, -0.00522861210629344, 0.0017253014957532287, 0.006615412887185812 ]
9,565
asyncclick.parser
_process_args_for_options
null
def _process_args_for_options(self, state: ParsingState) -> None: while state.rargs: arg = state.rargs.pop(0) arglen = len(arg) # Double dashes always handled explicitly regardless of what # prefixes are valid. if arg == "--": return elif arg[:1] in self._opt_prefixes and arglen > 1: self._process_opts(arg, state) elif self.allow_interspersed_args: state.largs.append(arg) else: state.rargs.insert(0, arg) return # Say this is the original argument list: # [arg0, arg1, ..., arg(i-1), arg(i), arg(i+1), ..., arg(N-1)] # ^ # (we are about to process arg(i)). # # Then rargs is [arg(i), ..., arg(N-1)] and largs is a *subset* of # [arg0, ..., arg(i-1)] (any options and their arguments will have # been removed from largs). # # The while loop will usually consume 1 or more arguments per pass. # If it consumes 1 (eg. arg is an option that takes no arguments), # then after _process_arg() is done the situation is: # # largs = subset of [arg0, ..., arg(i)] # rargs = [arg(i+1), ..., arg(N-1)] # # If allow_interspersed_args is false, largs will always be # *empty* -- still a subset of [arg0, ..., arg(i-1)], but # not a very interesting subset!
(self, state: asyncclick.parser.ParsingState) -> NoneType
[ -0.02383202500641346, 0.03970753401517868, -0.022931287065148354, -0.00495875021442771, 0.006924423389136791, -0.011109101586043835, 0.021505119279026985, 0.03993271663784981, 0.038994450122117996, -0.10283425450325012, -0.02146758884191513, 0.020078951492905617, -0.04623788222670555, 0.02206808142364025, -0.03764334321022034, 0.04927787557244301, -0.008327134884893894, 0.032539159059524536, -0.02195548824965954, 0.03580433502793312, 0.043986037373542786, 0.0020864750258624554, -0.01221625879406929, 0.05505760759115219, 0.007182447239756584, 0.015077978372573853, 0.02366313710808754, -0.029649291187524796, -0.02272486872971058, 0.011615767143666744, 0.030005834996700287, 0.0023339434992522, 0.015303162857890129, 0.05787241458892822, -0.0036592481192201376, -0.026027575135231018, 0.0017533897189423442, 0.10478585213422775, 0.024657702073454857, 0.00838343147188425, -0.004522455390542746, -0.06511584669351578, 0.04421122372150421, 0.008664911612868309, -0.0031643114052712917, -0.007689112331718206, -0.0182399433106184, 0.013079466298222542, -0.04657566174864769, -0.09833056479692459, 0.06170055270195007, -0.044061098247766495, 0.018662165850400925, -0.014111561700701714, 0.017920933663845062, 0.06338943541049957, 0.03464088216423988, 0.05929858237504959, 0.010724411346018314, -0.015031064860522747, -0.02127993479371071, 0.02874855324625969, -0.004893071483820677, -0.04657566174864769, 0.014449338428676128, -0.07949012517929077, -0.0010977743659168482, -0.0059251668862998486, -0.04349813982844353, 0.03218261897563934, -0.061888206750154495, -0.0036451739724725485, -0.006675782147794962, -0.013689341023564339, -0.034490760415792465, -0.0019058584002777934, -0.0020102406851947308, 0.05265564098954201, -0.029668057337403297, 0.022030549123883247, -0.027209794148802757, 0.05498254671692848, -0.004004061687737703, 0.00765627296641469, -0.001328823040239513, 0.0012502430472522974, 0.028298184275627136, 0.025933748111128807, 0.013980204239487648, -0.04346060752868652, -0.02111104689538479, -0.007829852402210236, 0.0015434520319104195, 0.034809768199920654, -0.011118484660983086, 0.026402881368994713, -0.07265952974557877, -0.03154459595680237, -0.04631294310092926, -0.04766405001282692, -0.07472372055053711, 0.016100691631436348, 0.003844556165859103, -0.010958978906273842, 0.06793065369129181, 0.030231019482016563, -0.031582124531269073, -0.051191940903663635, -0.025220664218068123, 0.0025427083019167185, 0.0026599918492138386, 0.009593797847628593, -0.04514949023723602, -0.029743118211627007, -0.05423193424940109, 0.011718976311385632, -0.015415755100548267, -0.034471992403268814, -0.03663001209497452, 0.022687338292598724, -0.05265564098954201, -0.036254703998565674, 0.02552090957760811, 0.025595970451831818, -0.036010753363370895, -0.0154814338311553, -0.02553967572748661, 0.03340236842632294, -0.038469016551971436, 0.023606840521097183, 0.04503690078854561, 0.023194003850221634, -0.008148863911628723, 0.0037061613984405994, -0.009889352135360241, -0.03293323144316673, -0.0063708447851240635, 0.017479946836829185, -0.024713998660445213, -0.016400936990976334, 0.07701309770345688, 0.03698655217885971, 0.012629097327589989, 0.028054235503077507, -0.07479878515005112, -0.018089821562170982, 0.032276444137096405, 0.00019938210607506335, -0.002667028922587633, 0.04597516730427742, -0.007961209863424301, 0.057647231966257095, 0.030850276350975037, 0.008284913375973701, 0.04927787557244301, -0.02561473660171032, -0.03672383725643158, -0.031075460836291313, -0.03441569581627846, -0.0091199716553092, -0.008571084588766098, -0.05963636189699173, -0.018662165850400925, -0.0398951880633831, -0.020491790026426315, -0.03420927748084068, 0.03963247314095497, -0.01684192381799221, -0.02537078596651554, 0.08121654391288757, 0.06466548144817352, 0.04740133509039879, 0.05122947320342064, 0.0034129524137824774, -0.0517549030482769, 0.09465254843235016, -0.02240585722029209, 0.003844556165859103, -0.026853250339627266, -0.03623593971133232, 0.007628124672919512, -0.0228937566280365, -0.018080439418554306, -0.0662042424082756, 0.033796440809965134, -0.027866581454873085, 0.010940213687717915, -0.012882430106401443, 0.00863676331937313, 0.005348131991922855, -0.00331912562251091, -0.07502397149801254, 0.006398992612957954, -0.030681388452649117, -0.05734698474407196, 0.01280736830085516, -0.05948623642325401, -0.010837003588676453, 0.06372721493244171, -0.03387150168418884, -0.06661707907915115, -0.08339332789182663, -0.0005066650919616222, -0.0055686249397695065, -0.020041421055793762, 0.04079592600464821, -0.011728359386324883, 0.027528803795576096, 0.01944092847406864, 0.027960408478975296, -0.020979689434170723, -0.0772382840514183, 0.034134216606616974, 0.01768636517226696, 0.0023632643278688192, 0.019778704270720482, 0.02129870094358921, 0.03869420289993286, -0.0030376450158655643, -0.002359745791181922, 0.07115829735994339, -0.013811315409839153, 0.050854165107011795, 0.0135767487809062, -0.014374276623129845, -0.0007869728724472225, 0.02732238546013832, 0.05997413769364357, 0.039069510996341705, 0.09134984761476517, -0.02876731939613819, -0.016982663422822952, 0.014355511404573917, -0.014665140770375729, 0.0039782593958079815, -0.03616087883710861, 0.04800182953476906, -0.00782047025859356, 0.05783488601446152, 0.018465127795934677, -0.042409747838974, 0.020135246217250824, -0.028542134910821915, -0.06999484449625015, -0.024488814175128937, 0.025089306756854057, 0.04563739150762558, 0.015246867202222347, 0.051792435348033905, 0.028635961934924126, -0.009213798679411411, 0.047288745641708374, -0.016232049092650414, 0.04057073965668678, 0.002615424105897546, -0.03683643043041229, -0.007093311753123999, 0.012769837863743305, -0.018662165850400925, 0.0007687939214520156, 0.06477807462215424, 0.0019293150398880243, 0.01828685775399208, 0.00549356359988451, -0.03259545564651489, 0.005029120482504368, 0.04841466620564461, -0.07115829735994339, 0.0015035755932331085, 0.06200079619884491, 0.04477418586611748, -0.0924757644534111, -0.05978648364543915, 0.08759676665067673, 0.01204737089574337, 0.08962342888116837, -0.005240230821073055, -0.018802905455231667, 0.010255277156829834, 0.03458458557724953, 0.06203832849860191, 0.06166302040219307, -0.02375696413218975, 0.006033068057149649, -0.014111561700701714, 0.018540190532803535, -0.005362205673009157, 0.008885405026376247, 0.03679889813065529, 0.04402356967329979, 0.05963636189699173, 0.06391486525535583, 0.039557408541440964, -0.027359915897250175, 0.04316036030650139, 0.00991750042885542, 0.02662806585431099, -0.01522810198366642, 0.013032552786171436, -0.03732433170080185, -0.009213798679411411, -0.05479489266872406, -0.026327820494771004, -0.0008743491489440203, 0.02467646822333336, -0.0049024540930986404, 0.024451283738017082, -0.0018800559919327497, 0.06342696398496628, 0.008303678594529629, 0.01243206113576889, 0.011803420260548592, -0.05948623642325401, -0.06064968928694725, 0.036254703998565674, -0.0070370156317949295, 0.04150900989770889, 0.0037014700938016176, -0.03739939257502556, 0.01703896000981331, -0.054419588297605515, 0.010790090076625347, -0.017282910645008087, -0.008763429708778858, -0.01085576880723238, 0.10110783576965332, -0.012253789231181145, 0.03993271663784981, 0.03028731420636177, -0.013314032927155495, 0.004832083825021982, 0.013154528103768826, -0.07599976658821106, 0.039332225918769836, 0.025727327913045883, -0.056784022599458694, -0.01086515188217163, 0.015537730418145657, -0.010123919695615768, -0.053068481385707855, 0.02612140215933323, 0.04462406039237976, -0.04871491342782974, -0.008955774828791618, 0.041771724820137024, 0.03255792334675789, 0.03272681310772896, 0.010508609935641289, 0.06691732257604599, -0.036592479795217514, -0.03297076374292374, 0.0010332684032619, -0.04267246276140213, 0.016016246750950813, 0.03997024893760681, -0.009087132290005684, -0.04079592600464821, -0.04717615246772766, 0.028373247012495995, -0.035935692489147186, 0.05141712725162506, -0.06601658463478088, 0.013238972052931786, 0.0012009839992970228, 0.010349104180932045, -0.07067040354013443, -0.021092280745506287, -0.03850654885172844, -0.007585902698338032, -0.005690599791705608, 0.031019164249300957, -0.020341666415333748, 0.04863985255360603, -0.05828525498509407, -0.00931231677532196, -0.007318496238440275, -0.028429541736841202, -0.0007019423064775765, -0.03415298089385033, -0.008772812783718109, -0.017461180686950684, 0.017367353662848473, 0.004888379946351051, 0.025558440014719963, -0.056446246802806854, -0.022931287065148354, -0.03548532351851463, -0.009307625703513622, 0.06519091129302979, -0.003220607526600361, -0.04222209379076958, -0.034396931529045105, 0.04113370180130005, 0.0012338233646005392, -0.0050103552639484406, -0.012525887228548527, 0.031112991273403168, 0.03182607516646385, -0.03888185694813728, 0.0026341895572841167, 0.009030836634337902, 0.012797985225915909, 0.04706355929374695, 0.05228033289313316, 0.0002600763691589236, -0.01983500085771084, 0.014017734676599503, 0.06826843321323395, -0.0037061613984405994, 0.02527695894241333, -0.009396761655807495, -0.019910061731934547, -0.0154814338311553, -0.031112991273403168, -0.05862303078174591, -0.0009024972678162158, -0.02537078596651554, 0.06432770192623138, 0.02418856881558895, 0.02824188955128193, 0.04650059714913368, 0.010424165986478329, 0.0001791506801964715, 0.0347910039126873, 0.02645917795598507, -0.01599748246371746, -0.019816236570477486, -0.014242919161915779, -0.015077978372573853, 0.011324903927743435, -0.05760969966650009, 0.04038308560848236, 0.004827392753213644, -0.019168829545378685, 0.01310761459171772, 0.02918015792965889, -0.005981463007628918, 0.040683332830667496, 0.022349560633301735, 0.006122203543782234, -0.024207333102822304, -0.032520394772291183, -0.019797470420598984, 0.00451776385307312, 0.05783488601446152, -0.05209267884492874, -0.005634303670376539, -0.015199953690171242, -0.03148829936981201, -0.018174264580011368, -0.012938725762069225, -0.00538566242903471, -0.02527695894241333, -0.056784022599458694, -0.09915623813867569, -0.047476399689912796, -0.028054235503077507, 0.06804324686527252, -0.03445322811603546, 0.019497225061058998, 0.03676136955618858, -0.034228041768074036, 0.02807299979031086, 0.019609816372394562, 0.017264144495129585, 0.03676136955618858, 0.04826454445719719, 0.019985124468803406, -0.0780639573931694, 0.02264980785548687, -0.023888321593403816, -0.013220206834375858, 0.01212243176996708, -0.005240230821073055, -0.017198465764522552, 0.023700667545199394, 0.0014660449232906103, 0.0028218431398272514, 0.005198008846491575, -0.027247324585914612, 0.01831500604748726, -0.007590594235807657, 0.04451146721839905, 0.02477029524743557, -0.004785170312970877, -0.042109500616788864, 0.04477418586611748, -0.020735738798975945, -0.016438467428088188, -0.018277475610375404, -0.04012037068605423, -0.07416076213121414, 0.01097774412482977, -0.006398992612957954, 0.06290153414011002, -0.017142169177532196, 0.016954515129327774, 0.0028054234571754932, 0.09465254843235016, 0.002058326965197921, 0.009424909017980099, -0.010039475746452808, 0.03741815686225891, -0.007440471090376377, 0.02833571657538414, 0.032632987946271896, -0.06136277690529823, 0.05956130102276802, -0.061024997383356094, -0.012375764548778534, -0.058135129511356354, 0.006305166054517031, 0.09097453951835632, -0.0023011041339486837, -0.0035794952418655157, 0.028485838323831558, -0.010461696423590183, 0.015837976709008217, 0.01671994850039482, 0.01925327442586422, -0.017189083620905876, -0.04691343754529953, -0.032370273023843765, -0.0033355453051626682, -0.010930830612778664, 0.027753988280892372, -0.04286011680960655, -0.00022034654102753848, 0.06609164923429489, -0.10215870290994644, -0.01693575084209442, 0.025933748111128807, 0.056971676647663116, 0.014364894479513168, -0.03113175742328167, -0.028373247012495995, 0.0032135704532265663, 0.02587745152413845, -0.011794038116931915, 0.04030802473425865, 0.03086904063820839, 0.0661291778087616, -0.005043194629251957, 0.030062129721045494, -0.056108471006155014, -0.003100978210568428, -0.004740602802485228, 0.009462440386414528, 0.05614599958062172, -0.012150580063462257, -0.06132524460554123, 0.06973212957382202, 0.05291835591197014, 0.05877315253019333, 0.010048857890069485, -0.08099135756492615, 0.033214714378118515, 0.05010354891419411, -0.012403912842273712, -0.03576680272817612, -0.01899055950343609, -0.014439956285059452, -0.06233857572078705, -0.04631294310092926, -0.007956518791615963, 0.03351495787501335, -0.011897247284650803, 0.006230104248970747, 0.007266891188919544, 0.07404816895723343, 0.03706161677837372, -0.0763000100851059, -0.07115829735994339, -0.028729788959026337, -0.02045425772666931, -0.011681445874273777, 0.05524526163935661, -0.0398951880633831, 0.041021108627319336, 0.006023685447871685, 0.0003201842191629112, -0.02664683200418949, -0.024451283738017082, -0.0003990574332419783, -0.04785170406103134, 0.04443640634417534, 0.006384918931871653, 0.008420961908996105, 0.02553967572748661, 0.025896217674016953, 0.01799599453806877, 0.009908118285238743, 0.05730945244431496, -0.08301801979541779, -0.0228937566280365, -0.00023354095173999667, 0.06721757352352142, -0.037699636071920395, 0.0009130527614615858, -0.0000807790711405687, -0.011615767143666744, -0.022274499759078026, 0.006244178395718336, -0.010808856226503849, -0.02045425772666931, 0.005850105546414852, -0.02340042218565941, 0.00327690364792943, -0.03077521361410618, 0.0002166814374504611, -0.017874019220471382, -0.052467986941337585, 0.03674260526895523, -0.03289570286870003, -0.032107554376125336, 0.029724353924393654, -0.00742170587182045, 0.026609301567077637, 0.07731334120035172, 0.002645917935296893, -0.042372215539216995, 0.001206848188303411, -0.013098231516778469, -0.015256249345839024, -0.07671285420656204, -0.041433949023485184, -0.027791520580649376, 0.026684362441301346, -0.02722855843603611, -0.00036563159665092826, 0.0039360374212265015, -0.05948623642325401, 0.04394850879907608, -0.02978065051138401, 0.02375696413218975, -0.03420927748084068, -0.055770695209503174, -0.01942216232419014, -0.05775982514023781, -0.0006210166029632092, 0.020078951492905617, -0.057985007762908936, -0.02747250907123089, -0.00818170327693224, -0.0296868234872818, 0.04316036030650139, -0.0036428284365683794, 0.0228937566280365, 0.020247839391231537, 0.045412205159664154, 0.04447393864393234, 0.042297154664993286, -0.016776245087385178, -0.019187595695257187, -0.029893241822719574, 0.03368384763598442, 0.04529961571097374, -0.008557010442018509, 0.009870586916804314, -0.011005892418324947, 0.04064580053091049, 0.06004919856786728, 0.0746111273765564, -0.003811716800555587, -0.013267120346426964, -0.04710109159350395, -0.02901127003133297, 0.07393557578325272, 0.07483631372451782, 0.05359391123056412, -0.019168829545378685, -0.06368967890739441, -0.0440986305475235, 0.07843926548957825, -0.03469717875123024, -0.017245380207896233, 0.0020946848671883345, -0.0008591022924520075, 0.029480403289198875, -0.005137021187692881, -0.040758393704891205, -0.031169287860393524, 0.010546140372753143, -0.02062314748764038, 0.022931287065148354, -0.00807380210608244, 0.05562056973576546, 0.02696584351360798, 0.024038445204496384, -0.02961176075041294, 0.008702442049980164, -0.015453286468982697, -0.015894271433353424, -0.016100691631436348, -0.006539733149111271, -0.0008895960636436939, -0.052205272018909454, -0.04785170406103134, 0.10035722702741623, 0.002615424105897546, 0.05997413769364357, 0.004100234247744083, 0.0059251668862998486, -0.013229588977992535, 0.019140681251883507, -0.0048086270689964294, -0.08016568422317505, 0.0014308597892522812, 0.06402745842933655, 0.04387344419956207, -0.008125407621264458, 0.02696584351360798, -0.01365180965512991, 0.023025114089250565, 0.027115967124700546, -0.008308369666337967, -0.009617254137992859, -0.014608844183385372, 0.027378682047128677, 0.0008139481069520116, -0.020341666415333748, 0.008899479173123837, -0.014993534423410892, -0.017864637076854706, -0.028485838323831558, -0.03747445344924927, -0.04301023855805397, -0.02206808142364025, 0.020923392847180367, -0.024132272228598595, -0.06410252302885056, -0.04045814648270607, 0.04713862016797066, -0.0207920353859663, -0.00950466189533472, -0.02308141067624092, 0.04710109159350395, 0.03302706032991409, -0.01636340655386448, 0.02749127335846424, 0.00047030718997120857, -0.023813260719180107, -0.008983923122286797, 0.03394656255841255, -0.01701081171631813, 0.05010354891419411, -0.003021225333213806, 0.004194061271846294, 0.02028536982834339, -0.06016179174184799, 0.006614794488996267, -0.04841466620564461, -0.002671720227226615, 0.004416900221258402, -0.05040379613637924, 0.023362891748547554, -0.021749069914221764, -0.0009236083133146167, -0.008303678594529629, -0.02587745152413845, -0.02891744300723076, -0.02978065051138401, 0.026947077363729477, 0.010499226860702038, 0.041959378868341446, -0.015622174367308617, 0.0014883287949487567, -0.016110073775053024 ]
9,566
asyncclick.parser
_process_opts
null
def _process_opts(self, arg: str, state: ParsingState) -> None: explicit_value = None # Long option handling happens in two parts. The first part is # supporting explicitly attached values. In any case, we will try # to long match the option first. if "=" in arg: long_opt, explicit_value = arg.split("=", 1) else: long_opt = arg norm_long_opt = normalize_opt(long_opt, self.ctx) # At this point we will match the (assumed) long option through # the long option matching code. Note that this allows options # like "-foo" to be matched as long options. try: self._match_long_opt(norm_long_opt, explicit_value, state) except NoSuchOption: # At this point the long option matching failed, and we need # to try with short options. However there is a special rule # which says, that if we have a two character options prefix # (applies to "--foo" for instance), we do not dispatch to the # short option code and will instead raise the no option # error. if arg[:2] not in self._opt_prefixes: self._match_short_opt(arg, state) return if not self.ignore_unknown_options: raise state.largs.append(arg)
(self, arg: str, state: asyncclick.parser.ParsingState) -> NoneType
[ 0.018170427531003952, 0.041251782327890396, 0.027112020179629326, 0.06708510965108871, -0.0005878054653294384, -0.024517569690942764, 0.034524738788604736, 0.022442007437348366, 0.014288016594946384, -0.12386653572320938, -0.02802007831633091, 0.03732304275035858, -0.03736010566353798, -0.015826156362891197, -0.027649441733956337, 0.042215436697006226, -0.023572446778416634, 0.043179091066122055, -0.028335118666291237, 0.08961977809667587, 0.05477999523282051, -0.0015311897732317448, -0.027519719675183296, 0.05003585293889046, 0.027834760025143623, -0.0010424136416986585, 0.052407924085855484, -0.04384623467922211, -0.05970945209264755, -0.01827235333621502, 0.050888318568468094, -0.017429156228899956, 0.012369975447654724, 0.06575082242488861, 0.0004777729045599699, -0.03932447358965874, 0.01152677834033966, 0.0700501948595047, -0.03339429944753647, -0.03571077436208725, -0.04284551739692688, -0.034821249544620514, 0.01587248593568802, 0.01936572976410389, -0.004442998673766851, -0.014000773429870605, -0.016094867140054703, 0.01270354725420475, -0.08732183277606964, -0.08472738415002823, 0.03050334006547928, -0.045514095574617386, -0.0212930366396904, -0.03115195222198963, 0.0035395734012126923, 0.025036459788680077, 0.030169766396284103, 0.08176229149103165, 0.015844687819480896, 0.043475598096847534, -0.04132590815424919, 0.015020022168755531, -0.039917491376399994, -0.06356406956911087, 0.0004551872843876481, -0.04325321689248085, 0.01827235333621502, 0.011684298515319824, -0.05974651500582695, 0.03332017362117767, -0.03115195222198963, -0.032875411212444305, -0.01001643668860197, -0.0022991010919213295, -0.0053834873251616955, 0.005318625830113888, -0.08005736768245697, 0.04925752058625221, -0.010211020708084106, 0.03693387284874916, -0.014769842848181725, 0.04106646403670311, 0.008580222725868225, -0.026333684101700783, -0.01799437589943409, -0.017067786306142807, 0.011072749271988869, 0.0011130661005154252, 0.04240075498819351, 0.027501188218593597, -0.019606642425060272, -0.03320898115634918, 0.03272715583443642, 0.048812754452228546, 0.0004514230240602046, 0.03491390869021416, -0.03595168888568878, 0.015529646538197994, -0.020959462970495224, -0.003764271503314376, -0.08339308947324753, -0.011851084418594837, 0.01639137603342533, -0.016678618267178535, 0.05177784338593483, -0.003048480721190572, 0.012490431778132915, -0.04518052190542221, -0.01675274595618248, 0.0010731068905442953, -0.03613700717687607, -0.04762672260403633, -0.09725487977266312, 0.003284761216491461, -0.03723038360476494, 0.047181956470012665, -0.006449065636843443, -0.05014704540371895, -0.07501672208309174, 0.01743842102587223, -0.058412227779626846, -0.026166899129748344, 0.027445591986179352, 0.012620154768228531, -0.015798358246684074, -0.020384978502988815, -0.03761954978108406, 0.017234571278095245, -0.003300976473838091, 0.045921795070171356, 0.06222977861762047, 0.016094867140054703, 0.022738516330718994, -0.028372183442115784, -0.0055132098495960236, -0.0260742399841547, -0.01256455946713686, 0.04191892594099045, -0.02142275869846344, -0.013305830769240856, 0.03506216034293175, 0.0012439469574019313, 0.0012844852171838284, -0.07197750359773636, -0.023109152913093567, -0.045662350952625275, 0.0023419559001922607, -0.02827952429652214, -0.03187469393014908, 0.035228949040174484, -0.033412832766771317, 0.0016759694553911686, 0.02170073613524437, 0.006963323336094618, 0.03035508468747139, -0.0006659865030087531, -0.002191385021433234, -0.010609454475343227, 0.013259501196444035, 0.007445150054991245, 0.010794772766530514, -0.08131752908229828, 0.0041742874309420586, -0.013176108710467815, -0.022719984874129295, -0.0025782363954931498, 0.014667917974293232, 0.005605868995189667, 0.023831892758607864, 0.02624102681875229, 0.006884562782943249, 0.03183762729167938, 0.02073708176612854, 0.0267599169164896, -0.023646574467420578, 0.11185793578624725, -0.005865314044058323, -0.010878165252506733, 0.01345408521592617, -0.01735502853989601, -0.005286195315420628, -0.0036391818430274725, -0.012833270244300365, -0.014352877624332905, 0.0046839118003845215, -0.034543272107839584, 0.006870664190500975, -0.023998677730560303, -0.03526601195335388, 0.01351894624531269, 0.03554398939013481, -0.05989477038383484, -0.009664332494139671, -0.022627325728535652, -0.04203011840581894, 0.013750594109296799, -0.027667975053191185, -0.022757047787308693, 0.06741867959499359, -0.006407369393855333, 0.004250731319189072, -0.07583212107419968, 0.008696046657860279, 0.011341460049152374, 0.0028585297986865044, 0.028205396607518196, 0.01380618941038847, 0.04981347173452377, -0.01934719644486904, -0.0020153329242020845, -0.03007710911333561, -0.06408295780420303, -0.007852849550545216, 0.03639645129442215, 0.02292383462190628, -0.028205396607518196, -0.014121229760348797, 0.04873862862586975, -0.008853566832840443, 0.017086317762732506, 0.10073885321617126, -0.03311632201075554, 0.08717358112335205, 0.05996889993548393, 0.035228949040174484, -0.0036484478041529655, 0.05826397240161896, 0.07879720628261566, 0.0521484799683094, 0.10511235892772675, -0.05641079321503639, -0.021645139902830124, 0.0590052455663681, 0.0008889471646398306, 0.03204147890210152, -0.021774861961603165, 0.048664502799510956, 0.03476565331220627, 0.05140720680356026, -0.00220644217915833, -0.009849650785326958, -0.020533232018351555, -0.06749280542135239, 0.008302245289087296, -0.03895384073257446, 0.001525398576632142, 0.038101375102996826, 0.02459169551730156, 0.05440935865044594, -0.011341460049152374, -0.005235232878476381, 0.08524627238512039, 0.010424136184155941, 0.02952115423977375, 0.0044013019651174545, -0.05148133635520935, -0.04466163367033005, 0.012110530398786068, -0.022293753921985626, -0.012620154768228531, 0.021459821611642838, 0.04247488081455231, 0.029039327055215836, 0.04006574675440788, -0.03417263552546501, 0.023683637380599976, 0.04903513938188553, -0.06953130662441254, 0.021793395280838013, 0.0411776565015316, -0.01848546788096428, -0.09725487977266312, -0.0370635949075222, 0.06916067004203796, -0.009024986065924168, 0.08591341227293015, 0.015131212770938873, -0.0008304562070406973, -0.018216757103800774, 0.02939143218100071, -0.007510011084377766, 0.03335723653435707, 0.033987317234277725, -0.0010030335979536176, -0.045958857983350754, 0.012268050573766232, 0.0017570460913702846, 0.044550441205501556, -0.02360951155424118, 0.04232662543654442, 0.006991120986640453, 0.029965916648507118, 0.03241211548447609, 0.010451934300363064, 0.024091336876153946, 0.01977342925965786, 0.008487563580274582, -0.03750836104154587, 0.024536101147532463, -0.05303800478577614, 0.016187526285648346, -0.026463408023118973, -0.0590052455663681, 0.009858916513621807, 0.017197508364915848, 0.037026531994342804, 0.011925212107598782, -0.018605925142765045, 0.07538735121488571, 0.042104244232177734, -0.0004740086442325264, 0.016122663393616676, -0.04106646403670311, -0.012786940671503544, 0.039917491376399994, 0.027556784451007843, -0.017540346831083298, -0.00024482241133227944, -0.03697093576192856, -0.00556417228654027, -0.010868899524211884, 0.022868238389492035, -0.03750836104154587, -0.023127684369683266, -0.00024424330331385136, 0.04721902310848236, -0.00577265489846468, 0.03776780515909195, 0.06815995275974274, 0.013370692729949951, -0.012527495622634888, 0.008158624172210693, -0.04899807274341583, 0.01188814826309681, 0.018800508230924606, -0.05318626016378403, -0.04859037324786186, 0.011730628088116646, -0.010748443193733692, -0.019458387047052383, 0.021255971863865852, 0.06475010514259338, -0.033839061856269836, 0.022701453417539597, 0.09599471092224121, 0.029687941074371338, 0.014464068226516247, -0.01256455946713686, 0.06378644704818726, -0.020533232018351555, -0.04158535599708557, -0.05107363685965538, -0.029447026550769806, -0.016233855858445168, 0.068567655980587, -0.004832166247069836, -0.02872428670525551, -0.052111417055130005, -0.0062127853743731976, -0.04821973666548729, 0.030707189813256264, -0.11245094984769821, 0.02279411070048809, -0.029873257502913475, 0.040176939219236374, -0.034098509699106216, -0.023813361302018166, -0.000649771187454462, -0.01106348354369402, 0.013843253254890442, 0.044550441205501556, -0.059672389179468155, 0.025370031595230103, -0.08732183277606964, 0.01298152469098568, 0.016678618267178535, 0.009710662066936493, 0.03869439288973808, -0.05807865411043167, -0.004424466751515865, 0.03102223016321659, 0.05025823786854744, 0.00090921635273844, 0.04870156571269035, -0.05548420175909996, -0.04996172711253166, 0.0002813069149851799, 0.019995810464024544, 0.03765661269426346, 0.006226683966815472, -0.001272902823984623, 0.008941592648625374, 0.03995455801486969, -0.036044348031282425, -0.0027056424878537655, -0.01636357791721821, 0.06085842475295067, 0.0032175835222005844, -0.01696586050093174, -0.006300811190158129, -0.027816228568553925, -0.01524240430444479, 0.05159252509474754, 0.06953130662441254, -0.0005365534452721477, -0.0011234902776777744, 0.014519663527607918, 0.07305234670639038, -0.046477749943733215, 0.026667257770895958, -0.004670013207942247, 0.002712592016905546, 0.004359605256468058, -0.034672994166612625, -0.06749280542135239, -0.00228983536362648, 0.0014755944721400738, 0.027223210781812668, -0.027445591986179352, -0.022219626232981682, 0.01332436315715313, 0.007431250996887684, -0.01604853756725788, 0.050740063190460205, 0.029020795598626137, -0.017262369394302368, -0.016854669898748398, -0.010507529601454735, 0.005402019247412682, -0.020625891163945198, -0.0329124741256237, 0.04343853518366814, -0.01745695434510708, -0.021774861961603165, 0.028798414394259453, 0.0017141912830993533, -0.037156254053115845, 0.01448260061442852, 0.03517335280776024, -0.04329027980566025, -0.0425490066409111, -0.004702443722635508, -0.005916276481002569, 0.04351266101002693, 0.0701243206858635, -0.06897535175085068, 0.0012068833457306027, 0.004725608509033918, 0.0021520049776881933, -0.04762672260403633, 0.0022863605991005898, -0.0343208909034729, -0.012258784845471382, -0.05122188851237297, -0.0562625378370285, -0.06467597186565399, -0.05641079321503639, 0.043067898601293564, -0.01448260061442852, 0.03130020573735237, 0.009293696843087673, -0.009154708124697208, 0.03417263552546501, 0.00201417482458055, -0.03546985983848572, 0.038509074598550797, 0.05426110327243805, 0.049516964703798294, -0.0659361407160759, -0.0009567040833644569, -0.05874580144882202, -0.024758482351899147, 0.014056368730962276, 0.05181490629911423, -0.040992338210344315, 0.0029025429394096136, 0.010989355854690075, -0.0012775358045473695, 0.020625891163945198, 0.00498042069375515, 0.05670730024576187, 0.0017269318923354149, 0.059820644557476044, 0.015279467217624187, 0.03585902974009514, -0.003975070547312498, 0.04518052190542221, 0.01621532253921032, -0.030707189813256264, -0.01030367985367775, -0.046366557478904724, 0.004767305217683315, 0.044698696583509445, -0.03389465808868408, 0.05296387895941734, 0.009145442396402359, 0.017883185297250748, -0.000357026670826599, 0.06211858615279198, -0.010748443193733692, -0.018920965492725372, -0.04462457075715065, -0.00026986931334249675, 0.007584138307720423, 0.03965804725885391, -0.01962517388164997, -0.06389763951301575, 0.07679577171802521, -0.03928741067647934, 0.012610888108611107, -0.054298169910907745, 0.0031921023037284613, 0.08880437910556793, -0.0130463857203722, 0.008191054686903954, 0.04973934590816498, -0.023831892758607864, 0.005290828179568052, -0.036192603409290314, 0.0065509905107319355, -0.030966633930802345, -0.06767812371253967, 0.0016041587805375457, -0.03422823175787926, 0.00995157565921545, -0.0033565720077604055, -0.021181846037507057, -0.01735502853989601, 0.020384978502988815, -0.09666185826063156, 0.0038314491976052523, -0.000616761390119791, 0.05255617946386337, 0.03676708787679672, -0.010229552164673805, -0.02047763764858246, 0.011295130476355553, 0.06437946856021881, -0.03350549191236496, 0.027630910277366638, 0.012397772632539272, 0.04462457075715065, -0.02223815768957138, 0.05025823786854744, -0.01559450849890709, -0.010331477038562298, -0.03224532678723335, 0.055002376437187195, 0.046366557478904724, 0.0099608413875103, -0.05522475764155388, 0.03786046430468559, -0.004632949363440275, 0.06419415026903152, -0.016919530928134918, -0.07475727051496506, 0.033301640301942825, 0.053890470415353775, -0.01497369259595871, -0.030521871522068977, -0.004748773295432329, -0.02225668914616108, -0.03320898115634918, -0.00020240197773091495, -0.003342673182487488, -0.027945950627326965, -0.020644422620534897, 0.004132591187953949, 0.02803860977292061, 0.0267599169164896, 0.05318626016378403, -0.04821973666548729, -0.07045789808034897, -0.025054991245269775, -0.05040648952126503, 0.02705642580986023, 0.050740063190460205, 0.003405217779800296, 0.028668692335486412, 0.030466275289654732, -0.013537478633224964, 0.020922400057315826, -0.025054991245269775, 0.04458750784397125, -0.03999162092804909, 0.03910209238529205, 0.04518052190542221, 0.012675750069320202, -0.020551763474941254, -0.03374640271067619, -0.00713937496766448, -0.0004905135137960315, 0.07131035625934601, -0.06845646351575851, -0.03517335280776024, 0.02579626254737377, 0.016206057742238045, -0.04644068703055382, 0.025203244760632515, -0.03869439288973808, -0.051851969212293625, -0.03324604406952858, -0.006921626627445221, -0.006254481617361307, 0.008436600677669048, 0.029632344841957092, 0.013815455138683319, -0.0044013019651174545, -0.037415701895952225, -0.01222172100096941, 0.004887761548161507, -0.0466630682349205, 0.037841930985450745, 0.00483679911121726, -0.05578071251511574, 0.023257406428456306, 0.03554398939013481, -0.013157576322555542, 0.018309416249394417, -0.029965916648507118, -0.02759384736418724, -0.01525167003273964, -0.01880977489054203, -0.02099652774631977, -0.0604136623442173, -0.04462457075715065, -0.020848272368311882, 0.03306072950363159, -0.031800564378499985, -0.02171926759183407, -0.018559595569968224, -0.01195300929248333, 0.003157355124130845, 0.013370692729949951, 0.012481166049838066, -0.05544713884592056, -0.04299377277493477, -0.010461200028657913, -0.03389465808868408, 0.017216039821505547, 0.0065509905107319355, -0.01660449057817459, -0.04047344624996185, 0.010868899524211884, -0.004146489780396223, 0.058968182653188705, -0.023313002660870552, 0.022701453417539597, 0.021237440407276154, 0.03817550465464592, 0.09080581367015839, 0.033690810203552246, -0.022553198039531708, -0.019217474386096, 0.0021647457033395767, 0.029280241578817368, 0.04903513938188553, 0.011647234670817852, -0.005253764800727367, 0.02827952429652214, 0.003724891459569335, 0.042511943727731705, 0.05615134909749031, -0.03183762729167938, -0.018902434036135674, -0.04870156571269035, -0.060080088675022125, 0.004438365809619427, 0.02950262278318405, 0.04076995700597763, -0.01256455946713686, -0.0865805596113205, -0.01023881882429123, 0.06230390444397926, -0.033153384923934937, -0.044402189552783966, 0.015335062518715858, -0.002360487822443247, 0.019402792677283287, 0.0384720116853714, -0.006583421025425196, -0.05125895515084267, 0.012036402709782124, -0.020551763474941254, -0.012861067429184914, -0.002733440138399601, 0.019866088405251503, 0.016891734674572945, 0.018411342054605484, -0.030966633930802345, -0.0006474546971730888, -0.029706472530961037, -0.06693685799837112, 0.0025666540022939444, -0.017086317762732506, -0.03493243828415871, -0.048812754452228546, -0.0006045998889021575, 0.12483019381761551, 0.018633723258972168, 0.046366557478904724, -0.014751311391592026, -0.004957255907356739, -0.02965087629854679, 0.026055708527565002, -0.02047763764858246, -0.08910088241100311, -0.010952292941510677, 0.02140422724187374, 0.03539573401212692, -0.005276929587125778, 0.02253466658294201, -0.015474051237106323, -0.03243064507842064, 0.05959826335310936, 0.02759384736418724, -0.011211737990379333, -0.008950858376920223, 0.033171918243169785, 0.004846065305173397, -0.015974409878253937, -0.009390988387167454, -0.010192489251494408, -0.004426783416420221, -0.023961614817380905, -0.005318625830113888, -0.026667257770895958, -0.013824720866978168, 0.05930175259709358, 0.005198169499635696, -0.07171805948019028, 0.0007603828562423587, 0.019402792677283287, -0.0140841668471694, -0.01729016751050949, -0.007996470667421818, 0.03170790523290634, 0.030707189813256264, 0.0029674042016267776, 0.03155965358018875, 0.003351938910782337, 0.011091280728578568, 0.029428495094180107, 0.0052676633931696415, -0.026722852140665054, 0.03228239342570305, -0.011767691932618618, 0.022404944524168968, 0.0084088034927845, -0.027427060529589653, -0.029762066900730133, -0.040844082832336426, 0.017021456733345985, 0.03939860314130783, 0.002654680050909519, 0.0004412884300108999, -0.03902796655893326, 0.05674436688423157, 0.026000112295150757, -0.024332251399755478, -0.06252628564834595, -0.01345408521592617, -0.006694612093269825, 0.015826156362891197, 0.0026106671430170536, -0.017512548714876175, -0.006050631869584322, 0.019384261220693588 ]
9,567
asyncclick.parser
add_argument
Adds a positional argument named `dest` to the parser. The `obj` can be used to identify the option in the order list that is returned from the parser.
def add_argument( self, obj: "CoreArgument", dest: t.Optional[str], nargs: int = 1 ) -> None: """Adds a positional argument named `dest` to the parser. The `obj` can be used to identify the option in the order list that is returned from the parser. """ self._args.append(Argument(obj, dest=dest, nargs=nargs))
(self, obj: 'CoreArgument', dest: Optional[str], nargs: int = 1) -> None
[ -0.01999691314995289, 0.05895283818244934, -0.019443364813923836, 0.027763880789279938, 0.04947333410382271, -0.03352423757314682, 0.05791493505239487, 0.08683780580759048, -0.012593211606144905, -0.05781114473938942, -0.007719396613538265, 0.011918575502932072, -0.03131004422903061, 0.010024404153227806, -0.008856764063239098, 0.060059934854507446, -0.004908411763608456, 0.02247058041393757, -0.04895438253879547, 0.07597443461418152, 0.04912736639380455, -0.007944275625050068, 0.009479505941271782, -0.011053657159209251, -0.019702840596437454, 0.05047663673758507, 0.009479505941271782, 0.030704602599143982, -0.058745257556438446, -0.0018022736767306924, 0.028715290129184723, -0.0860074833035469, -0.032659318298101425, -0.012852687388658524, -0.018215181306004524, 0.005358169320970774, -0.030410530045628548, 0.0558045357465744, -0.02814444527029991, -0.03822939470410347, 0.026189729571342468, 0.008394032716751099, 0.008960554376244545, 0.009444909170269966, 0.014271153137087822, -0.016727522015571594, -0.009150836616754532, -0.007088006474077702, -0.034302663058042526, -0.04729373753070831, 0.04200043901801109, -0.01069904025644064, 0.06545702368021011, -0.034562140703201294, -0.002350415801629424, 0.07929571717977524, 0.037606652826070786, 0.06012912839651108, -0.018301673233509064, 0.0437648706138134, -0.031067868694663048, 0.004981929901987314, 0.04227720946073532, -0.04556390270590782, 0.0417928583920002, -0.00797454733401537, -0.011365028098225594, 0.009029747918248177, 0.02459827996790409, 0.07403701543807983, -0.060475096106529236, -0.02205541916191578, 0.01312946155667305, -0.02849041111767292, 0.04386866092681885, 0.025566987693309784, -0.08150991052389145, 0.03874834254384041, 0.024719368666410446, 0.023387392982840538, -0.02551509253680706, -0.019443364813923836, -0.025480495765805244, 0.02783307433128357, -0.0241831187158823, -0.005167887546122074, -0.05542397126555443, -0.0483662374317646, 0.04943873733282089, -0.011823434382677078, -0.029995370656251907, -0.008528095670044422, -0.010621197521686554, -0.014132766984403133, -0.0024758288636803627, -0.037537459284067154, -0.009479505941271782, -0.00778426555916667, -0.007563711144030094, 0.04895438253879547, -0.027054646983742714, -0.03715689480304718, 0.05234486237168312, 0.00400889664888382, 0.018803326413035393, -0.022228403016924858, 0.042726967483758926, -0.03504649177193642, -0.006279307417571545, 0.021259693428874016, 0.011460168287158012, 0.012376981787383556, -0.026950856670737267, -0.0015860440907999873, -0.0612708181142807, 0.004222963936626911, 0.026241624727845192, -0.02048126794397831, 0.0019979614298790693, 0.053382761776447296, 0.02511722967028618, -0.011728293262422085, 0.024875052273273468, 0.05386711657047272, -0.006374448537826538, 0.003684552386403084, -0.050338249653577805, -0.008238348178565502, -0.029113152995705605, -0.06504186242818832, 0.04971550777554512, -0.025947552174329758, -0.04757051169872284, -0.05137615278363228, 0.04369567707180977, -0.031171659007668495, 0.08690699934959412, 0.05293300747871399, -0.022193806245923042, -0.019287679344415665, -0.015966393053531647, -0.01685725897550583, 0.03681092709302902, -0.00578197930008173, -0.03338585048913956, 0.025255616754293442, -0.03867914900183678, 0.0525178462266922, 0.01758379116654396, 0.02385444939136505, -0.007831836119294167, 0.012013716623187065, 0.01390788797289133, -0.0052630286663770676, -0.015187966637313366, -0.0003027214261237532, -0.02757359854876995, -0.03864455223083496, 0.03729528188705444, 0.01448738295584917, -0.0030272144358605146, -0.04923115670681, 0.00003618467235355638, -0.0038769966922700405, 0.016061535105109215, -0.026449205353856087, -0.0012660243082791567, 0.041896648705005646, -0.046532608568668365, 0.052725426852703094, 0.01956445351243019, -0.03957866504788399, 0.07099249958992004, 0.01831897161900997, 0.014651717618107796, 0.04186205193400383, -0.022885741665959358, 0.05608130991458893, 0.01338028721511364, -0.062377914786338806, 0.055769938975572586, -0.0010757423005998135, -0.0006270658341236413, -0.03227875381708145, 0.03995922952890396, -0.030670005828142166, 0.0007795076817274094, 0.05262163653969765, 0.0512031689286232, -0.02196892723441124, 0.04227720946073532, 0.010733637027442455, 0.010846076533198357, -0.05019986256957054, -0.08220184594392776, 0.0010914189042523503, -0.036707136780023575, -0.04532172530889511, 0.06355420500040054, 0.05518179386854172, -0.02013530023396015, -0.032642021775245667, -0.004536496941000223, -0.00449757557362318, 0.04532172530889511, 0.013881940394639969, 0.00769777363166213, 0.037364475429058075, -0.057603564113378525, -0.022505177184939384, 0.046463415026664734, -0.025307511910796165, 0.011494765058159828, -0.006123622413724661, -0.007196120917797089, 0.012489421293139458, -0.019616348668932915, -0.04013221338391304, 0.04404164478182793, 0.03105057030916214, 0.05286381393671036, -0.004231613129377365, -0.008471875451505184, 0.0032283079344779253, 0.03449294716119766, -0.037364475429058075, 0.04407624155282974, -0.07362185418605804, 0.0007578847580589354, 0.05362493917346001, -0.024494489654898643, -0.007269639056175947, -0.020169897004961967, -0.01774812489748001, 0.018872519955039024, 0.019028205424547195, 0.023387392982840538, 0.029216943308711052, -0.023335497826337814, -0.007732370402663946, -0.0032650670036673546, 0.03649955615401268, -0.009306522086262703, 0.040408987551927567, 0.006326877977699041, 0.04255398362874985, -0.009548699483275414, 0.0023309551179409027, 0.03418157622218132, 0.0049300347454845905, 0.04127390682697296, 0.06009453162550926, -0.06289686262607574, -0.01982392929494381, -0.02890557236969471, 0.0202390905469656, 0.011079604737460613, -0.02369876392185688, -0.02617243118584156, -0.03532326593995094, -0.0011276373406872153, -0.007057734299451113, 0.03871374577283859, 0.008363761007785797, -0.04822785034775734, 0.0241831187158823, -0.038263991475105286, -0.05943719297647476, 0.010482811369001865, 0.025549689307808876, 0.023992836475372314, -0.054386068135499954, 0.010776882991194725, 0.03549624979496002, 0.01733296550810337, 0.02055046148598194, -0.022349491715431213, 0.04559849947690964, -0.06317363679409027, -0.006551756989210844, 0.04750131815671921, 0.004804621916264296, -0.001002224162220955, -0.013657061383128166, -0.05836469307541847, 0.031500328332185745, 0.02146727405488491, 0.07825781404972076, -0.07431378960609436, -0.00267476006411016, 0.011252588592469692, 0.12987615168094635, -0.0003789423790294677, 0.027141138911247253, 0.02890557236969471, 0.07182282209396362, -0.02930343523621559, 0.047120753675699234, -0.014262503944337368, 0.017955705523490906, 0.015248510986566544, -0.016727522015571594, -0.07279153168201447, -0.006456615868955851, -0.046048253774642944, 0.014366294257342815, 0.02113860473036766, 0.024338804185390472, -0.039198100566864014, -0.031431134790182114, 0.04774349555373192, 0.009341118857264519, -0.08351652324199677, -0.015378248877823353, -0.006391746923327446, 0.03809100762009621, 0.02013530023396015, -0.039198100566864014, -0.05293300747871399, -0.013639762997627258, -0.026241624727845192, -0.021934330463409424, -0.04829704388976097, -0.09514102339744568, 0.05563155189156532, 0.0551471970975399, -0.011235290206968784, -0.026708679273724556, 0.007542088627815247, 0.021017517894506454, -0.009911964647471905, -0.019945017993450165, -0.011788837611675262, 0.0650072693824768, 0.06050968915224075, -0.02205541916191578, -0.04473358020186424, -0.0025320486165583134, -0.013821396045386791, 0.028594201430678368, 0.015888551250100136, 0.04210422933101654, -0.060751866549253464, 0.026137834414839745, 0.055942922830581665, -0.027954163029789925, -0.00392240472137928, -0.03812560439109802, 0.08192507177591324, -0.04829704388976097, -0.05857227370142937, -0.010906620882451534, -0.06303524971008301, -0.07666637003421783, 0.05096099153161049, 0.04798567295074463, 0.017211876809597015, 0.002542860107496381, 0.012965126894414425, -0.08849845081567764, -0.025255616754293442, -0.027314122766256332, 0.018941713497042656, -0.009297872893512249, -0.046359624713659286, 0.014444136992096901, 0.01677076704800129, -0.006504186429083347, -0.01626911573112011, 0.01727242022752762, -0.010110896080732346, 0.017627036198973656, 0.018959011882543564, 0.008363761007785797, -0.00892595760524273, 0.006560406181961298, 0.027729284018278122, 0.017730826511979103, -0.07798103988170624, -0.04798567295074463, 0.02312791720032692, 0.0031223553232848644, -0.027210332453250885, 0.007507491856813431, -0.007939950563013554, -0.005954963155090809, 0.01485929824411869, 0.019010907039046288, 0.0020563434809446335, -0.033801011741161346, 0.009098941460251808, -0.018716834485530853, 0.03542705625295639, -0.02056775987148285, 0.03591141104698181, -0.09659408777952194, 0.005695487838238478, 0.029113152995705605, -0.06185896322131157, 0.013639762997627258, 0.05262163653969765, -0.002746115904301405, 0.02693355828523636, 0.0012422390282154083, -0.02682976797223091, -0.024148521944880486, -0.014971737749874592, -0.0011362865334376693, -0.01503228209912777, 0.0376412495970726, -0.024304207414388657, -0.02568807639181614, 0.023162513971328735, 0.010560653172433376, -0.023145215585827827, -0.0016011801781132817, 0.013726254925131798, -0.02949371747672558, -0.020775340497493744, -0.024563683196902275, 0.02857690304517746, -0.005864146631211042, -0.006906373426318169, 0.06376178562641144, 0.011710994876921177, -0.03726068511605263, 0.030497021973133087, -0.018388165161013603, 0.003699688473716378, -0.05770735442638397, -0.06012912839651108, 0.03957866504788399, 0.04359188675880432, -0.001260618562810123, 0.014919842593371868, 0.011883978731930256, 0.013657061383128166, -0.015300406143069267, 0.006953943986445665, 0.04044358432292938, 0.03321286663413048, -0.07694314420223236, 0.016070183366537094, 0.0689167007803917, -0.07957249134778976, -0.03272851184010506, -0.0032369571272283792, -0.03253823146224022, 0.02700275182723999, 0.012299139983952045, 0.023179812356829643, -0.004359188489615917, 0.05175671726465225, 0.0041667441837489605, -0.06556081771850586, -0.06684089452028275, -0.036534152925014496, -0.010335775092244148, -0.008480524644255638, -0.025324810296297073, -0.002970994682982564, 0.002190405735746026, 0.03791802376508713, -0.07258395105600357, -0.058433886617422104, 0.06819016486406326, 0.021242395043373108, 0.004536496941000223, -0.011650450527668, 0.005254379473626614, 0.02229759655892849, 0.02766009047627449, -0.0019417417934164405, -0.07382943481206894, 0.024494489654898643, 0.010733637027442455, -0.010967165231704712, 0.0037191491574048996, -0.024425296112895012, 0.017557842656970024, 0.021588362753391266, 0.0028758535627275705, 0.095832958817482, 0.01428845152258873, 0.0024131222162395716, 0.08455441892147064, 0.04255398362874985, -0.032659318298101425, 0.005980910733342171, 0.04833164066076279, 0.020861832424998283, 0.009626541286706924, -0.03715689480304718, -0.04559849947690964, 0.05905662849545479, 0.030029967427253723, 0.022280298173427582, -0.002428258303552866, -0.006685819011181593, 0.005539802368730307, -0.014919842593371868, -0.001752540934830904, -0.015378248877823353, -0.026812469586730003, -0.015559881925582886, -0.04947333410382271, -0.05109937861561775, 0.014098170213401318, -0.06241251155734062, 0.027279525995254517, -0.024805858731269836, 0.009271925315260887, 0.00415160832926631, -0.005864146631211042, 0.09022828936576843, 0.03812560439109802, 0.020360179245471954, 0.012722949497401714, -0.017229175195097923, -0.025826463475823402, -0.0013633276103064418, -0.007797239348292351, 0.014997685328125954, -0.04386866092681885, 0.01857844740152359, -0.01709078811109066, -0.07555927336215973, -0.010724987834692001, 0.0320538766682148, -0.02072344534099102, 0.026449205353856087, 0.036118991672992706, 0.009877367876470089, 0.029926177114248276, 0.028265533968806267, 0.04542551562190056, -0.005885769613087177, 0.03540975973010063, 0.0396132618188858, 0.011425572447478771, 0.021899733692407608, 0.009055695496499538, 0.0040543051436543465, -0.00011784513480961323, -0.054870422929525375, -0.007464245893061161, -0.050753410905599594, -0.007178822532296181, 0.06348501145839691, -0.0025320486165583134, -0.0417928583920002, -0.009047046303749084, -0.048746801912784576, 0.11306213587522507, -0.0009449233766645193, 0.055043406784534454, 0.015819357708096504, 0.018267076462507248, -0.018543850630521774, 0.008285918273031712, 0.04303833842277527, -0.018388165161013603, 0.026362713426351547, 0.01635560765862465, -0.0031850619707256556, -0.002389337169006467, -0.005872795823961496, -0.06708306819200516, 0.012065611779689789, 0.013138110749423504, -0.010949866846203804, -0.10254472494125366, -0.06722145527601242, 0.005090044811367989, -0.032088473439216614, 0.010716338641941547, -0.01659778319299221, -0.009886017069220543, 0.033403147011995316, 0.02105211466550827, -0.06089025363326073, 0.01016279123723507, -0.03321286663413048, -0.07410620898008347, 0.018353568390011787, 0.04293454810976982, 0.03418157622218132, 0.0010622278787195683, -0.0019384983461350203, -0.0560121163725853, 0.0044802771881222725, 0.030375933274626732, -0.008696754463016987, -0.04549470916390419, -0.014271153137087822, -0.01675346866250038, -0.007278288248926401, -0.06798258423805237, 0.03535786271095276, -0.021588362753391266, -0.012186700478196144, -0.01556853111833334, -0.01833627000451088, 0.0022444631904363632, 0.04957712069153786, 0.036949314177036285, -0.047362931072711945, -0.035634636878967285, -0.05871066078543663, 0.0009708708967082202, 0.015646373853087425, -0.013138110749423504, 0.007191796321421862, 0.02599944733083248, -0.08801409602165222, 0.0058511728420853615, 0.00257961917668581, 0.010923919267952442, 0.042657773941755295, 0.07901894301176071, -0.046048253774642944, 0.0265875905752182, -0.006819881498813629, 0.006504186429083347, -0.030618110671639442, -0.03899051994085312, -0.0283347275108099, 0.058087918907403946, -0.008450252935290337, 0.005228431895375252, -0.01785191521048546, 0.035375162959098816, 0.052552442997694016, -0.042173419147729874, 0.012238595634698868, -0.07874216884374619, -0.05179131403565407, 0.004372162278741598, 0.0029601831920444965, -0.020931025967001915, -0.02212461270391941, -0.003913755528628826, -0.02542860060930252, 0.04601365700364113, -0.03715689480304718, 0.0999845638871193, -0.03212307021021843, -0.02181324176490307, -0.034406453371047974, -0.033645324409008026, 0.07272233814001083, -0.004279183689504862, -0.02511722967028618, 0.002754765097051859, 0.02080993726849556, 0.03388750180602074, -0.04175826162099838, 0.019356872886419296, 0.012082910165190697, 0.012299139983952045, 0.06334662437438965, -0.020446671172976494, 0.0702313706278801, -0.025134528055787086, -0.025618882849812508, -0.013527323491871357, -0.015585829503834248, -0.02022179216146469, 0.014971737749874592, 0.043730273842811584, -0.07244556397199631, -0.050753410905599594, -0.0002590700751170516, 0.05608130991458893, -0.0029061257373541594, -0.03947487473487854, -0.011572607792913914, -0.006707441993057728, -0.026881663128733635, -0.029995370656251907, -0.06504186242818832, -0.08413926512002945, 0.030600812286138535, -0.010716338641941547, -0.014807403087615967, 0.03791802376508713, 0.011555309407413006, 0.019547155126929283, 0.029182346537709236, -0.05262163653969765, 0.010906620882451534, -0.0022855468560010195, -0.01609613187611103, 0.0015017145778983831, 0.0028607177082449198, 0.013068917207419872, -0.026137834414839745, 0.012783493846654892, 0.03449294716119766, -0.007870757021009922, 0.0396132618188858, 0.060648076236248016, 0.013700307346880436, 0.015966393053531647, -0.0067636617459356785, -0.03570383042097092, -0.02387174777686596, 0.011062306351959705, 0.052379459142684937, -0.0022401385940611362, -0.00022487877868115902, 0.05103018507361412, -0.03288419917225838, -0.015871252864599228, -0.013345690444111824, -0.015118774026632309, 0.04601365700364113, 0.03492540493607521, -0.03404318913817406, -0.0020866156555712223, 0.002432582899928093, 0.021104007959365845, 0.029043959453701973, -0.05905662849545479, 0.01346677914261818, -0.03598060458898544, -0.019304977729916573, -0.028109848499298096, 0.03388750180602074, -0.05365953594446182, 0.018197882920503616, 0.022090015932917595, 0.04386866092681885, -0.0028888273518532515, 0.005128966178745031, 0.017817318439483643, 0.03899051994085312, 0.042415596544742584, 0.004086739383637905, 0.02048126794397831, 0.01346677914261818, 0.02131158858537674, 0.07203040271997452, -0.03359343111515045, 0.053140588104724884, -0.018595745787024498, -0.021328886970877647, 0.02247058041393757, -0.034406453371047974, 0.045217934995889664, 0.033333953469991684, -0.004882464185357094, 0.04428382217884064, 0.059817757457494736, -0.02542860060930252, -0.030237548053264618, -0.002737466711550951, 0.024840455502271652, 0.05936799943447113, -0.03954406827688217, -0.09894666820764542, -0.06618355214595795, -0.013812746852636337, -0.037779636681079865, 0.035565443336963654, 0.056531067937612534, -0.03729528188705444, 0.033645324409008026 ]
9,568
asyncclick.parser
add_option
Adds a new option named `dest` to the parser. The destination is not inferred (unlike with optparse) and needs to be explicitly provided. Action can be any of ``store``, ``store_const``, ``append``, ``append_const`` or ``count``. The `obj` can be used to identify the option in the order list that is returned from the parser.
def add_option( self, obj: "CoreOption", opts: t.Sequence[str], dest: t.Optional[str], action: t.Optional[str] = None, nargs: int = 1, const: t.Optional[t.Any] = None, ) -> None: """Adds a new option named `dest` to the parser. The destination is not inferred (unlike with optparse) and needs to be explicitly provided. Action can be any of ``store``, ``store_const``, ``append``, ``append_const`` or ``count``. The `obj` can be used to identify the option in the order list that is returned from the parser. """ opts = [normalize_opt(opt, self.ctx) for opt in opts] option = Option(obj, opts, dest, action=action, nargs=nargs, const=const) self._opt_prefixes.update(option.prefixes) for opt in option._short_opts: self._short_opt[opt] = option for opt in option._long_opts: self._long_opt[opt] = option
(self, obj: 'CoreOption', opts: Sequence[str], dest: Optional[str], action: Optional[str] = None, nargs: int = 1, const: Optional[Any] = None) -> None
[ -0.015647627413272858, 0.03350348025560379, 0.019548222422599792, 0.008063641376793385, 0.02530408650636673, -0.04199247807264328, 0.04101506620645523, 0.0833333432674408, -0.04669852927327156, -0.05766725540161133, -0.012027586810290813, 0.031078051775693893, 0.016851291060447693, 0.007837388664484024, -0.00662467535585165, 0.042716484516859055, -0.029467133805155754, -0.04325949028134346, -0.03259846940636635, 0.06523314118385315, 0.07631046324968338, -0.014778818003833294, 0.01951202191412449, 0.04108746722340584, 0.002841732231900096, 0.05466261878609657, -0.010443818755447865, 0.04003765434026718, -0.05868086591362953, -0.02890602871775627, 0.00040499208262190223, -0.06729656457901001, -0.021593544632196426, -0.015421374700963497, -0.06954099237918854, -0.009457357227802277, -0.0013801406603306532, 0.07819288969039917, 0.0009909862419590354, -0.028960328549146652, 0.03178396075963974, -0.01681509055197239, -0.010977774858474731, -0.0009033133974298835, 0.03297857567667961, 0.009629309177398682, -0.017068494111299515, 0.04554011672735214, -0.05951347574591637, -0.09506227821111679, 0.04521431401371956, -0.03104185126721859, 0.017702000215649605, -0.04054446145892143, -0.006579424720257521, 0.06476253271102905, 0.03547640144824982, 0.06374892592430115, -0.039494648575782776, 0.06146829575300217, -0.01784680224955082, -0.029286131262779236, 0.008285368792712688, -0.014851218089461327, 0.035313501954078674, 0.008525196462869644, -0.03339488059282303, -0.015520925633609295, 0.023023461923003197, 0.058717064559459686, -0.011140676215291023, -0.010950624011456966, 0.013357951305806637, -0.06338691711425781, 0.014027658849954605, -0.01568382792174816, -0.08507096767425537, 0.014344412833452225, 0.018679412081837654, 0.0035318024456501007, -0.04097886383533478, 0.0009344231220893562, -0.021032437682151794, -0.016226833686232567, 0.03131335601210594, -0.00543458666652441, -0.03305097669363022, -0.07515205442905426, 0.03144005686044693, 0.007493484765291214, -0.007208406925201416, -0.05187518894672394, -0.012344339862465858, -0.03630901128053665, -0.017195194959640503, -0.01821785606443882, 0.005307885352522135, -0.006751376669853926, -0.01763864979147911, 0.03844483569264412, -0.0007483303779736161, -0.03332247957587242, 0.020797135308384895, -0.01991022564470768, 0.04083406180143356, -0.04796554520726204, 0.02088763751089573, -0.009683609940111637, -0.04206487536430359, -0.015801480039954185, 0.02633579820394516, 0.01466116588562727, -0.03887924179434776, -0.029811037704348564, -0.03165725991129875, 0.02988343872129917, 0.017946353182196617, -0.03500579670071602, -0.020055027678608894, 0.012317189946770668, -0.03797423094511032, -0.01523132249712944, -0.006828302517533302, 0.014362513087689877, -0.027295108884572983, -0.014778818003833294, -0.006357697304338217, -0.010896323248744011, -0.021665945649147034, -0.005285259801894426, 0.03191066160798073, -0.012805894948542118, -0.0032286241184920073, -0.054698821157217026, 0.046553727239370346, -0.02472488023340702, 0.04228207841515541, 0.04481610655784607, -0.013719955459237099, 0.015674777328968048, 0.000520380912348628, -0.005230959504842758, -0.002423164900392294, -0.01943962089717388, -0.02244425378739834, 0.0008829506114125252, -0.030607447028160095, 0.0021256429608911276, 0.002959383651614189, 0.0455763153731823, -0.007529685273766518, 0.015665728598833084, 0.018100205808877945, 0.04474370926618576, -0.007140531204640865, 0.006891652941703796, -0.026824504137039185, -0.02588329277932644, -0.0024209024850279093, -0.029992040246725082, 0.015448525547981262, -0.05039096996188164, -0.0120185362175107, 0.020797135308384895, -0.020616134628653526, -0.018806112930178642, -0.00025552400620654225, 0.027096007019281387, -0.05133218318223953, 0.07135100662708282, -0.013792356476187706, -0.06374892592430115, 0.08355055004358292, 0.03735882416367531, 0.014525414444506168, 0.08282653987407684, -0.02821822091937065, 0.006339597050100565, -0.00995511282235384, -0.09752390533685684, 0.011249277740716934, 0.009285405278205872, 0.00036341819213703275, 0.008172242902219296, 0.006063568871468306, -0.03851723670959473, 0.03239936754107475, 0.029702436178922653, 0.02048943191766739, -0.01118592731654644, 0.050282370299100876, -0.0005514906370081007, 0.003380213398486376, 0.02070663496851921, -0.0407254621386528, -0.01943962089717388, -0.010588619858026505, -0.018281206488609314, 0.07862728834152222, 0.059984080493450165, -0.04195627570152283, -0.004868955351412296, -0.00394584471359849, -0.02856212481856346, 0.07804808765649796, 0.036743417382240295, 0.032851871103048325, 0.021412542089819908, -0.04148567095398903, -0.007683536969125271, 0.030607447028160095, 0.0033259126357734203, -0.04485230892896652, 0.027982916682958603, -0.009683609940111637, 0.011728933081030846, 0.02535838820040226, 0.027385611087083817, -0.027620913460850716, 0.031295254826545715, 0.05314220115542412, -0.004101959057152271, 0.013357951305806637, 0.033648282289505005, 0.028326820582151413, -0.017122793942689896, 0.05411961302161217, -0.02995583973824978, 0.03768462687730789, 0.031530559062957764, -0.03797423094511032, -0.02041703090071678, 0.021720245480537415, -0.02014552801847458, 0.06476253271102905, 0.06776716560125351, 0.0196206234395504, 0.06364031881093979, 0.04137706756591797, -0.024543877691030502, 0.02242615446448326, 0.0087650241330266, -0.060816690325737, 0.024887781590223312, -0.010516218841075897, 0.035892706364393234, -0.004778454080224037, 0.000022271737179835327, 0.027295108884572983, 0.018073055893182755, 0.07609326392412186, 0.037033021450042725, -0.033992186188697815, -0.01439871359616518, -0.042535483837127686, 0.015729079023003578, 0.05520562455058098, -0.015665728598833084, -0.02226325310766697, -0.010335217230021954, 0.0029277082066982985, 0.007000254467129707, 0.006380322389304638, 0.01199138630181551, -0.06465393304824829, 0.021991750225424767, -0.0008931320044212043, -0.043006088584661484, -0.031639158725738525, 0.04492470994591713, 0.05426441505551338, -0.025086885318160057, -0.03379308432340622, 0.009231104515492916, 0.045974522829055786, 0.016588838770985603, -0.012842095457017422, 0.014842168428003788, -0.03804663196206093, -0.06559514254331589, -0.0014898731606081128, -0.00738488370552659, 0.024417176842689514, -0.0021788121666759253, -0.05755865201354027, 0.026589201763272285, -0.011810383759438992, 0.08572257310152054, -0.03649001568555832, -0.007683536969125271, -0.02001882717013359, 0.09375905990600586, 0.01758434996008873, 0.028073418885469437, 0.06700696051120758, 0.0721474215388298, 0.011204026639461517, 0.031874462962150574, -0.014805967919528484, -0.025955693796277046, -0.01916811801493168, -0.02311396226286888, -0.05618303641676903, 0.011312628164887428, -0.02517738565802574, 0.021593544632196426, 0.00589614175260067, -0.028869828209280968, 0.05285260081291199, 0.03667101636528969, 0.019367219880223274, 0.0073351082392036915, -0.027675213292241096, 0.018018754199147224, 0.0005282997153699398, 0.030082540586590767, -0.01840790919959545, -0.043404292315244675, -0.02414567396044731, -0.03620041161775589, -0.029792938381433487, -0.005167608615010977, -0.07768607884645462, -0.0784824937582016, 0.015077470801770687, 0.009656459093093872, 0.014724517241120338, -0.024362877011299133, 0.03819143399596214, -0.004484325647354126, -0.02208225056529045, 0.00022738383268006146, -0.010715321637690067, 0.08818420022726059, 0.03381118178367615, -0.010090864263474941, -0.008706199005246162, -0.006063568871468306, -0.046445127576589584, 0.03837243467569351, 0.02966623567044735, 0.04333189129829407, -0.05730525031685829, -0.00704097980633378, 0.05397481098771095, -0.05835506319999695, -0.01898711547255516, -0.06805676966905594, 0.00302725937217474, -0.05129598081111908, -0.04550391435623169, -0.04568491876125336, -0.047313936054706573, -0.029738636687397957, 0.05944107472896576, 0.005113307852298021, 0.0172947458922863, -0.004647227935492992, 0.010887273587286472, -0.09687229990959167, -0.04152186959981918, -0.041739072650671005, 0.018145455047488213, 0.02134014293551445, -0.05343180522322655, 0.026661602780222893, 0.01610013283789158, -0.016453087329864502, -0.030028240755200386, -0.036055609583854675, 0.038010429590940475, -0.0018416958628222346, 0.059115272015333176, -0.017539098858833313, 0.016109183430671692, 0.03583840653300285, 0.027620913460850716, 0.029394732788205147, -0.062337107956409454, -0.022245151922106743, 0.030372144654393196, 0.02139444276690483, -0.020398931577801704, 0.040761660784482956, 0.00426938571035862, -0.022516654804348946, 0.01397335808724165, 0.02657110057771206, 0.025032583624124527, -0.04181147366762161, -0.0060726189985871315, 0.010670071467757225, 0.027240809053182602, -0.0016584312543272972, -0.01027186680585146, -0.049775563180446625, 0.011276427656412125, 0.025340287014842033, -0.061649300158023834, 0.02278815768659115, 0.0519837886095047, -0.02202795073390007, 0.09839271754026413, 0.037141621112823486, -0.03793802857398987, 0.02421807497739792, -0.017367146909236908, -0.01496887020766735, 0.0020656860433518887, 0.053106002509593964, -0.03638141229748726, -0.017511948943138123, -0.00474677886813879, 0.018172606825828552, -0.0306436475366354, 0.021249640733003616, -0.028815526515245438, 0.002902820473536849, -0.009412107057869434, -0.008131517097353935, 0.04930495843291283, -0.03768462687730789, -0.004142684396356344, 0.06881698220968246, 0.008995802141726017, -0.0706631988286972, 0.07710687816143036, -0.024978283792734146, 0.03477049618959427, -0.08159572631120682, -0.03851723670959473, 0.054011013358831406, 0.035766005516052246, -0.025720391422510147, -0.017231395468115807, -0.03165725991129875, -0.026607301086187363, -0.041159868240356445, -0.01133072841912508, 0.018679412081837654, 0.0082084434106946, -0.0667535588145256, -0.04333189129829407, 0.07051839679479599, -0.04622792452573776, -0.06552274525165558, -0.015149871818721294, -0.03793802857398987, 0.03837243467569351, 0.012308139353990555, 0.0510425791144371, -0.0027286058757454157, -0.0006589606055058539, 0.03218216449022293, -0.04648132622241974, -0.023385465145111084, 0.035313501954078674, -0.020217929035425186, -0.020960038527846336, -0.015095571056008339, -0.01750289835035801, -0.007113380823284388, 0.10020273923873901, -0.021955549716949463, -0.0765276700258255, 0.09426587074995041, 0.04626412317156792, 0.04199247807264328, -0.02432667650282383, -0.020978137850761414, -0.0422096773982048, -0.000580903491936624, -0.029973939061164856, -0.03527729958295822, -0.0018745025154203176, 0.015014120377600193, -0.024399077519774437, -0.006226470693945885, -0.0205980334430933, -0.008140567690134048, 0.004941355902701616, 0.030263543128967285, 0.06070808693766594, -0.007516110315918922, -0.004719628486782312, 0.07040979713201523, 0.0411960668861866, -0.004484325647354126, 0.021267741918563843, 0.03029974363744259, 0.005633688997477293, -0.00904105231165886, -0.038589637726545334, -0.056364040821790695, 0.06121489405632019, 0.07250942289829254, 0.03739502280950546, -0.012507242150604725, -0.006289821118116379, -0.02231755293905735, 0.002479728078469634, -0.0033168625086545944, -0.05777585506439209, -0.03239936754107475, -0.028471622616052628, -0.05712424963712692, -0.08427455276250839, 0.05535042658448219, -0.058789465576410294, 0.00308382255025208, -0.015339924022555351, 0.02490588277578354, -0.0035408525727689266, 0.011050174944102764, 0.10273676365613937, 0.012959746643900871, -0.03746742382645607, -0.0171589944511652, -0.016996093094348907, -0.013647554442286491, -0.053033601492643356, -0.016453087329864502, 0.0030068967025727034, -0.03011874109506607, 0.0069821542128920555, 0.011366928927600384, -0.054300617426633835, -0.011013975366950035, 0.024290475994348526, -0.03833623602986336, 0.017855852842330933, 0.04836374893784523, 0.026408199220895767, 0.07073560357093811, -0.02530408650636673, 0.035603102296590805, 0.004846329800784588, 0.04094266518950462, -0.0006747982697561383, -0.03562120348215103, 0.019638722762465477, 0.02237185463309288, 0.038300033658742905, 0.02657110057771206, -0.026118597015738487, -0.028942227363586426, -0.013348901644349098, 0.0008371344883926213, 0.06776716560125351, -0.015765279531478882, -0.029738636687397957, 0.05111498013138771, -0.03305097669363022, 0.08159572631120682, -0.010977774858474731, 0.04554011672735214, 0.05672604218125343, -0.009909862652420998, -0.016588838770985603, -0.01644403673708439, -0.013204099610447884, -0.01996452733874321, -0.0017432760214433074, 0.020453231409192085, -0.0012228951090946794, 0.034679993987083435, 0.021159140393137932, -0.025141185149550438, 0.0368158183991909, -0.012398640625178814, 0.005298835225403309, -0.05473501980304718, -0.02318636327981949, -0.020398931577801704, -0.03022734262049198, 0.03171155974268913, -0.005149508360773325, 0.025847092270851135, 0.05506082624197006, 0.016398785635828972, -0.11243847757577896, 0.04137706756591797, -0.03424558788537979, -0.0407254621386528, 0.0132493507117033, 0.012769694440066814, 0.02168404683470726, -0.01681509055197239, 0.020670434460043907, -0.05647264048457146, 0.01673363894224167, 0.0062536210753023624, -0.006267196033149958, -0.02953953482210636, -0.00971981044858694, -0.011140676215291023, -0.01893281564116478, -0.039675649255514145, 0.051440782845020294, 0.038987841457128525, -0.021774547174572945, -0.04709673300385475, -0.0377570278942585, -0.007819288410246372, 0.05531422793865204, 0.06548654288053513, -0.07493484765291214, -0.009068203158676624, -0.028308721259236336, -0.00513593340292573, -0.02099623903632164, -0.015059370547533035, 0.010534319095313549, 0.004918730817735195, -0.06979439407587051, 0.00715863099321723, -0.024797281250357628, -0.011710832826793194, 0.027222707867622375, 0.048689551651477814, -0.05549522861838341, 0.00485990522429347, 0.01373805571347475, 0.020109327509999275, -0.0573776513338089, -0.007683536969125271, -0.03334057703614235, 0.05951347574591637, -0.050970178097486496, 0.019493920728564262, -0.04061686247587204, -0.0069504790008068085, 0.03804663196206093, -0.01118592731654644, 0.0017398822819814086, -0.054011013358831406, -0.031928762793540955, 0.04691573232412338, 0.07124240696430206, 0.005683464463800192, 0.02456197887659073, 0.03154865652322769, -0.011737982742488384, 0.04912395775318146, -0.023313064128160477, 0.06298871338367462, -0.029068930074572563, 0.0023982771672308445, -0.020217929035425186, -0.04539531469345093, 0.06914278119802475, -0.004165309946984053, -0.059694476425647736, -0.011928034946322441, 0.04883435368537903, 0.04662612825632095, -0.01233529020100832, -0.0013971095904707909, 0.03131335601210594, 0.007326058112084866, 0.05904287099838257, -0.007651861757040024, 0.08521576970815659, -0.054590217769145966, -0.029811037704348564, -0.03591080754995346, -0.032797571271657944, -0.029304232448339462, 0.01916811801493168, 0.027295108884572983, 0.0068102022632956505, -0.04470750689506531, -0.022190852090716362, 0.0794961005449295, 0.002215012675151229, -0.02943093329668045, -0.019349118694663048, -0.014498264528810978, -0.025376487523317337, -0.028037218376994133, 0.01933101937174797, -0.03352158144116402, 0.04275268316268921, -0.01774725131690502, -0.011285478249192238, -0.009683609940111637, 0.033304378390312195, 0.03768462687730789, 0.007950515486299992, -0.05817405879497528, 0.007651861757040024, 0.009194904007017612, -0.03149435669183731, 0.05386621132493019, -0.0050952075980603695, -0.0030544097535312176, -0.014986969530582428, -0.014453014358878136, 0.04941356182098389, 0.000035404991649556905, 0.052128590643405914, 0.020091228187084198, 0.000622194551397115, 0.007498010061681271, 0.0026494176127016544, -0.021086739376187325, -0.03368448093533516, -0.041847676038742065, 0.05951347574591637, -0.002678830409422517, -0.004819179885089397, 0.07471764832735062, -0.0040046703070402145, 0.006289821118116379, -0.013665654696524143, -0.01813640631735325, 0.023077761754393578, -0.003825930878520012, -0.02047133259475231, 0.007443709298968315, -0.001067346427589655, -0.013548003509640694, 0.04141326993703842, -0.01980162411928177, 0.0059006670489907265, -0.012434841133654118, -0.01972922310233116, -0.012000435963273048, 0.03534970059990883, -0.057631053030490875, -0.04344049096107483, -0.02810961939394474, 0.022281352430582047, -0.021611645817756653, -0.013756155967712402, -0.0022297189570963383, 0.0008105498272925615, 0.05549522861838341, -0.010489068925380707, 0.037901829928159714, -0.027403710409998894, 0.026462500914931297, 0.05716044828295708, -0.00647082319483161, -0.037612225860357285, 0.007529685273766518, 0.009117978624999523, 0.03328627720475197, -0.012787794694304466, 0.08268173784017563, 0.007208406925201416, -0.046662330627441406, 0.06168549880385399, 0.08673618733882904, 0.017946353182196617, 0.01578337885439396, -0.08565016835927963, 0.01439871359616518, 0.04329569265246391, -0.03377498313784599, -0.07812048494815826, -0.04825514554977417, 0.012000435963273048, 0.0034005760680884123, 0.0005367842386476696, 0.016217783093452454, -0.05411961302161217, 0.020272230729460716 ]
9,569
asyncclick.parser
parse_args
Parses positional arguments and returns ``(values, args, order)`` for the parsed options and arguments as well as the leftover arguments if there are any. The order is a list of objects as they appear on the command line. If arguments appear multiple times they will be memorized multiple times as well.
def add_argument( self, obj: "CoreArgument", dest: t.Optional[str], nargs: int = 1 ) -> None: """Adds a positional argument named `dest` to the parser. The `obj` can be used to identify the option in the order list that is returned from the parser. """ self._args.append(Argument(obj, dest=dest, nargs=nargs))
(self, args: List[str]) -> Tuple[Dict[str, Any], List[str], List[ForwardRef('CoreParameter')]]
[ -0.01999691314995289, 0.05895283818244934, -0.019443364813923836, 0.027763880789279938, 0.04947333410382271, -0.03352423757314682, 0.05791493505239487, 0.08683780580759048, -0.012593211606144905, -0.05781114473938942, -0.007719396613538265, 0.011918575502932072, -0.03131004422903061, 0.010024404153227806, -0.008856764063239098, 0.060059934854507446, -0.004908411763608456, 0.02247058041393757, -0.04895438253879547, 0.07597443461418152, 0.04912736639380455, -0.007944275625050068, 0.009479505941271782, -0.011053657159209251, -0.019702840596437454, 0.05047663673758507, 0.009479505941271782, 0.030704602599143982, -0.058745257556438446, -0.0018022736767306924, 0.028715290129184723, -0.0860074833035469, -0.032659318298101425, -0.012852687388658524, -0.018215181306004524, 0.005358169320970774, -0.030410530045628548, 0.0558045357465744, -0.02814444527029991, -0.03822939470410347, 0.026189729571342468, 0.008394032716751099, 0.008960554376244545, 0.009444909170269966, 0.014271153137087822, -0.016727522015571594, -0.009150836616754532, -0.007088006474077702, -0.034302663058042526, -0.04729373753070831, 0.04200043901801109, -0.01069904025644064, 0.06545702368021011, -0.034562140703201294, -0.002350415801629424, 0.07929571717977524, 0.037606652826070786, 0.06012912839651108, -0.018301673233509064, 0.0437648706138134, -0.031067868694663048, 0.004981929901987314, 0.04227720946073532, -0.04556390270590782, 0.0417928583920002, -0.00797454733401537, -0.011365028098225594, 0.009029747918248177, 0.02459827996790409, 0.07403701543807983, -0.060475096106529236, -0.02205541916191578, 0.01312946155667305, -0.02849041111767292, 0.04386866092681885, 0.025566987693309784, -0.08150991052389145, 0.03874834254384041, 0.024719368666410446, 0.023387392982840538, -0.02551509253680706, -0.019443364813923836, -0.025480495765805244, 0.02783307433128357, -0.0241831187158823, -0.005167887546122074, -0.05542397126555443, -0.0483662374317646, 0.04943873733282089, -0.011823434382677078, -0.029995370656251907, -0.008528095670044422, -0.010621197521686554, -0.014132766984403133, -0.0024758288636803627, -0.037537459284067154, -0.009479505941271782, -0.00778426555916667, -0.007563711144030094, 0.04895438253879547, -0.027054646983742714, -0.03715689480304718, 0.05234486237168312, 0.00400889664888382, 0.018803326413035393, -0.022228403016924858, 0.042726967483758926, -0.03504649177193642, -0.006279307417571545, 0.021259693428874016, 0.011460168287158012, 0.012376981787383556, -0.026950856670737267, -0.0015860440907999873, -0.0612708181142807, 0.004222963936626911, 0.026241624727845192, -0.02048126794397831, 0.0019979614298790693, 0.053382761776447296, 0.02511722967028618, -0.011728293262422085, 0.024875052273273468, 0.05386711657047272, -0.006374448537826538, 0.003684552386403084, -0.050338249653577805, -0.008238348178565502, -0.029113152995705605, -0.06504186242818832, 0.04971550777554512, -0.025947552174329758, -0.04757051169872284, -0.05137615278363228, 0.04369567707180977, -0.031171659007668495, 0.08690699934959412, 0.05293300747871399, -0.022193806245923042, -0.019287679344415665, -0.015966393053531647, -0.01685725897550583, 0.03681092709302902, -0.00578197930008173, -0.03338585048913956, 0.025255616754293442, -0.03867914900183678, 0.0525178462266922, 0.01758379116654396, 0.02385444939136505, -0.007831836119294167, 0.012013716623187065, 0.01390788797289133, -0.0052630286663770676, -0.015187966637313366, -0.0003027214261237532, -0.02757359854876995, -0.03864455223083496, 0.03729528188705444, 0.01448738295584917, -0.0030272144358605146, -0.04923115670681, 0.00003618467235355638, -0.0038769966922700405, 0.016061535105109215, -0.026449205353856087, -0.0012660243082791567, 0.041896648705005646, -0.046532608568668365, 0.052725426852703094, 0.01956445351243019, -0.03957866504788399, 0.07099249958992004, 0.01831897161900997, 0.014651717618107796, 0.04186205193400383, -0.022885741665959358, 0.05608130991458893, 0.01338028721511364, -0.062377914786338806, 0.055769938975572586, -0.0010757423005998135, -0.0006270658341236413, -0.03227875381708145, 0.03995922952890396, -0.030670005828142166, 0.0007795076817274094, 0.05262163653969765, 0.0512031689286232, -0.02196892723441124, 0.04227720946073532, 0.010733637027442455, 0.010846076533198357, -0.05019986256957054, -0.08220184594392776, 0.0010914189042523503, -0.036707136780023575, -0.04532172530889511, 0.06355420500040054, 0.05518179386854172, -0.02013530023396015, -0.032642021775245667, -0.004536496941000223, -0.00449757557362318, 0.04532172530889511, 0.013881940394639969, 0.00769777363166213, 0.037364475429058075, -0.057603564113378525, -0.022505177184939384, 0.046463415026664734, -0.025307511910796165, 0.011494765058159828, -0.006123622413724661, -0.007196120917797089, 0.012489421293139458, -0.019616348668932915, -0.04013221338391304, 0.04404164478182793, 0.03105057030916214, 0.05286381393671036, -0.004231613129377365, -0.008471875451505184, 0.0032283079344779253, 0.03449294716119766, -0.037364475429058075, 0.04407624155282974, -0.07362185418605804, 0.0007578847580589354, 0.05362493917346001, -0.024494489654898643, -0.007269639056175947, -0.020169897004961967, -0.01774812489748001, 0.018872519955039024, 0.019028205424547195, 0.023387392982840538, 0.029216943308711052, -0.023335497826337814, -0.007732370402663946, -0.0032650670036673546, 0.03649955615401268, -0.009306522086262703, 0.040408987551927567, 0.006326877977699041, 0.04255398362874985, -0.009548699483275414, 0.0023309551179409027, 0.03418157622218132, 0.0049300347454845905, 0.04127390682697296, 0.06009453162550926, -0.06289686262607574, -0.01982392929494381, -0.02890557236969471, 0.0202390905469656, 0.011079604737460613, -0.02369876392185688, -0.02617243118584156, -0.03532326593995094, -0.0011276373406872153, -0.007057734299451113, 0.03871374577283859, 0.008363761007785797, -0.04822785034775734, 0.0241831187158823, -0.038263991475105286, -0.05943719297647476, 0.010482811369001865, 0.025549689307808876, 0.023992836475372314, -0.054386068135499954, 0.010776882991194725, 0.03549624979496002, 0.01733296550810337, 0.02055046148598194, -0.022349491715431213, 0.04559849947690964, -0.06317363679409027, -0.006551756989210844, 0.04750131815671921, 0.004804621916264296, -0.001002224162220955, -0.013657061383128166, -0.05836469307541847, 0.031500328332185745, 0.02146727405488491, 0.07825781404972076, -0.07431378960609436, -0.00267476006411016, 0.011252588592469692, 0.12987615168094635, -0.0003789423790294677, 0.027141138911247253, 0.02890557236969471, 0.07182282209396362, -0.02930343523621559, 0.047120753675699234, -0.014262503944337368, 0.017955705523490906, 0.015248510986566544, -0.016727522015571594, -0.07279153168201447, -0.006456615868955851, -0.046048253774642944, 0.014366294257342815, 0.02113860473036766, 0.024338804185390472, -0.039198100566864014, -0.031431134790182114, 0.04774349555373192, 0.009341118857264519, -0.08351652324199677, -0.015378248877823353, -0.006391746923327446, 0.03809100762009621, 0.02013530023396015, -0.039198100566864014, -0.05293300747871399, -0.013639762997627258, -0.026241624727845192, -0.021934330463409424, -0.04829704388976097, -0.09514102339744568, 0.05563155189156532, 0.0551471970975399, -0.011235290206968784, -0.026708679273724556, 0.007542088627815247, 0.021017517894506454, -0.009911964647471905, -0.019945017993450165, -0.011788837611675262, 0.0650072693824768, 0.06050968915224075, -0.02205541916191578, -0.04473358020186424, -0.0025320486165583134, -0.013821396045386791, 0.028594201430678368, 0.015888551250100136, 0.04210422933101654, -0.060751866549253464, 0.026137834414839745, 0.055942922830581665, -0.027954163029789925, -0.00392240472137928, -0.03812560439109802, 0.08192507177591324, -0.04829704388976097, -0.05857227370142937, -0.010906620882451534, -0.06303524971008301, -0.07666637003421783, 0.05096099153161049, 0.04798567295074463, 0.017211876809597015, 0.002542860107496381, 0.012965126894414425, -0.08849845081567764, -0.025255616754293442, -0.027314122766256332, 0.018941713497042656, -0.009297872893512249, -0.046359624713659286, 0.014444136992096901, 0.01677076704800129, -0.006504186429083347, -0.01626911573112011, 0.01727242022752762, -0.010110896080732346, 0.017627036198973656, 0.018959011882543564, 0.008363761007785797, -0.00892595760524273, 0.006560406181961298, 0.027729284018278122, 0.017730826511979103, -0.07798103988170624, -0.04798567295074463, 0.02312791720032692, 0.0031223553232848644, -0.027210332453250885, 0.007507491856813431, -0.007939950563013554, -0.005954963155090809, 0.01485929824411869, 0.019010907039046288, 0.0020563434809446335, -0.033801011741161346, 0.009098941460251808, -0.018716834485530853, 0.03542705625295639, -0.02056775987148285, 0.03591141104698181, -0.09659408777952194, 0.005695487838238478, 0.029113152995705605, -0.06185896322131157, 0.013639762997627258, 0.05262163653969765, -0.002746115904301405, 0.02693355828523636, 0.0012422390282154083, -0.02682976797223091, -0.024148521944880486, -0.014971737749874592, -0.0011362865334376693, -0.01503228209912777, 0.0376412495970726, -0.024304207414388657, -0.02568807639181614, 0.023162513971328735, 0.010560653172433376, -0.023145215585827827, -0.0016011801781132817, 0.013726254925131798, -0.02949371747672558, -0.020775340497493744, -0.024563683196902275, 0.02857690304517746, -0.005864146631211042, -0.006906373426318169, 0.06376178562641144, 0.011710994876921177, -0.03726068511605263, 0.030497021973133087, -0.018388165161013603, 0.003699688473716378, -0.05770735442638397, -0.06012912839651108, 0.03957866504788399, 0.04359188675880432, -0.001260618562810123, 0.014919842593371868, 0.011883978731930256, 0.013657061383128166, -0.015300406143069267, 0.006953943986445665, 0.04044358432292938, 0.03321286663413048, -0.07694314420223236, 0.016070183366537094, 0.0689167007803917, -0.07957249134778976, -0.03272851184010506, -0.0032369571272283792, -0.03253823146224022, 0.02700275182723999, 0.012299139983952045, 0.023179812356829643, -0.004359188489615917, 0.05175671726465225, 0.0041667441837489605, -0.06556081771850586, -0.06684089452028275, -0.036534152925014496, -0.010335775092244148, -0.008480524644255638, -0.025324810296297073, -0.002970994682982564, 0.002190405735746026, 0.03791802376508713, -0.07258395105600357, -0.058433886617422104, 0.06819016486406326, 0.021242395043373108, 0.004536496941000223, -0.011650450527668, 0.005254379473626614, 0.02229759655892849, 0.02766009047627449, -0.0019417417934164405, -0.07382943481206894, 0.024494489654898643, 0.010733637027442455, -0.010967165231704712, 0.0037191491574048996, -0.024425296112895012, 0.017557842656970024, 0.021588362753391266, 0.0028758535627275705, 0.095832958817482, 0.01428845152258873, 0.0024131222162395716, 0.08455441892147064, 0.04255398362874985, -0.032659318298101425, 0.005980910733342171, 0.04833164066076279, 0.020861832424998283, 0.009626541286706924, -0.03715689480304718, -0.04559849947690964, 0.05905662849545479, 0.030029967427253723, 0.022280298173427582, -0.002428258303552866, -0.006685819011181593, 0.005539802368730307, -0.014919842593371868, -0.001752540934830904, -0.015378248877823353, -0.026812469586730003, -0.015559881925582886, -0.04947333410382271, -0.05109937861561775, 0.014098170213401318, -0.06241251155734062, 0.027279525995254517, -0.024805858731269836, 0.009271925315260887, 0.00415160832926631, -0.005864146631211042, 0.09022828936576843, 0.03812560439109802, 0.020360179245471954, 0.012722949497401714, -0.017229175195097923, -0.025826463475823402, -0.0013633276103064418, -0.007797239348292351, 0.014997685328125954, -0.04386866092681885, 0.01857844740152359, -0.01709078811109066, -0.07555927336215973, -0.010724987834692001, 0.0320538766682148, -0.02072344534099102, 0.026449205353856087, 0.036118991672992706, 0.009877367876470089, 0.029926177114248276, 0.028265533968806267, 0.04542551562190056, -0.005885769613087177, 0.03540975973010063, 0.0396132618188858, 0.011425572447478771, 0.021899733692407608, 0.009055695496499538, 0.0040543051436543465, -0.00011784513480961323, -0.054870422929525375, -0.007464245893061161, -0.050753410905599594, -0.007178822532296181, 0.06348501145839691, -0.0025320486165583134, -0.0417928583920002, -0.009047046303749084, -0.048746801912784576, 0.11306213587522507, -0.0009449233766645193, 0.055043406784534454, 0.015819357708096504, 0.018267076462507248, -0.018543850630521774, 0.008285918273031712, 0.04303833842277527, -0.018388165161013603, 0.026362713426351547, 0.01635560765862465, -0.0031850619707256556, -0.002389337169006467, -0.005872795823961496, -0.06708306819200516, 0.012065611779689789, 0.013138110749423504, -0.010949866846203804, -0.10254472494125366, -0.06722145527601242, 0.005090044811367989, -0.032088473439216614, 0.010716338641941547, -0.01659778319299221, -0.009886017069220543, 0.033403147011995316, 0.02105211466550827, -0.06089025363326073, 0.01016279123723507, -0.03321286663413048, -0.07410620898008347, 0.018353568390011787, 0.04293454810976982, 0.03418157622218132, 0.0010622278787195683, -0.0019384983461350203, -0.0560121163725853, 0.0044802771881222725, 0.030375933274626732, -0.008696754463016987, -0.04549470916390419, -0.014271153137087822, -0.01675346866250038, -0.007278288248926401, -0.06798258423805237, 0.03535786271095276, -0.021588362753391266, -0.012186700478196144, -0.01556853111833334, -0.01833627000451088, 0.0022444631904363632, 0.04957712069153786, 0.036949314177036285, -0.047362931072711945, -0.035634636878967285, -0.05871066078543663, 0.0009708708967082202, 0.015646373853087425, -0.013138110749423504, 0.007191796321421862, 0.02599944733083248, -0.08801409602165222, 0.0058511728420853615, 0.00257961917668581, 0.010923919267952442, 0.042657773941755295, 0.07901894301176071, -0.046048253774642944, 0.0265875905752182, -0.006819881498813629, 0.006504186429083347, -0.030618110671639442, -0.03899051994085312, -0.0283347275108099, 0.058087918907403946, -0.008450252935290337, 0.005228431895375252, -0.01785191521048546, 0.035375162959098816, 0.052552442997694016, -0.042173419147729874, 0.012238595634698868, -0.07874216884374619, -0.05179131403565407, 0.004372162278741598, 0.0029601831920444965, -0.020931025967001915, -0.02212461270391941, -0.003913755528628826, -0.02542860060930252, 0.04601365700364113, -0.03715689480304718, 0.0999845638871193, -0.03212307021021843, -0.02181324176490307, -0.034406453371047974, -0.033645324409008026, 0.07272233814001083, -0.004279183689504862, -0.02511722967028618, 0.002754765097051859, 0.02080993726849556, 0.03388750180602074, -0.04175826162099838, 0.019356872886419296, 0.012082910165190697, 0.012299139983952045, 0.06334662437438965, -0.020446671172976494, 0.0702313706278801, -0.025134528055787086, -0.025618882849812508, -0.013527323491871357, -0.015585829503834248, -0.02022179216146469, 0.014971737749874592, 0.043730273842811584, -0.07244556397199631, -0.050753410905599594, -0.0002590700751170516, 0.05608130991458893, -0.0029061257373541594, -0.03947487473487854, -0.011572607792913914, -0.006707441993057728, -0.026881663128733635, -0.029995370656251907, -0.06504186242818832, -0.08413926512002945, 0.030600812286138535, -0.010716338641941547, -0.014807403087615967, 0.03791802376508713, 0.011555309407413006, 0.019547155126929283, 0.029182346537709236, -0.05262163653969765, 0.010906620882451534, -0.0022855468560010195, -0.01609613187611103, 0.0015017145778983831, 0.0028607177082449198, 0.013068917207419872, -0.026137834414839745, 0.012783493846654892, 0.03449294716119766, -0.007870757021009922, 0.0396132618188858, 0.060648076236248016, 0.013700307346880436, 0.015966393053531647, -0.0067636617459356785, -0.03570383042097092, -0.02387174777686596, 0.011062306351959705, 0.052379459142684937, -0.0022401385940611362, -0.00022487877868115902, 0.05103018507361412, -0.03288419917225838, -0.015871252864599228, -0.013345690444111824, -0.015118774026632309, 0.04601365700364113, 0.03492540493607521, -0.03404318913817406, -0.0020866156555712223, 0.002432582899928093, 0.021104007959365845, 0.029043959453701973, -0.05905662849545479, 0.01346677914261818, -0.03598060458898544, -0.019304977729916573, -0.028109848499298096, 0.03388750180602074, -0.05365953594446182, 0.018197882920503616, 0.022090015932917595, 0.04386866092681885, -0.0028888273518532515, 0.005128966178745031, 0.017817318439483643, 0.03899051994085312, 0.042415596544742584, 0.004086739383637905, 0.02048126794397831, 0.01346677914261818, 0.02131158858537674, 0.07203040271997452, -0.03359343111515045, 0.053140588104724884, -0.018595745787024498, -0.021328886970877647, 0.02247058041393757, -0.034406453371047974, 0.045217934995889664, 0.033333953469991684, -0.004882464185357094, 0.04428382217884064, 0.059817757457494736, -0.02542860060930252, -0.030237548053264618, -0.002737466711550951, 0.024840455502271652, 0.05936799943447113, -0.03954406827688217, -0.09894666820764542, -0.06618355214595795, -0.013812746852636337, -0.037779636681079865, 0.035565443336963654, 0.056531067937612534, -0.03729528188705444, 0.033645324409008026 ]
9,570
asyncclick.types
ParamType
Represents the type of a parameter. Validates and converts values from the command line or Python into the correct type. To implement a custom type, subclass and implement at least the following: - The :attr:`name` class attribute must be set. - Calling an instance of the type with ``None`` must return ``None``. This is already implemented by default. - :meth:`convert` must convert string values to the correct type. - :meth:`convert` must accept values that are already the correct type. - It must be able to convert a value if the ``ctx`` and ``param`` arguments are ``None``. This can occur when converting prompt input.
class ParamType: """Represents the type of a parameter. Validates and converts values from the command line or Python into the correct type. To implement a custom type, subclass and implement at least the following: - The :attr:`name` class attribute must be set. - Calling an instance of the type with ``None`` must return ``None``. This is already implemented by default. - :meth:`convert` must convert string values to the correct type. - :meth:`convert` must accept values that are already the correct type. - It must be able to convert a value if the ``ctx`` and ``param`` arguments are ``None``. This can occur when converting prompt input. """ is_composite: t.ClassVar[bool] = False arity: t.ClassVar[int] = 1 #: the descriptive name of this type name: str #: if a list of this type is expected and the value is pulled from a #: string environment variable, this is what splits it up. `None` #: means any whitespace. For all parameters the general rule is that #: whitespace splits them up. The exception are paths and files which #: are split by ``os.path.pathsep`` by default (":" on Unix and ";" on #: Windows). envvar_list_splitter: t.ClassVar[t.Optional[str]] = None async def to_info_dict(self) -> t.Dict[str, t.Any]: """Gather information that could be useful for a tool generating user-facing documentation. Use :meth:`click.Context.to_info_dict` to traverse the entire CLI structure. .. versionadded:: 8.0 """ # The class name without the "ParamType" suffix. param_type = type(self).__name__.partition("ParamType")[0] param_type = param_type.partition("ParameterType")[0] # Custom subclasses might not remember to set a name. if hasattr(self, "name"): name = self.name else: name = param_type return {"param_type": param_type, "name": name} def __call__( self, value: t.Any, param: t.Optional["Parameter"] = None, ctx: t.Optional["Context"] = None, ) -> t.Any: if value is not None: return self.convert(value, param, ctx) def get_metavar(self, param: "Parameter") -> t.Optional[str]: """Returns the metavar default for this param if it provides one.""" def get_missing_message(self, param: "Parameter") -> t.Optional[str]: """Optionally might return extra information about a missing parameter. .. versionadded:: 2.0 """ def convert( self, value: t.Any, param: t.Optional["Parameter"], ctx: t.Optional["Context"] ) -> t.Any: """Convert the value to the correct type. This is not called if the value is ``None`` (the missing value). This must accept string values from the command line, as well as values that are already the correct type. It may also convert other compatible types. The ``param`` and ``ctx`` arguments may be ``None`` in certain situations, such as when converting prompt input. If the value cannot be converted, call :meth:`fail` with a descriptive message. :param value: The value to convert. :param param: The parameter that is using this type to convert its value. May be ``None``. :param ctx: The current context that arrived at this value. May be ``None``. """ return value def split_envvar_value(self, rv: str) -> t.Sequence[str]: """Given a value from an environment variable this splits it up into small chunks depending on the defined envvar list splitter. If the splitter is set to `None`, which means that whitespace splits, then leading and trailing whitespace is ignored. Otherwise, leading and trailing splitters usually lead to empty items being included. """ return (rv or "").split(self.envvar_list_splitter) def fail( self, message: str, param: t.Optional["Parameter"] = None, ctx: t.Optional["Context"] = None, ) -> "t.NoReturn": """Helper method to fail with an invalid value message.""" raise BadParameter(message, ctx=ctx, param=param) def shell_complete( self, ctx: "Context", param: "Parameter", incomplete: str ) -> t.List["CompletionItem"]: """Return a list of :class:`~click.shell_completion.CompletionItem` objects for the incomplete value. Most types do not provide completions, but some do, and this allows custom types to provide custom completions as well. :param ctx: Invocation context for this command. :param param: The parameter that is requesting completion. :param incomplete: Value being completed. May be empty. .. versionadded:: 8.0 """ return []
()
[ 0.06397008150815964, -0.00659601716324687, -0.029892370104789734, -0.03340066969394684, 0.06930433958768845, -0.03202607482671738, 0.01648491434752941, -0.012761190533638, -0.00294666551053524, -0.05814342945814133, -0.004172519315034151, 0.037380848079919815, 0.006026687566190958, -0.00021285747061483562, -0.03303137794137001, 0.04521810635924339, 0.023183513432741165, 0.06983776390552521, 0.028168993070721626, 0.0017105534207075834, 0.04755697399377823, 0.021603751927614212, -0.001625923323445022, 0.00468542892485857, 0.013027903623878956, -0.04632599279284477, 0.07550028711557388, -0.036252450197935104, -0.036272965371608734, -0.04911622032523155, -0.02221924252808094, -0.022075628861784935, -0.029871853068470955, 0.023491257801651955, 0.021172907203435898, -0.027656083926558495, -0.028989648446440697, 0.09322644770145416, -0.03216968849301338, -0.042099617421627045, -0.056009724736213684, 0.009627312421798706, -0.0010194077622145414, -0.045669469982385635, 0.013356165029108524, -0.006385724060237408, -0.017469700425863266, 0.030795089900493622, -0.09503188729286194, -0.012709898874163628, 0.03633451461791992, -0.048459697514772415, 0.011427625082433224, 0.0035057368222624063, -0.03424184396862984, 0.03498043119907379, 0.03701155632734299, 0.016761884093284607, -0.001295737805776298, 0.03614986687898636, 0.011981567367911339, 0.06868884712457657, 0.0013502344954758883, -0.005370163358747959, -0.0015464223688468337, -0.004518733359873295, -0.007555157877504826, -0.021254973486065865, -0.011827695183455944, 0.04743387550115585, -0.0038596445228904486, -0.03664226084947586, -0.033216025680303574, 0.02529669925570488, 0.06725270301103592, -0.03641657903790474, -0.041012249886989594, -0.007688514422625303, 0.03518559783697128, -0.028148477897047997, 0.03731929883360863, 0.03143109753727913, -0.026794396340847015, -0.06368285417556763, -0.0037468045484274626, 0.02892809920012951, -0.04829556494951248, -0.009340083226561546, 0.022280791774392128, 0.02002399042248726, -0.0705353245139122, -0.018946880474686623, -0.019285399466753006, 0.051537152379751205, 0.013007386587560177, -0.06339562684297562, 0.008201424032449722, -0.07074049115180969, -0.07205353677272797, -0.017274795100092888, 0.009345212019979954, 0.00042571494122967124, 0.05395808815956116, -0.01650542952120304, 0.03440597280859947, -0.038468219339847565, -0.01139685045927763, 0.037688594311475754, 0.02472224086523056, 0.02919481322169304, -0.05079856514930725, -0.030446311458945274, -0.06848368793725967, -0.024537593126296997, -0.016710594296455383, 0.0323953703045845, -0.027943313121795654, -0.027922797948122025, -0.018372420221567154, 0.006365207955241203, 0.013304874300956726, 0.052398841828107834, -0.014946185052394867, -0.007780838292092085, 0.05362982675433159, 0.029625656083226204, -0.019080236554145813, 0.0021567847579717636, -0.034057196229696274, 0.015695033594965935, 0.016310524195432663, 0.011612272821366787, -0.03742188215255737, 0.040130045264959335, 0.013858816586434841, 0.02665078081190586, -0.05276813730597496, 0.04353576526045799, -0.0327441468834877, 0.04882899299263954, 0.045669469982385635, 0.03241588547825813, 0.005929234437644482, -0.08054731786251068, 0.012032859027385712, -0.04690045118331909, 0.03272363170981407, -0.0577741339802742, -0.047885239124298096, 0.06815542280673981, -0.03426235914230347, -0.03852976858615875, -0.022834734991192818, 0.023799004033207893, 0.03725774958729744, 0.009242630563676357, -0.002591475611552596, -0.06245186924934387, -0.004659783560782671, -0.03945300355553627, -0.026260970160365105, -0.047926269471645355, 0.0403146930038929, -0.008770753629505634, 0.04004798084497452, 0.07020705938339233, -0.0039006771985441446, 0.011294269002974033, -0.017151696607470512, 0.001428453135304153, -0.011909760534763336, -0.02328609488904476, 0.0023875939659774303, 0.019972698763012886, 0.046531155705451965, 0.06249290332198143, -0.006201076786965132, 0.002002911875024438, 0.04923931881785393, -0.05075753107666969, -0.0033621222246438265, -0.020506124943494797, -0.04193548485636711, -0.0027363726403564215, 0.06524209678173065, 0.032928794622421265, 0.008339909836649895, 0.023840036243200302, -0.014812828041613102, -0.003110796445980668, -0.006919150240719318, 0.016156651079654694, 0.05687141418457031, 0.04435642063617706, -0.03721671923995018, 0.0178800281137228, -0.03340066969394684, 0.02109084092080593, 0.04353576526045799, 0.009770927019417286, -0.00889385212212801, 0.023716937750577927, 0.0522347092628479, 0.009258017875254154, -0.0007610296015627682, -0.009904284030199051, 0.05408118665218353, -0.0017913366900756955, -0.01782873645424843, -0.06335458904504776, -0.053219497203826904, -0.05699451267719269, 0.009334954433143139, 0.015141090378165245, 0.012104665860533714, -0.12088252604007721, 0.03299034386873245, -0.021213939413428307, 0.007924453355371952, 0.014115271158516407, 0.1126759722828865, 0.036560192704200745, 0.042920272797346115, 0.003744239918887615, 0.08739978820085526, -0.038283571600914, 0.018823781982064247, -0.013961398974061012, -0.009950445964932442, 0.004421280696988106, -0.006965312175452709, -0.05338362976908684, -0.008847690187394619, 0.043987125158309937, -0.0483776293694973, -0.016136135905981064, 0.029933402314782143, -0.010924973525106907, -0.06721167266368866, -0.0167926587164402, 0.015787357464432716, 0.025358248502016068, -0.04575153440237045, 0.024886371567845345, -0.05506597086787224, -0.017161954194307327, 0.022321823984384537, 0.04300233721733093, 0.00951447244733572, -0.0000711261309334077, 0.015612967312335968, 0.0026337907183915377, -0.015695033594965935, -0.017315827310085297, -0.04361782968044281, 0.002501716371625662, -0.048705894500017166, -0.04640805721282959, 0.030754057690501213, 0.0017951835179701447, -0.012391895055770874, -0.02944101020693779, 0.018977655097842216, 0.1357363909482956, 0.00066101219272241, -0.04156619310379028, 0.027676600962877274, -0.025399282574653625, -0.0020901064854115248, -0.0035442051012068987, 0.009155435487627983, 0.023409193381667137, -0.018115965649485588, 0.015212898142635822, -0.04411022365093231, 0.03838615119457245, 0.009663216769695282, -0.008734850212931633, 0.014505082741379738, -0.016864467412233353, 0.021213939413428307, -0.05867685377597809, 0.018105708062648773, -0.019172560423612595, -0.024886371567845345, 0.03415977582335472, -0.006026687566190958, -0.00415456760674715, -0.032374851405620575, 0.05001894012093544, 0.007734676357358694, 0.022875767201185226, 0.04562843590974808, -0.007508995942771435, 0.056543152779340744, 0.04246891289949417, -0.08912316709756851, -0.030959222465753555, 0.02810744382441044, -0.11021400988101959, 0.026814913377165794, 0.01555141806602478, 0.013356165029108524, -0.021726850420236588, -0.027676600962877274, -0.010924973525106907, 0.021337037906050682, -0.04919828474521637, -0.010760842822492123, 0.009391373954713345, 0.005590714514255524, 0.054040152579545975, -0.012627833522856236, 0.019305916503071785, 0.02640458568930626, 0.0308156069368124, 0.027574019506573677, -0.05083959549665451, 0.002982569159939885, 0.050388235598802567, -0.021029291674494743, -0.008196295239031315, 0.05120889097452164, -0.03452907130122185, 0.022034594789147377, 0.00618056021630764, -0.012155956588685513, 0.021316522732377052, 0.029276877641677856, 0.004505910445004702, -0.01386907510459423, 0.05338362976908684, -0.00825271476060152, -0.00186057947576046, 0.014074238948523998, 0.0024568368680775166, 0.01334590744227171, 0.02605580724775791, 0.014689730480313301, -0.024045201018452644, 0.03748343139886856, -0.02111135795712471, -0.03500095009803772, -0.009114403277635574, -0.0052932268008589745, -0.011755887418985367, 0.062041543424129486, 0.028251059353351593, 0.128596693277359, -0.02418881468474865, 0.010283837094902992, -0.006693469826132059, -0.008827174082398415, 0.014617922715842724, 0.04575153440237045, -0.06938640773296356, -0.008570718578994274, -0.05190644785761833, 0.015602708794176579, -0.04796730354428291, 0.06023610010743141, -0.015007734298706055, 0.003975049126893282, 0.01830061338841915, -0.01348952203989029, -0.02726627327501774, 0.005498390644788742, -0.03924784064292908, 0.04230478033423424, 0.03366738557815552, 0.027122657746076584, -0.04205858334898949, 0.012843255884945393, -0.08136797696352005, -0.0012457291595637798, 0.008509170264005661, 0.01333564892411232, 0.007909066043794155, -0.06298529356718063, 0.028661387041211128, 0.056009724736213684, 0.00066101219272241, -0.00030486061586998403, 0.023450225591659546, -0.037380848079919815, -0.036211416125297546, 0.01878274790942669, -0.0011457117507234216, -0.011909760534763336, 0.03508301451802254, -0.014894894324243069, 0.01570529118180275, 0.01858784258365631, 0.01944953016936779, 0.03834512084722519, -0.019346948713064194, -0.023470742627978325, 0.01796209253370762, -0.03861183300614357, 0.015007734298706055, 0.029502559453248978, -0.03448804095387459, 0.05584559589624405, 0.030118050053715706, 0.013807525858283043, -0.015900196507573128, 0.05551733076572418, 0.011878985911607742, -0.05215264484286308, 0.038468219339847565, 0.006478047929704189, -0.025460831820964813, -0.033995646983385086, -0.021870464086532593, -0.0007199968094937503, -0.009550375863909721, -0.029523074626922607, 0.038242537528276443, 0.017264535650610924, -0.008852818980813026, 0.01222776435315609, -0.008360425941646099, 0.015171865001320839, 0.07476169615983963, 0.05338362976908684, 0.07250490039587021, -0.003674997016787529, 0.024640176445245743, -0.0013386940117925406, -0.04497191309928894, -0.01719272881746292, 0.041791871190071106, -0.04657218977808952, -0.08452749997377396, -0.010740326717495918, -0.009996607899665833, -0.02217821031808853, -0.0743924081325531, 0.07373587787151337, 0.033195506781339645, -0.05990783870220184, 0.02472224086523056, 0.02831260859966278, 0.04591566324234009, 0.017008081078529358, -0.02720472402870655, -0.034898366779088974, 0.04776214063167572, -0.01013509277254343, -0.04296130686998367, -0.00008286695083370432, 0.03756549581885338, 0.07238180190324783, -0.05309639871120453, -0.017859511077404022, -0.07980872690677643, -0.07209456712007523, 0.01774667203426361, 0.006175431422889233, 0.005090627353638411, 0.06860678642988205, 0.00856046099215746, -0.017408151179552078, -0.039063192903995514, -0.01656697876751423, 0.015910454094409943, 0.06470867246389389, 0.0012681689113378525, -0.023183513432741165, 0.022014079615473747, -0.025440314784646034, 0.014176820404827595, 0.013222808949649334, 0.04800833761692047, 0.003541640704497695, 0.03116438537836075, 0.05481977388262749, -0.020526641979813576, -0.07262799888849258, -0.03278518095612526, 0.06392905116081238, -0.012915062718093395, 0.0493624173104763, 0.050716497004032135, -0.043166469782590866, 0.02472224086523056, 0.0505523681640625, 0.021480653434991837, 0.028538288548588753, -0.011745628900825977, -0.07188940793275833, 0.0244350116699934, 0.027327822521328926, 0.02363487333059311, -0.006149785593152046, -0.02113187499344349, 0.01625923439860344, -0.007308961357921362, -0.004798268899321556, -0.012627833522856236, 0.03949403762817383, 0.02015734650194645, 0.002359383972361684, -0.038468219339847565, 0.06540622562170029, -0.062821164727211, -0.01111987978219986, 0.0076269651763141155, -0.05888202041387558, -0.021603751927614212, -0.04993687570095062, 0.018751973286271095, 0.07348968088626862, -0.03493940085172653, -0.01601303741335869, -0.007196121383458376, 0.021172907203435898, 0.0005132301594130695, 0.008950271643698215, -0.030733542516827583, -0.06397008150815964, 0.006513951811939478, 0.018669908866286278, -0.02308093011379242, -0.003380074165761471, 0.01526418887078762, -0.03797582536935806, -0.03134903311729431, 0.04156619310379028, 0.03058992698788643, 0.052398841828107834, -0.02254750393331051, 0.022157693281769753, -0.0036442226264625788, 0.04105328395962715, 0.014423017390072346, -0.04726974666118622, 0.04521810635924339, -0.003251846646890044, 0.00778596755117178, 0.024783790111541748, 0.04993687570095062, -0.05252194032073021, 0.054327383637428284, 0.014094755053520203, -0.00017470982857048512, 0.0335853174328804, 0.005898460280150175, -0.057076577097177505, -0.01889558881521225, -0.03247743472456932, -0.003105667419731617, -0.022301308810710907, 0.038160473108291626, -0.08969762921333313, -0.019418755546212196, 0.03754498064517975, -0.012022600509226322, 0.05268607288599014, 0.02137807011604309, -0.010283837094902992, 0.0416482575237751, -0.05166025087237358, -0.01801338419318199, 0.03331860527396202, 0.007611577864736319, -0.0032851858995854855, 0.026814913377165794, -0.02197304554283619, -0.03438545763492584, 0.028127960860729218, -0.030671993270516396, 0.006857600994408131, -0.004798268899321556, 0.016587495803833008, 0.049034155905246735, 0.003008214756846428, 0.029646173119544983, -0.03157471492886543, -0.01568477414548397, -0.004498216789215803, 0.03834512084722519, -0.06528312712907791, -0.051537152379751205, -0.012781706638634205, -0.0011771274730563164, 0.013571587391197681, -0.013807525858283043, -0.03805788978934288, -0.005005997605621815, -0.044643647968769073, 0.061015721410512924, 0.0043110051192343235, 0.0012380355037748814, -0.006088236812502146, -0.0031031030230224133, 0.0165464635938406, 0.008729720488190651, 0.03052837774157524, -0.021829431876540184, -0.04747490957379341, -0.000396543211536482, -0.013797267340123653, 0.013581845909357071, 0.046284958720207214, -0.0045212977565824986, -0.01849551871418953, -0.01782873645424843, -0.019788051024079323, 0.02017786353826523, 0.05802033096551895, -0.03998643159866333, -0.010648002848029137, 0.016782401129603386, -0.03578057140111923, 0.008401459082961082, -0.02330661192536354, -0.003277492243796587, 0.06938640773296356, -0.03631399944424629, -0.02634303644299507, 0.02773815020918846, 0.02420933172106743, -0.009155435487627983, -0.03418029472231865, -0.0008020623354241252, -0.05280917137861252, -0.05445048213005066, -0.00946831051260233, -0.06971467286348343, 0.02281421795487404, -0.008586105890572071, 0.013961398974061012, -0.016443880274891853, 0.01429991889744997, -0.05108579248189926, -0.0015797615051269531, -0.06265703588724136, 0.016864467412233353, 0.04205858334898949, -0.01140710897743702, -0.04341266676783562, -0.030179599300026894, 0.05211161449551582, -0.006744761019945145, 0.005229113157838583, -0.009709377773106098, -0.05219367891550064, 0.047926269471645355, 0.019234109669923782, 0.015848906710743904, 0.11111672967672348, -0.014802570454776287, -0.03935042396187782, 0.006503693293780088, 0.001392549485899508, -0.023552807047963142, 0.02724575623869896, 0.0029235845431685448, 0.011776403523981571, -0.029892370104789734, -0.005652263294905424, 0.031000254675745964, -0.008268102072179317, -0.03834512084722519, -0.019377723336219788, -0.014494824223220348, -0.013120226562023163, 0.051537152379751205, 0.024393979460000992, 0.02078309655189514, -0.040417272597551346, 0.03395461291074753, -0.015787357464432716, -0.0493624173104763, -0.024024683982133865, -0.0016490042908117175, 0.03894009441137314, 0.002459401497617364, -0.009642699733376503, -0.03362635150551796, -0.02252698875963688, -0.0616312138736248, 0.02862035483121872, -0.005154740996658802, -0.0122175058349967, 0.016166910529136658, -0.017069630324840546, -0.003939145710319281, -0.11825643479824066, -0.004128922242671251, 0.0007783402688801289, -0.012945837341248989, -0.006683211773633957, -0.07406414300203323, -0.05051133409142494, -0.03163626417517662, -0.09650906175374985, -0.004854688886553049, 0.01732608489692211, 0.03578057140111923, -0.06278013437986374, -0.01583864726126194, 0.02024967037141323, 0.011140395887196064, 0.0539170540869236, -0.011827695183455944, -0.01663878746330738, 0.043740928173065186, -0.032682597637176514, 0.04583359882235527, 0.03949403762817383, -0.003421106841415167, -0.09117480367422104, 0.007847516797482967, 0.0024760710075497627, 0.014812828041613102, 0.05695347860455513, -0.022055111825466156, -0.003354428568854928, 0.002074719173833728, 0.013879332691431046, 0.09782211482524872, -0.0025427492801100016, 0.06425730884075165, 0.017377376556396484, -0.043248534202575684, -0.013776751235127449, 0.058758921921253204, -0.025419797748327255, 0.005131660494953394, 0.01168407965451479, -0.051537152379751205, 0.017428668215870857, 0.040950700640678406, -0.04191496968269348, 0.04841866344213486, -0.010068414732813835, -0.017397893592715263, 0.013858816586434841, -0.032087624073028564, 0.060400232672691345, -0.03547282516956329, -0.03379048407077789, 0.017038855701684952, 0.02995391935110092, 0.025768576189875603, -0.016628528013825417, 0.061549149453639984, -0.05781516805291176, 0.013694685883820057, -0.022055111825466156, -0.049034155905246735, 0.02671233005821705, 0.05691244453191757, -0.03143109753727913, 0.030384762212634087, 0.04109431430697441, -0.047926269471645355, -0.039063192903995514, -0.060441263020038605, -0.005085498560220003, 0.009724765084683895, -0.01900842785835266, 0.050142038613557816, 0.031307999044656754, -0.039535071700811386, 0.02527618408203125 ]
9,572
asyncclick.types
convert
Convert the value to the correct type. This is not called if the value is ``None`` (the missing value). This must accept string values from the command line, as well as values that are already the correct type. It may also convert other compatible types. The ``param`` and ``ctx`` arguments may be ``None`` in certain situations, such as when converting prompt input. If the value cannot be converted, call :meth:`fail` with a descriptive message. :param value: The value to convert. :param param: The parameter that is using this type to convert its value. May be ``None``. :param ctx: The current context that arrived at this value. May be ``None``.
def convert( self, value: t.Any, param: t.Optional["Parameter"], ctx: t.Optional["Context"] ) -> t.Any: """Convert the value to the correct type. This is not called if the value is ``None`` (the missing value). This must accept string values from the command line, as well as values that are already the correct type. It may also convert other compatible types. The ``param`` and ``ctx`` arguments may be ``None`` in certain situations, such as when converting prompt input. If the value cannot be converted, call :meth:`fail` with a descriptive message. :param value: The value to convert. :param param: The parameter that is using this type to convert its value. May be ``None``. :param ctx: The current context that arrived at this value. May be ``None``. """ return value
(self, value: Any, param: Optional[ForwardRef('Parameter')], ctx: Optional[ForwardRef('Context')]) -> Any
[ 0.0436997152864933, 0.017998119816184044, 0.04853189364075661, -0.011704030446708202, -0.0036153809633105993, -0.025316420942544937, 0.010706080123782158, 0.038587406277656555, 0.008828357793390751, -0.021289603784680367, 0.007226385176181793, 0.049757447093725204, 0.006119010504335165, 0.0005350851570256054, -0.00005590901128016412, 0.060822438448667526, -0.021237080916762352, 0.07738491147756577, 0.05084293708205223, 0.004880326800048351, 0.013664914295077324, -0.0014717576559633017, 0.007480249740183353, 0.03778204321861267, 0.0015374122885987163, -0.07696472108364105, 0.059701934456825256, -0.022672727704048157, -0.0941924899816513, 0.011625244282186031, -0.01843581721186638, -0.006088371854275465, 0.013323510996997356, 0.005007259082049131, 0.007646574638783932, 0.027312321588397026, -0.06645998358726501, 0.05280382186174393, -0.0918114185333252, -0.04555555060505867, -0.07108207046985626, 0.028275255113840103, -0.03196942061185837, 0.026261847466230392, -0.007418971974402666, -0.0067843105643987656, -0.04583567753434181, 0.026174308732151985, -0.09195148199796677, 0.026944655925035477, 0.00681057246401906, -0.060927487909793854, 0.017893072217702866, 0.00902532134205103, -0.011966648511588573, 0.028572890907526016, 0.0014914540806785226, 0.023635663092136383, 0.014601587317883968, 0.035961221903562546, 0.031181566417217255, 0.04156374931335449, -0.0014203282771632075, -0.027679987251758575, 0.05259372666478157, 0.0151180699467659, 0.019258689135313034, -0.012255528941750526, -0.03235459700226784, 0.04608078673481941, -0.02235758677124977, -0.06610982120037079, -0.04916217923164368, 0.03375522792339325, 0.07153727114200592, -0.004862818866968155, -0.02346058376133442, 0.04121359437704086, 0.0042653619311749935, 0.0216047465801239, 0.07297292351722717, 0.027942605316638947, -0.003985235467553139, -0.04867195710539818, -0.015389442443847656, 0.0111700389534235, -0.09678366035223007, -0.006744917947798967, 0.01066230982542038, 0.06695020198822021, 0.003149233292788267, -0.10140574723482132, -0.020239129662513733, 0.03956785053014755, 0.02433597855269909, -0.013253479264676571, 0.02925569750368595, -0.03806217014789581, 0.0007648763130418956, -0.013087154366075993, -0.0038298526778817177, -0.0030595052521675825, -0.0006100408500060439, -0.007939832285046577, 0.041878893971443176, -0.06905115395784378, 0.04338457062840462, 0.022515157237648964, 0.036486461758613586, 0.031041502952575684, -0.06954137235879898, -0.03442052751779556, -0.07472371309995651, -0.047621484845876694, -0.03135664761066437, 0.0043988595716655254, -0.03398283198475838, 0.008154303766787052, -0.022637711837887764, 0.0444350466132164, -0.013025876134634018, 0.07213254272937775, 0.025263898074626923, -0.01054850872606039, -0.010390937328338623, 0.010110811330378056, -0.00040404946776106954, -0.04306942969560623, -0.007931077852845192, 0.0228303000330925, 0.010889912955462933, -0.02521137334406376, -0.03442052751779556, 0.009436757303774357, -0.027785034850239754, -0.019503798335790634, -0.06523443013429642, 0.014452770352363586, -0.01969638653099537, 0.003832041285932064, 0.05311896279454231, 0.07118711620569229, 0.06737039238214493, -0.10434707254171371, 0.06667007505893707, 0.0014061031397432089, 0.05084293708205223, -0.00504665169864893, -0.0825672522187233, 0.06019215285778046, -0.04166879877448082, 0.0012944901827722788, 0.0066267396323382854, 0.011598982848227024, 0.004278492648154497, -0.0017868998693302274, 0.04709624499082565, -0.05882653966546059, 0.03230207413434982, -0.015161840245127678, 0.01454906351864338, -0.006350989919155836, 0.02521137334406376, -0.011765307746827602, 0.03258219733834267, 0.02097446285188198, -0.02232257090508938, 0.06589972972869873, 0.02486121654510498, -0.02909812703728676, -0.028712952509522438, -0.044610124081373215, 0.00421721488237381, 0.023688185960054398, 0.0810965821146965, -0.02132461965084076, -0.0011133928783237934, 0.012360576540231705, 0.024038344621658325, 0.034578099846839905, 0.0003072089166380465, 0.0016807581996545196, 0.006298466585576534, 0.0020878168288618326, 0.028467843309044838, 0.021744810044765472, 0.02923819050192833, 0.044680155813694, -0.04303441569209099, -0.00986570119857788, 0.06761550158262253, 0.049022115767002106, -0.013857501558959484, 0.036591507494449615, -0.013209708966314793, -0.0048146722838282585, 0.01588841713964939, -0.004959112033247948, 0.013148431666195393, 0.0514732226729393, 0.02044922485947609, -0.010723588056862354, 0.07612434029579163, 0.015223117545247078, -0.04254419356584549, -0.049652401357889175, 0.024388503283262253, 0.03492825850844383, -0.0020746858790516853, -0.03237210586667061, 0.004031193442642689, -0.061557769775390625, -0.010758603923022747, -0.03142667934298515, 0.01871594414114952, -0.06390383094549179, -0.002234445419162512, -0.055920228362083435, 0.0028691068291664124, 0.06075240671634674, 0.0680006742477417, 0.014163889922201633, 0.00078402558574453, 0.011091253720223904, 0.09293192625045776, -0.0008502273121848702, -0.02860790677368641, -0.044224951416254044, 0.010250874795019627, 0.0031142174266278744, -0.000015430545317940414, -0.046115804463624954, -0.02030916139483452, 0.0182082150131464, 0.01707020029425621, 0.012500639073550701, 0.042754288762807846, -0.024791184812784195, -0.11156032979488373, -0.0037379362620413303, 0.007760375738143921, 0.01506554614752531, -0.036486461758613586, 0.034945763647556305, -0.016912629827857018, 0.010924928821623325, 0.001911643659695983, 0.028958063572645187, -0.019171148538589478, 0.011572720482945442, 0.06565462052822113, 0.018400801345705986, 0.009848193265497684, -0.019363734871149063, -0.031566739082336426, -0.004352901130914688, -0.03613630309700966, -0.09160132706165314, 0.009760653600096703, 0.041878893971443176, -0.03251216560602188, -0.002580226631835103, 0.019416259601712227, 0.10532751679420471, -0.04779656231403351, -0.07094200700521469, -0.05035271495580673, 0.014654111117124557, 0.0590016171336174, -0.008049256168305874, -0.006534823216497898, -0.016221066936850548, 0.03230207413434982, 0.026069261133670807, -0.02158723957836628, -0.030183617025613785, 0.009139123372733593, -0.0038407952524721622, 0.047901611775159836, 0.020886922255158424, -0.012780766002833843, -0.0539243258535862, -0.00614527240395546, -0.0529438853263855, -0.02398581989109516, 0.010513492859899998, 0.00504665169864893, -0.011704030446708202, -0.027207273989915848, 0.021744810044765472, 0.01756042242050171, 0.01969638653099537, -0.034332986921072006, 0.027539923787117004, -0.019153641536831856, 0.02421342395246029, -0.09545306116342545, -0.04748142138123512, 0.08964043855667114, -0.034718163311481476, 0.02360064722597599, 0.011975402943789959, -0.03154923394322395, 0.01373494602739811, 0.005221730563789606, 0.03365018218755722, -0.023303013294935226, -0.057180795818567276, -0.030043553560972214, 0.059947043657302856, 0.021937396377325058, 0.01368242222815752, -0.04580066353082657, 0.04779656231403351, 0.07297292351722717, 0.012623194605112076, 0.04884703829884529, -0.022024936974048615, 0.008491330780088902, 0.020484240725636482, 0.00027561260503716767, 0.031689297407865524, 0.05448457971215248, -0.03335254639387131, 0.021044494584202766, 0.005992078222334385, -0.03387778252363205, -0.0015013022348284721, 0.05388931185007095, 0.0027268552221357822, 0.02458108961582184, 0.0383773148059845, 0.01674630492925644, -0.028415318578481674, 0.03112904354929924, -0.05507984757423401, -0.013822485692799091, 0.026314372196793556, 0.02072935178875923, 0.008053633384406567, 0.019853956997394562, 0.022690236568450928, 0.04485523700714111, -0.000711258384399116, 0.015897171571850777, 0.049512337893247604, -0.02034417726099491, -0.0015910302754491568, 0.06061234325170517, -0.04383977875113487, -0.04292936623096466, -0.027329828590154648, -0.00040705862920731306, 0.014680372551083565, -0.021937396377325058, -0.018243230879306793, 0.005860769189894199, -0.03048125095665455, 0.0007966093835420907, -0.08123664557933807, 0.011012468487024307, -0.017893072217702866, 0.03988299146294594, -0.019241180270910263, -0.019381243735551834, 0.026576990261673927, -0.005068536382168531, -0.07808522880077362, 0.02874796837568283, 0.04860192537307739, 0.018680928274989128, 0.01994149573147297, -0.018680928274989128, -0.06719531118869781, -0.02624434046447277, 0.025649070739746094, -0.02951831743121147, 0.04338457062840462, -0.01871594414114952, 0.012631949037313461, 0.029588349163532257, 0.00709507567808032, -0.010846142657101154, 0.03228456526994705, 0.01831326261162758, -0.0441899336874485, 0.027084719389677048, -0.018278246745467186, -0.01723652519285679, -0.010504739359021187, -0.06943632662296295, 0.03631138056516647, 0.02925569750368595, -0.05388931185007095, 0.03226705640554428, 0.015494490042328835, -0.0027421745471656322, 0.06138269230723381, -0.04835681617259979, 0.0006565462099388242, -0.0023920165840536356, -0.03844734653830528, 0.03603125363588333, 0.060927487909793854, -0.04440002888441086, 0.012824535369873047, 0.04583567753434181, 0.06390383094549179, -0.035453494638204575, 0.05637543275952339, 0.005234861746430397, -0.05042274668812752, -0.015083054080605507, -0.009051583707332611, -0.008408168330788612, -0.019871463999152184, -0.006167157087475061, 0.013165939599275589, -0.0068587190471589565, -0.009034075774252415, 0.0052392384968698025, 0.010373429395258427, -0.04131864011287689, 0.052523694932460785, 0.05497480183839798, 0.020624304190278053, 0.07360320538282394, 0.0007922324002720416, -0.0033286891411989927, -0.04156374931335449, -0.005366170778870583, -0.059666916728019714, 0.0012496262788772583, -0.07647450268268585, 0.014303953386843204, 0.024388503283262253, -0.0047709024511277676, -0.017753008753061295, 0.022550173103809357, -0.006801818497478962, -0.034087877720594406, 0.0035015796311199665, 0.02370569482445717, 0.017000168561935425, -0.004823425784707069, -0.04208898916840553, -0.05609530583024025, 0.04944230616092682, -0.055149879306554794, -0.06064736098051071, 0.015529505908489227, 0.0034359251148998737, 0.03606627136468887, -0.03242462873458862, 0.008675163611769676, -0.03963788226246834, -0.06355366855859756, 0.03610128536820412, 0.044995300471782684, 0.019888972863554955, 0.000016994970792438835, -0.023057902231812477, -0.0016347999917343259, -0.053153980523347855, -0.023162949830293655, 0.05017763748764992, 0.027277305722236633, 0.000667488609906286, 0.007257023826241493, -0.006342236418277025, 0.015835894271731377, -0.0011314479634165764, 0.045660600066185, 0.012666964903473854, 0.03534844517707825, 0.025333929806947708, 0.01794559508562088, -0.030288664624094963, -0.007633443921804428, -0.009568066336214542, -0.019521307200193405, 0.0011533327633515, 0.03237210586667061, 0.030411219224333763, -0.03534844517707825, 0.0023241734597831964, 0.044610124081373215, 0.007410218007862568, -0.0013732757652178407, 0.03436800464987755, -0.046886153519153595, 0.07801519334316254, -0.009646851569414139, -0.01969638653099537, -0.032844819128513336, 0.02069433592259884, -0.01593218743801117, -0.07339310646057129, -0.031304121017456055, 0.03126910701394081, 0.03153172507882118, 0.013235971331596375, -0.05798615887761116, -0.03088393248617649, 0.03743188828229904, -0.02447604201734066, -0.018680928274989128, 0.008683918043971062, -0.07346314191818237, 0.024826200678944588, -0.05651549622416496, 0.012850797735154629, 0.03541847690939903, -0.025316420942544937, 0.01721026375889778, 0.012316806241869926, 0.057916127145290375, -0.01922367326915264, -0.04254419356584549, -0.03428046405315399, -0.0386224240064621, 0.00246642529964447, 0.00703379837796092, -0.0006751483306288719, 0.003602250013500452, -0.013516097329556942, -0.06719531118869781, -0.02834528684616089, 0.05136817321181297, -0.016632502898573875, 0.0229528546333313, -0.026822099462151527, 0.0057425908744335175, 0.006416644901037216, 0.018155690282583237, -0.08053633570671082, 0.010819881223142147, 0.03946280479431152, -0.006320351269096136, -0.03249466046690941, -0.014093858189880848, 0.01959133893251419, -0.030043553560972214, 0.05683063715696335, 0.03956785053014755, -0.055149879306554794, 0.014207659289240837, 0.038972582668066025, -0.037081729620695114, 0.01381373219192028, -0.06782560050487518, -0.05823127180337906, -0.05889657139778137, 0.10399691760540009, -0.0267170537263155, -0.01719275675714016, 0.01650119386613369, 0.03265222907066345, 0.008675163611769676, 0.02272525243461132, -0.0012649456039071083, 0.0019094551680609584, -0.02825774811208248, 0.025824150070548058, -0.004457948729395866, -0.009988255798816681, -0.018453324213624, 0.01796310395002365, 0.036696553230285645, 0.0018481775186955929, 0.045380473136901855, -0.04194892570376396, 0.020746858790516853, -0.03123409114778042, 0.015083054080605507, 0.0643240213394165, -0.00020393966406118125, -0.007462741807103157, -0.04940728843212128, 0.019626354798674583, -0.055289942771196365, 0.03216201066970825, -0.03711674362421036, -0.0016293288208544254, 0.01074109598994255, -0.037852074950933456, 0.03049875982105732, 0.035471003502607346, -0.03301989659667015, 0.023197965696454048, -0.008841488510370255, 0.020991969853639603, 0.003974292892962694, 0.0436997152864933, 0.021009478718042374, -0.0643240213394165, 0.027802541851997375, 0.00915663130581379, 0.050387732684612274, -0.03315996006131172, -0.03855239227414131, 0.006311597302556038, 0.013297248631715775, 0.04618583619594574, 0.056025274097919464, 0.024370994418859482, -0.0004943245439790189, -0.02811768464744091, 0.006499807350337505, 0.0299910306930542, 0.061942946165800095, 0.03589119017124176, 0.0021403406281024218, -0.011861600913107395, 0.021762317046523094, -0.0020287276711314917, -0.06320351362228394, -0.038587406277656555, -0.04331453889608383, -0.037361856549978256, 0.034455545246601105, 0.02951831743121147, -0.046395931392908096, -0.0007216536905616522, -0.0011949141044169664, -0.026892131194472313, -0.0024467287585139275, -0.03501579537987709, -0.025263898074626923, -0.022410109639167786, 0.048111703246831894, -0.026139292865991592, -0.020904431119561195, -0.016247330233454704, -0.08095651865005493, -0.012115465477108955, -0.0268396083265543, -0.03473567217588425, 0.05388931185007095, 0.04065334051847458, 0.0381322018802166, 0.017919333651661873, 0.0019400939345359802, -0.0005848732544109225, 0.031934406608343124, -0.021499698981642723, -0.030218632891774178, -0.040093086659908295, 0.01040844526141882, 0.04709624499082565, 0.04089844971895218, 0.04142368584871292, 0.011949140578508377, -0.002343870000913739, 0.016527455300092697, 0.017796779051423073, -0.011572720482945442, 0.027277305722236633, -0.004105602391064167, 0.03429797291755676, -0.0677555650472641, 0.007335809525102377, 0.03827226534485817, -0.0032455266918987036, -0.004976619966328144, -0.042124003171920776, -0.057530954480171204, 0.007519642356783152, 0.001390783698298037, -0.030043553560972214, -0.010679817758500576, -0.06586471199989319, 0.005751344840973616, -0.023005379363894463, -0.038587406277656555, -0.05133315920829773, -0.01419015135616064, 0.01739409752190113, -0.0030792015604674816, -0.00019313400844112039, -0.014540310017764568, -0.03778204321861267, -0.05816124007105827, 0.050002556294202805, -0.05168331786990166, -0.04485523700714111, 0.008368775248527527, -0.005821376107633114, -0.006504184100776911, -0.043874792754650116, -0.022515157237648964, 0.017630454152822495, -0.046395931392908096, -0.049897510558366776, -0.031041502952575684, -0.048391830176115036, -0.04709624499082565, -0.045520536601543427, -0.005261123646050692, 0.07395336031913757, 0.03767699748277664, -0.03301989659667015, -0.009392987936735153, 0.051543254405260086, 0.05686565488576889, -0.024773675948381424, 0.014916729182004929, -0.02486121654510498, 0.04741138964891434, -0.06698521971702576, -0.014776666648685932, -0.0025036295410245657, -0.009848193265497684, -0.028082668781280518, -0.07248269766569138, 0.013883762992918491, -0.030061062425374985, 0.08074642717838287, -0.017770517617464066, -0.007165107410401106, 0.039357755333185196, -0.05910666659474373, 0.06113757938146591, -0.02120206505060196, 0.10357672721147537, 0.04772653058171272, -0.0036788471043109894, -0.026401910930871964, 0.036486461758613586, -0.03473567217588425, 0.012211759574711323, -0.010259628295898438, 0.019871463999152184, -0.00483655696734786, -0.005212976597249508, 0.0002143349702237174, 0.028432827442884445, -0.018768467009067535, -0.005055405665189028, -0.03266973793506622, -0.049652401357889175, 0.046500977128744125, -0.0037072973791509867, -0.04054829105734825, -0.0015516375424340367, -0.010460969060659409, 0.03291484713554382, -0.026541974395513535, 0.06075240671634674, 0.0008803190430626273, -0.005007259082049131, -0.020921938121318817, -0.0010357015999034047, 0.03172431141138077, 0.0859287679195404, -0.014251429587602615, 0.015608291141688824, 0.05472968891263008, -0.029448285698890686, -0.021762317046523094, -0.029185665771365166, 0.033562641590833664, -0.005103552248328924, -0.034455545246601105, 0.01015458069741726, 0.008784588426351547, 0.002104230457916856, 0.049757447093725204 ]
9,578
asyncclick.types
to_info_dict
Gather information that could be useful for a tool generating user-facing documentation. Use :meth:`click.Context.to_info_dict` to traverse the entire CLI structure. .. versionadded:: 8.0
import os import stat import sys import typing as t from datetime import datetime from gettext import gettext as _ from gettext import ngettext from ._compat import _get_argv_encoding from ._compat import open_stream from .exceptions import BadParameter from .utils import format_filename from .utils import LazyFile from .utils import safecall if t.TYPE_CHECKING: import typing_extensions as te from .core import Context from .core import Parameter from .shell_completion import CompletionItem class ParamType: """Represents the type of a parameter. Validates and converts values from the command line or Python into the correct type. To implement a custom type, subclass and implement at least the following: - The :attr:`name` class attribute must be set. - Calling an instance of the type with ``None`` must return ``None``. This is already implemented by default. - :meth:`convert` must convert string values to the correct type. - :meth:`convert` must accept values that are already the correct type. - It must be able to convert a value if the ``ctx`` and ``param`` arguments are ``None``. This can occur when converting prompt input. """ is_composite: t.ClassVar[bool] = False arity: t.ClassVar[int] = 1 #: the descriptive name of this type name: str #: if a list of this type is expected and the value is pulled from a #: string environment variable, this is what splits it up. `None` #: means any whitespace. For all parameters the general rule is that #: whitespace splits them up. The exception are paths and files which #: are split by ``os.path.pathsep`` by default (":" on Unix and ";" on #: Windows). envvar_list_splitter: t.ClassVar[t.Optional[str]] = None async def to_info_dict(self) -> t.Dict[str, t.Any]: """Gather information that could be useful for a tool generating user-facing documentation. Use :meth:`click.Context.to_info_dict` to traverse the entire CLI structure. .. versionadded:: 8.0 """ # The class name without the "ParamType" suffix. param_type = type(self).__name__.partition("ParamType")[0] param_type = param_type.partition("ParameterType")[0] # Custom subclasses might not remember to set a name. if hasattr(self, "name"): name = self.name else: name = param_type return {"param_type": param_type, "name": name} def __call__( self, value: t.Any, param: t.Optional["Parameter"] = None, ctx: t.Optional["Context"] = None, ) -> t.Any: if value is not None: return self.convert(value, param, ctx) def get_metavar(self, param: "Parameter") -> t.Optional[str]: """Returns the metavar default for this param if it provides one.""" def get_missing_message(self, param: "Parameter") -> t.Optional[str]: """Optionally might return extra information about a missing parameter. .. versionadded:: 2.0 """ def convert( self, value: t.Any, param: t.Optional["Parameter"], ctx: t.Optional["Context"] ) -> t.Any: """Convert the value to the correct type. This is not called if the value is ``None`` (the missing value). This must accept string values from the command line, as well as values that are already the correct type. It may also convert other compatible types. The ``param`` and ``ctx`` arguments may be ``None`` in certain situations, such as when converting prompt input. If the value cannot be converted, call :meth:`fail` with a descriptive message. :param value: The value to convert. :param param: The parameter that is using this type to convert its value. May be ``None``. :param ctx: The current context that arrived at this value. May be ``None``. """ return value def split_envvar_value(self, rv: str) -> t.Sequence[str]: """Given a value from an environment variable this splits it up into small chunks depending on the defined envvar list splitter. If the splitter is set to `None`, which means that whitespace splits, then leading and trailing whitespace is ignored. Otherwise, leading and trailing splitters usually lead to empty items being included. """ return (rv or "").split(self.envvar_list_splitter) def fail( self, message: str, param: t.Optional["Parameter"] = None, ctx: t.Optional["Context"] = None, ) -> "t.NoReturn": """Helper method to fail with an invalid value message.""" raise BadParameter(message, ctx=ctx, param=param) def shell_complete( self, ctx: "Context", param: "Parameter", incomplete: str ) -> t.List["CompletionItem"]: """Return a list of :class:`~click.shell_completion.CompletionItem` objects for the incomplete value. Most types do not provide completions, but some do, and this allows custom types to provide custom completions as well. :param ctx: Invocation context for this command. :param param: The parameter that is requesting completion. :param incomplete: Value being completed. May be empty. .. versionadded:: 8.0 """ return []
(self) -> Dict[str, Any]
[ 0.06129446253180504, -0.005954721011221409, -0.03801783174276352, -0.04386209324002266, 0.08451084792613983, -0.01708091050386429, 0.03890150040388107, -0.013134527951478958, 0.012592276558279991, -0.0764373317360878, 0.0049932291731238365, 0.04018683359026909, -0.014781364239752293, 0.00505096884444356, -0.03831908106803894, 0.06037062779068947, 0.01668928563594818, 0.09302619844675064, 0.02520463615655899, 0.03124973364174366, 0.048842769116163254, 0.011236649006605148, -0.017030702903866768, -0.005703678820282221, -0.0016104356618598104, -0.06290113180875778, 0.08133767545223236, -0.036210328340530396, -0.02745397388935089, -0.03982533514499664, -0.005146365147083998, -0.026248972862958908, -0.01890849880874157, 0.022151963785290718, 0.006441742647439241, -0.01552444975823164, -0.009579770267009735, 0.0894111916422844, -0.022091712802648544, -0.06306180357933044, -0.06948848068714142, 0.007109514903277159, -0.0009125383803620934, -0.03128989785909653, 0.01126677356660366, 0.006411617621779442, -0.044103093445301056, 0.01890849880874157, -0.06330280005931854, 0.0018275872571393847, 0.020866626873612404, -0.04659343138337135, -0.0028945165686309338, -0.012461734935641289, -0.0223527979105711, 0.04807960242033005, 0.03870066627860069, 0.017030702903866768, 0.009258436039090157, 0.007706995587795973, 0.026891639456152916, 0.04731643199920654, 0.012702735140919685, -0.02283479832112789, 0.003567309584468603, -0.022895049303770065, 0.005226698704063892, -0.034382738173007965, -0.029241396114230156, 0.04018683359026909, -0.0012721563689410686, -0.028859810903668404, -0.03709399700164795, 0.009650061838328838, 0.06426680088043213, -0.017844079062342644, -0.053421780467033386, -0.00991616677492857, 0.03588899224996567, -0.02347746677696705, 0.049846939742565155, 0.02797614224255085, -0.018667498603463173, -0.05663511902093887, -0.002558120060712099, 0.04056841880083084, -0.03619024157524109, 0.0042777592316269875, 0.03494507446885109, 0.04354075714945793, -0.04366125911474228, -0.012521984986960888, -0.0044409362599253654, 0.05667528510093689, 0.01763320341706276, -0.052015941590070724, 0.000029772036214126274, -0.0547071173787117, -0.06631530821323395, -0.013656695373356342, -0.0020171240903437138, 0.002693682676181197, 0.06322246789932251, -0.016749534755945206, 0.01668928563594818, -0.018516872078180313, 0.017191369086503983, 0.048320602625608444, 0.02132854424417019, 0.0017598058329895139, -0.060410793870687485, -0.04807960242033005, -0.04342025890946388, -0.04510726034641266, -0.0057488661259412766, 0.052297111600637436, -0.026670722290873528, -0.025385387241840363, 0.0008403637330047786, -0.005063521210104227, 0.0105538135394454, 0.029040561988949776, -0.010061771608889103, -0.021469129249453545, 0.0559522844851017, 0.019842375069856644, -0.04117092117667198, 0.007676870562136173, -0.019571250304579735, 0.04386209324002266, 0.0015150397084653378, 0.009609895758330822, -0.03910233452916145, 0.02693180739879608, 0.00994127057492733, 0.00046191763249225914, -0.08009250462055206, 0.04434409365057945, -0.030486565083265305, 0.026309221982955933, 0.044625259935855865, 0.009439186193048954, 0.017040744423866272, -0.06322246789932251, 0.003328819526359439, -0.04374159127473831, 0.07374615967273712, -0.0422152541577816, -0.027313390746712685, 0.05759912356734276, -0.03022547997534275, -0.031410399824380875, -0.048320602625608444, 0.033358488231897354, 0.05257827788591385, 0.0010267625330016017, -0.025345221161842346, -0.04848127067089081, -0.0142391137778759, -0.01890849880874157, -0.02028420940041542, -0.06338313221931458, 0.03769649565219879, 0.011186440475285053, 0.02430088445544243, 0.05956729128956795, -0.01588595099747181, 0.027092473581433296, -0.009439186193048954, -0.0042777592316269875, 0.012029942125082016, -0.0020409731660038233, -0.0015991388354450464, -0.0008435017662122846, 0.06378480046987534, 0.06037062779068947, -0.0019631499890238047, -0.0067480141296982765, 0.0407090038061142, -0.057438455522060394, -0.024120135232806206, -0.03532665967941284, -0.01925995759665966, -0.0016782170860096812, 0.05482761561870575, 0.032856401056051254, 0.019350333139300346, 0.032213736325502396, 0.0009583535720594227, -0.01393786258995533, -0.043299756944179535, 0.011216565035283566, 0.044424425810575485, 0.030406231060624123, -0.04325959086418152, -0.0002758326008915901, -0.042978424578905106, 0.017944496124982834, 0.03382040560245514, -0.021047377958893776, -0.02920122817158699, 0.019350333139300346, 0.06442747265100479, -0.0025342709850519896, -0.019129415974020958, -0.000994754722341895, 0.034683991223573685, 0.016177158802747726, -0.010734564624726772, -0.038680583238601685, -0.054345615208148956, -0.05065027251839638, 0.005156406667083502, 0.0020535250660032034, 0.004857666324824095, -0.10226455330848694, 0.03781699761748314, -0.019571250304579735, 0.012080150656402111, 0.003775674616917968, 0.10122021287679672, 0.037234578281641006, 0.029281562194228172, 0.01691020280122757, 0.10194321721792221, -0.04181358963251114, 0.02787572517991066, -0.017000578343868256, 0.0011698566377162933, 0.02655022218823433, -0.006235888227820396, -0.06940814852714539, -0.016428200528025627, 0.03677266091108322, -0.027212973684072495, -0.01011700090020895, 0.0342220738530159, -0.01781395450234413, -0.06699813902378082, -0.0047823539935052395, -0.003446809481829405, 0.018747830763459206, -0.0382186658680439, 0.03189240023493767, -0.03651157766580582, -0.015564615838229656, 0.01966162584722042, 0.042375922203063965, 0.0023949425667524338, -0.011869275011122227, 0.04603109881281853, 0.04494659602642059, -0.027996225282549858, -0.02020387537777424, -0.047396767884492874, 0.0016543681267648935, -0.05530961602926254, -0.04767793416976929, 0.0267309732735157, 0.006441742647439241, -0.01768341287970543, -0.0244816355407238, 0.013255028054118156, 0.12001825124025345, -0.017753703519701958, -0.02570672146975994, 0.03052673116326332, -0.02377871610224247, -0.006331284064799547, 0.005261844489723444, -0.018326081335544586, 0.03137023374438286, -0.01763320341706276, 0.006145513150840998, -0.04988710582256317, 0.07053281366825104, 0.037334997206926346, -0.00994127057492733, 0.023236466571688652, -0.0072752027772367, 0.02665063925087452, -0.037334997206926346, 0.015253324061632156, 0.0005114984815008938, -0.00950445793569088, 0.0352262407541275, -0.003823372768238187, -0.016900161281228065, -0.051694609224796295, 0.06025012582540512, 0.013737029395997524, 0.03504548966884613, 0.05285944417119026, -0.0012803152203559875, 0.06137479469180107, 0.06980981677770615, -0.08101633936166763, -0.06739980727434158, 0.030406231060624123, -0.10049721598625183, 0.011025773361325264, 0.017894288524985313, 0.011608190834522247, -0.01711103692650795, -0.029341811314225197, -0.020665794610977173, 0.002681130776181817, -0.0819401741027832, -0.018898457288742065, -0.010091896168887615, 0.02263396419584751, 0.03402123972773552, 0.015554574318230152, 0.023437298834323883, 0.022975381463766098, 0.009840854443609715, 0.024240635335445404, -0.02819705940783024, -0.005814137402921915, 0.04229559004306793, -0.016799744218587875, 0.010513647459447384, 0.052819278091192245, -0.041452087461948395, 0.02960289642214775, 0.007998204790055752, -0.0021777909714728594, 0.03578857704997063, 0.034683991223573685, 0.019862458109855652, -0.03165140002965927, 0.053622614592313766, -0.015434074215590954, -0.001628008671104908, 0.013867571018636227, 0.030968565493822098, -0.005628366023302078, 0.0075915162451565266, 0.014600614085793495, -0.03926299884915352, 0.0392228327691555, 0.00016443264030385762, -0.013496028259396553, -0.013726986944675446, 0.0032359338365495205, -0.018105164170265198, 0.0809360072016716, 0.026489973068237305, 0.09985454380512238, -0.053220946341753006, 0.005829199682921171, -0.004616666119545698, -0.02203146368265152, 0.0007041733479127288, 0.0407090038061142, -0.07675866037607193, -0.008881872519850731, -0.05522928386926651, 0.008580622263252735, -0.054666947573423386, 0.0512126088142395, -0.010935397818684578, -0.007400724105536938, 0.003389069577679038, -0.007727078627794981, -0.03209323436021805, 0.010945440270006657, -0.032314151525497437, 0.04289809241890907, 0.02562638744711876, 0.020766209810972214, -0.027634724974632263, 0.0164884515106678, -0.08635851740837097, -0.002696193289011717, -0.00650701392441988, 0.015755407512187958, 0.004686957690864801, -0.07334449142217636, 0.04988710582256317, 0.07013114541769028, 0.015825700014829636, 0.00350956991314888, 0.013606486842036247, -0.03864041343331337, -0.04530809447169304, -0.014690989628434181, 0.005136323161423206, -0.015273407101631165, 0.029161062091588974, -0.021167878061532974, 0.01820557937026024, 0.026811307296156883, 0.04004625231027603, 0.06390529870986938, -0.008741289377212524, -0.005728783085942268, 0.01701061986386776, -0.057759787887334824, 0.03910233452916145, 0.013897696509957314, -0.02293521538376808, 0.04530809447169304, 0.02930164523422718, 0.01101573184132576, -0.025224719196558, 0.05390378087759018, 0.010614064522087574, -0.0549481175839901, 0.03582874312996864, 0.01830599643290043, -0.032836318016052246, -0.017552871257066727, -0.004199936054646969, -0.0047773332335054874, 0.0027288286946713924, -0.08133767545223236, 0.024983718991279602, -0.001368180033750832, -0.010704439133405685, 0.010051729157567024, -0.013174694962799549, -0.015213157050311565, 0.0764373317360878, 0.040829502046108246, 0.059286125004291534, -0.008711163885891438, 0.02930164523422718, 0.0059898667968809605, -0.07314365357160568, -0.017472537234425545, 0.04566959664225578, -0.032936736941337585, -0.07571432739496231, -0.03576849400997162, -0.0017033213516697288, -0.006060158833861351, -0.054265283048152924, 0.07651766389608383, 0.027996225282549858, -0.051092106848955154, 0.02191096358001232, 0.03645132854580879, 0.06342329829931259, 0.007621641270816326, -0.014409822411835194, -0.025164470076560974, 0.05832212418317795, -0.04386209324002266, -0.0454687625169754, -0.004322946537286043, 0.023597966879606247, 0.06976965069770813, -0.06177646294236183, -0.016267534345388412, -0.07687916606664658, -0.07414782047271729, 0.04655326530337334, -0.01625749282538891, 0.0037355078384280205, 0.07491099089384079, 0.01915954053401947, 0.002635943004861474, -0.059286125004291534, 0.002187832724303007, -0.007014119066298008, 0.047195933759212494, 0.033458903431892395, -0.027956059202551842, 0.035728324204683304, -0.03311748802661896, 0.015986368060112, -0.004046800080686808, 0.05824178829789162, -0.008595684543251991, 0.01546419970691204, 0.0741879940032959, -0.009414082393050194, -0.04004625231027603, -0.02355779893696308, 0.0592057928442955, -0.031309984624385834, 0.04747710004448891, 0.05350211262702942, -0.038258831948041916, 0.012029942125082016, 0.04362109303474426, 0.002521718852221966, 0.008851747959852219, 0.004403280094265938, -0.049646105617284775, 0.028598727658391, -0.002078629331663251, 0.02735355868935585, 0.0222322978079319, -0.02470255270600319, 0.02040470950305462, 0.00676307687535882, 0.028518393635749817, -0.019139457494020462, 0.03691324591636658, 0.009604874067008495, 0.022593798115849495, -0.046874597668647766, 0.04149225354194641, -0.025947721675038338, 0.009700270369648933, 0.010137083940207958, -0.06639564037322998, -0.0367124117910862, -0.037977661937475204, 0.010352980345487595, 0.07374615967273712, -0.03159115090966225, -0.021047377958893776, 0.001011700020171702, 0.03291665390133858, 0.0022819736041128635, 0.02418038435280323, -0.010573897510766983, -0.05699662119150162, -0.0004813734267372638, 0.014871739782392979, -0.050891272723674774, -0.002630922244861722, 0.0038409456610679626, -0.02140887826681137, -0.027614641934633255, 0.035306572914123535, 0.028337642550468445, 0.04860176891088486, -0.003710403572767973, 0.030988648533821106, -0.024662384763360023, 0.04034750163555145, 0.01573532447218895, -0.03062714822590351, 0.04241608828306198, -0.026811307296156883, 0.013596445322036743, 0.013857529498636723, 0.05008793994784355, -0.05848279222846031, 0.04888293519616127, 0.03382040560245514, 0.005718741100281477, 0.03251498565077782, -0.010604022070765495, -0.02410005033016205, -0.014942031353712082, -0.04034750163555145, -0.025967804715037346, -0.036129992455244064, 0.04550892859697342, -0.10226455330848694, -0.04149225354194641, 0.053421780467033386, -0.01966162584722042, 0.032856401056051254, 0.007686912082135677, 0.0034643823746591806, 0.040929920971393585, -0.06579314172267914, -0.0268514733761549, 0.04599092900753021, 0.00601999182254076, -0.0013518622145056725, 0.02839789353311062, -0.03245473653078079, -0.031711649149656296, 0.018727747723460197, -0.011608190834522247, 0.00302505842410028, -0.03124973364174366, 0.003027568804100156, 0.037857163697481155, 0.01853695511817932, 0.01342573668807745, -0.015082615427672863, 0.002146410755813122, 0.010513647459447384, 0.022995464503765106, -0.06053129583597183, -0.03588899224996567, 0.005322094541043043, 0.022473298013210297, 0.0251042190939188, -0.012230776250362396, -0.05081094056367874, -0.005874387454241514, -0.05687611922621727, 0.058563124388456345, 0.00926847755908966, -0.012391442432999611, 0.01562486682087183, -0.00005471935583045706, 0.01563490740954876, 0.01368682086467743, 0.0182357057929039, -0.042777590453624725, -0.057840123772621155, -0.01978212594985962, -0.02695189043879509, 0.02245321497321129, 0.04675409942865372, -0.0006410990026779473, 0.0002995247195940465, -0.010021604597568512, -0.02952256239950657, 0.026269055902957916, 0.03279615193605423, -0.030305813997983932, 0.005618324503302574, 0.019290082156658173, -0.0696893110871315, 0.03948391601443291, -0.005573136731982231, -0.020093416795134544, 0.06462830305099487, -0.010664272122085094, -0.03359948843717575, 0.02337704971432686, 0.01953108236193657, -0.013405653648078442, -0.03337857127189636, -0.00836974661797285, -0.07238048315048218, 0.006235888227820396, -0.020967043936252594, -0.06671697646379471, 0.021469129249453545, -0.004772312007844448, 0.038780998438596725, 0.021489212289452553, 0.02932172827422619, -0.03667224571108818, -0.01650853455066681, -0.0651906356215477, -0.0033740070648491383, 0.034081488847732544, -0.00011343969526933506, -0.034081488847732544, -0.024441467598080635, 0.029984479770064354, -0.013405653648078442, 0.00489532295614481, -0.02043483406305313, -0.027534307911992073, 0.05382344871759415, 0.021890880540013313, 0.039303164929151535, 0.09583786875009537, -0.004272738005965948, -0.027393724769353867, 0.009193165227770805, -0.0025907554663717747, -0.013094360940158367, 0.0014598104171454906, -0.006597389001399279, 0.020515168085694313, -0.014721114188432693, -0.00161922222469002, 0.0329769030213356, -0.0019003894412890077, -0.05141344293951988, -0.0467139333486557, -0.029361896216869354, -0.024622218683362007, 0.049043603241443634, 0.031932566314935684, 0.02193104662001133, -0.07081398367881775, 0.03952408209443092, 0.000878647668287158, -0.03287648782134056, -0.03369990363717079, -0.0010217417730018497, 0.047798436135053635, 0.006612451281398535, -0.000409198779379949, -0.04040775075554848, -0.05101177468895912, -0.04333992674946785, 0.027915893122553825, -0.008424975909292698, -0.0005770832649432123, 0.010463438928127289, -0.017844079062342644, 0.005211635958403349, -0.0914195254445076, 0.009208227507770061, 0.014670905657112598, -0.03064723126590252, -0.02233271300792694, -0.08394850790500641, -0.045428596436977386, -0.027172807604074478, -0.07603566348552704, 0.008409913629293442, -0.0019531083526089787, 0.0482001006603241, -0.0447055958211422, 0.01168852485716343, 0.001439727027900517, -0.013947904109954834, 0.01491190679371357, -0.035406991839408875, 0.0033012048806995153, 0.008113684132695198, -0.01783403754234314, 0.041251253336668015, 0.026590390130877495, -0.013726986944675446, -0.08266317844390869, 0.005548032466322184, -0.002651005517691374, -0.008670997805893421, 0.042456258088350296, 0.002954766619950533, -0.018818123266100883, -0.0008905722061172128, 0.02213188074529171, 0.0846715122461319, 0.02265404723584652, 0.05213644355535507, 0.014942031353712082, -0.04209475591778755, -0.013094360940158367, 0.07446915656328201, -0.019942792132496834, 0.0027865683659911156, 0.00013877925812266767, -0.050891272723674774, 0.02675105631351471, 0.056112952530384064, -0.031129231676459312, 0.05085110664367676, -0.004945531487464905, -0.00810364168137312, 0.0057388246059417725, -0.011568024754524231, 0.07113531976938248, -0.050449438393116, -0.024863218888640404, 0.00773209985345602, 0.011276815086603165, 0.021569546312093735, -0.0369734950363636, 0.038078080862760544, -0.05727778747677803, 0.003956425003707409, -0.028417976573109627, -0.04767793416976929, 0.04900343716144562, 0.05326111242175102, -0.025264887139201164, 0.017372120171785355, 0.05233727768063545, -0.028317559510469437, -0.028056476265192032, -0.07812432944774628, 0.0008660955936647952, 0.0004980049561709166, -0.026188721880316734, 0.03558774292469025, 0.03462373837828636, -0.0454687625169754, 0.011638316325843334 ]
9,579
asyncclick.core
Parameter
A parameter to a command comes in two versions: they are either :class:`Option`\s or :class:`Argument`\s. Other subclasses are currently not supported by design as some of the internals for parsing are intentionally not finalized. Some settings are supported by both options and arguments. :param param_decls: the parameter declarations for this option or argument. This is a list of flags or argument names. :param type: the type that should be used. Either a :class:`ParamType` or a Python type. The latter is converted into the former automatically if supported. :param required: controls if this is optional or not. :param default: the default value if omitted. This can also be a callable, in which case it's invoked when the default is needed without any arguments. :param callback: A function to further process or validate the value after type conversion. It is called as ``f(ctx, param, value)`` and must return the value. It is called for all sources, including prompts. :param nargs: the number of arguments to match. If not ``1`` the return value is a tuple instead of single value. The default for nargs is ``1`` (except if the type is a tuple, then it's the arity of the tuple). If ``nargs=-1``, all remaining parameters are collected. :param metavar: how the value is represented in the help page. :param expose_value: if this is `True` then the value is passed onwards to the command callback and stored on the context, otherwise it's skipped. :param is_eager: eager values are processed before non eager ones. This should not be set for arguments or it will inverse the order of processing. :param envvar: a string or list of strings that are environment variables that should be checked. :param shell_complete: A function that returns custom shell completions. Used instead of the param's type completion if given. Takes ``ctx, param, incomplete`` and must return a list of :class:`~click.shell_completion.CompletionItem` or a list of strings. .. versionchanged:: 8.0 ``process_value`` validates required parameters and bounded ``nargs``, and invokes the parameter callback before returning the value. This allows the callback to validate prompts. ``full_process_value`` is removed. .. versionchanged:: 8.0 ``autocompletion`` is renamed to ``shell_complete`` and has new semantics described above. The old name is deprecated and will be removed in 8.1, until then it will be wrapped to match the new requirements. .. versionchanged:: 8.0 For ``multiple=True, nargs>1``, the default must be a list of tuples. .. versionchanged:: 8.0 Setting a default is no longer required for ``nargs>1``, it will default to ``None``. ``multiple=True`` or ``nargs=-1`` will default to ``()``. .. versionchanged:: 7.1 Empty environment variables are ignored rather than taking the empty string value. This makes it possible for scripts to clear variables if they can't unset them. .. versionchanged:: 2.0 Changed signature for parameter callback to also be passed the parameter. The old callback format will still work, but it will raise a warning to give you a chance to migrate the code easier.
class Parameter: r"""A parameter to a command comes in two versions: they are either :class:`Option`\s or :class:`Argument`\s. Other subclasses are currently not supported by design as some of the internals for parsing are intentionally not finalized. Some settings are supported by both options and arguments. :param param_decls: the parameter declarations for this option or argument. This is a list of flags or argument names. :param type: the type that should be used. Either a :class:`ParamType` or a Python type. The latter is converted into the former automatically if supported. :param required: controls if this is optional or not. :param default: the default value if omitted. This can also be a callable, in which case it's invoked when the default is needed without any arguments. :param callback: A function to further process or validate the value after type conversion. It is called as ``f(ctx, param, value)`` and must return the value. It is called for all sources, including prompts. :param nargs: the number of arguments to match. If not ``1`` the return value is a tuple instead of single value. The default for nargs is ``1`` (except if the type is a tuple, then it's the arity of the tuple). If ``nargs=-1``, all remaining parameters are collected. :param metavar: how the value is represented in the help page. :param expose_value: if this is `True` then the value is passed onwards to the command callback and stored on the context, otherwise it's skipped. :param is_eager: eager values are processed before non eager ones. This should not be set for arguments or it will inverse the order of processing. :param envvar: a string or list of strings that are environment variables that should be checked. :param shell_complete: A function that returns custom shell completions. Used instead of the param's type completion if given. Takes ``ctx, param, incomplete`` and must return a list of :class:`~click.shell_completion.CompletionItem` or a list of strings. .. versionchanged:: 8.0 ``process_value`` validates required parameters and bounded ``nargs``, and invokes the parameter callback before returning the value. This allows the callback to validate prompts. ``full_process_value`` is removed. .. versionchanged:: 8.0 ``autocompletion`` is renamed to ``shell_complete`` and has new semantics described above. The old name is deprecated and will be removed in 8.1, until then it will be wrapped to match the new requirements. .. versionchanged:: 8.0 For ``multiple=True, nargs>1``, the default must be a list of tuples. .. versionchanged:: 8.0 Setting a default is no longer required for ``nargs>1``, it will default to ``None``. ``multiple=True`` or ``nargs=-1`` will default to ``()``. .. versionchanged:: 7.1 Empty environment variables are ignored rather than taking the empty string value. This makes it possible for scripts to clear variables if they can't unset them. .. versionchanged:: 2.0 Changed signature for parameter callback to also be passed the parameter. The old callback format will still work, but it will raise a warning to give you a chance to migrate the code easier. """ param_type_name = "parameter" def __init__( self, param_decls: t.Optional[t.Sequence[str]] = None, type: t.Optional[t.Union[types.ParamType, t.Any]] = None, required: bool = False, default: t.Optional[t.Union[t.Any, t.Callable[[], t.Any]]] = None, callback: t.Optional[t.Callable[[Context, "Parameter", t.Any], t.Any]] = None, nargs: t.Optional[int] = None, multiple: bool = False, metavar: t.Optional[str] = None, expose_value: bool = True, is_eager: bool = False, envvar: t.Optional[t.Union[str, t.Sequence[str]]] = None, shell_complete: t.Optional[ t.Callable[ [Context, "Parameter", str], t.Union[t.List["CompletionItem"], t.List[str]], ] ] = None, ) -> None: self.name: t.Optional[str] self.opts: t.List[str] self.secondary_opts: t.List[str] self.name, self.opts, self.secondary_opts = self._parse_decls( param_decls or (), expose_value ) self.type: types.ParamType = types.convert_type(type, default) # Default nargs to what the type tells us if we have that # information available. if nargs is None: if self.type.is_composite: nargs = self.type.arity else: nargs = 1 self.required = required self.callback = callback self.nargs = nargs self.multiple = multiple self.expose_value = expose_value self.default = default self.is_eager = is_eager self.metavar = metavar self.envvar = envvar self._custom_shell_complete = shell_complete if __debug__: if self.type.is_composite and nargs != self.type.arity: raise ValueError( f"'nargs' must be {self.type.arity} (or None) for" f" type {self.type!r}, but it was {nargs}." ) # Skip no default or callable default. check_default = default if not callable(default) else None if check_default is not None: if multiple: try: # Only check the first value against nargs. check_default = next(_check_iter(check_default), None) except TypeError: raise ValueError( "'default' must be a list when 'multiple' is true." ) from None # Can be None for multiple with empty default. if nargs != 1 and check_default is not None: try: _check_iter(check_default) except TypeError: if multiple: message = ( "'default' must be a list of lists when 'multiple' is" " true and 'nargs' != 1." ) else: message = "'default' must be a list when 'nargs' != 1." raise ValueError(message) from None if nargs > 1 and len(check_default) != nargs: subject = "item length" if multiple else "length" raise ValueError( f"'default' {subject} must match nargs={nargs}." ) async def to_info_dict(self) -> t.Dict[str, t.Any]: """Gather information that could be useful for a tool generating user-facing documentation. Use :meth:`click.Context.to_info_dict` to traverse the entire CLI structure. .. versionadded:: 8.0 """ return { "name": self.name, "param_type_name": self.param_type_name, "opts": self.opts, "secondary_opts": self.secondary_opts, "type": await self.type.to_info_dict(), "required": self.required, "nargs": self.nargs, "multiple": self.multiple, "default": self.default, "envvar": self.envvar, } def __repr__(self) -> str: return f"<{self.__class__.__name__} {self.name}>" def _parse_decls( self, decls: t.Sequence[str], expose_value: bool ) -> t.Tu
(param_decls: Optional[Sequence[str]] = None, type: Union[asyncclick.types.ParamType, Any, NoneType] = None, required: bool = False, default: Union[Any, Callable[[], Any], NoneType] = None, callback: Optional[Callable[[asyncclick.core.Context, ForwardRef('Parameter'), Any], Any]] = None, nargs: Optional[int] = None, multiple: bool = False, metavar: Optional[str] = None, expose_value: bool = True, is_eager: bool = False, envvar: Union[Sequence[str], str, NoneType] = None, shell_complete: Optional[Callable[[asyncclick.core.Context, ForwardRef('Parameter'), str], Union[List[ForwardRef('CompletionItem')], List[str]]]] = None) -> None
[ 0.05311570316553116, 0.004890963435173035, 0.007934050634503365, -0.005017199087888002, 0.08242388069629669, 0.01770523376762867, 0.03599061444401741, 0.004831874277442694, -0.03614102303981781, -0.046841517090797424, 0.015352414920926094, 0.018167203292250633, -0.010523226112127304, 0.0011831243755295873, -0.010147204622626305, 0.08018924295902252, 0.010974451899528503, 0.04877534136176109, -0.001283844350837171, 0.025118226185441017, 0.03721537068486214, -0.0056564356200397015, -0.01642676070332527, -0.02226046472787857, 0.011269897222518921, -0.06888711452484131, 0.0463688038289547, -0.04129788652062416, -0.015739180147647858, 0.007208866532891989, -0.005506027024239302, -0.04503661394119263, 0.00544425193220377, 0.024731460958719254, 0.04899021238088608, 0.008508825674653053, -0.01845727674663067, 0.1284918636083603, 0.018371328711509705, -0.054920606315135956, -0.028878439217805862, -0.03053293377161026, -0.04718530923128128, -0.04404821619391441, 0.03203701972961426, 0.048603445291519165, 0.005887419916689396, 0.03792443871498108, -0.07808352261781693, -0.0566825345158577, 0.042114391922950745, -0.028083423152565956, 0.020541509613394737, -0.010217037051916122, -0.02258276753127575, -0.012505396269261837, 0.04183506220579147, 0.0316932275891304, 0.007611746434122324, 0.031027132645249367, 0.030425500124692917, 0.0542759969830513, -0.00959391612559557, -0.01924154907464981, -0.002795987296849489, -0.018038282170891762, 0.004308130592107773, -0.03749470040202141, -0.04088963568210602, 0.05633874237537384, -0.020133256912231445, -0.016523452475667, -0.03790295124053955, 0.004643863532692194, 0.038719456642866135, -0.008369160816073418, -0.0213042963296175, -0.03626994416117668, 0.009475737810134888, -0.01808125525712967, 0.03691455349326134, 0.03850458562374115, -0.03852607309818268, -0.03867648169398308, 0.01313926000148058, 0.023506706580519676, -0.06944577395915985, -0.02044481784105301, 0.03601210191845894, 0.01408468559384346, -0.05943286046385765, -0.027847066521644592, 0.026600824669003487, 0.03850458562374115, -0.008245611563324928, -0.0463688038289547, 0.0014073941856622696, -0.07636456191539764, -0.0082241240888834, -0.03128497675061226, -0.04731423035264015, -0.020734891295433044, 0.02758922427892685, -0.013611973263323307, 0.044177137315273285, -0.0062312111258506775, -0.009432763792574406, 0.06385917216539383, 0.013343386352062225, -0.01134510152041912, -0.03659224882721901, -0.0438118577003479, -0.04295238107442856, -0.0011287354864180088, -0.02610662579536438, 0.06996145844459534, -0.04718530923128128, -0.006940279621630907, -0.02522566169500351, 0.015739180147647858, -0.03367002680897713, 0.004899021238088608, -0.012548369355499744, 0.0025730603374540806, 0.036484815180301666, -0.006365504115819931, -0.0008594773826189339, 0.03992272540926933, 0.00416846526786685, 0.02524714730679989, 0.030210629105567932, 0.01564248837530613, -0.05268596485257149, 0.005465738940984011, 0.003467454109340906, 0.011065770871937275, -0.07180933654308319, 0.052728936076164246, -0.09316734969615936, 0.008707580156624317, 0.03882689028978348, 0.009228638373315334, 0.0010931477881968021, -0.05431897193193436, 0.008068343624472618, -0.07726701349020004, 0.03839715197682381, -0.0533735454082489, -0.04813073202967644, 0.04628285765647888, -0.004700266756117344, -0.024989305064082146, 0.012043426744639874, 0.00011733880819519982, 0.01790935918688774, -0.011065770871937275, -0.018844041973352432, -0.042844947427511215, -0.016566425561904907, -0.012236809358000755, -0.019907644018530846, -0.06493351608514786, 0.04632582888007164, -0.010072000324726105, 0.04464985057711601, 0.047700993716716766, -0.02539755590260029, 0.012580600567162037, -0.00006932894029887393, 0.017801925539970398, 0.017587056383490562, 0.0035453441087156534, 0.03749470040202141, 0.01378386840224266, 0.046970438212156296, 0.07236799597740173, -0.0007587573491036892, -0.018167203292250633, 0.02642892859876156, -0.09196408092975616, 0.02773963287472725, -0.010695121251046658, -0.02074563503265381, -0.011903761886060238, 0.022324925288558006, 0.02844870090484619, 0.0037575275637209415, 0.011302127502858639, -0.01194673590362072, -0.005882048513740301, 0.0029383383225649595, -0.011312871240079403, 0.016770552843809128, -0.00508703151717782, -0.05663955956697464, 0.01944567635655403, 0.010206294246017933, 0.021057195961475372, 0.07546211034059525, -0.008068343624472618, -0.009432763792574406, -0.055994950234889984, 0.02228195033967495, 0.02816937118768692, -0.032939471304416656, 0.02713799849152565, 0.0336485393345356, 0.013418590649962425, 0.027073537930846214, -0.026364468038082123, -0.04084666073322296, -0.05930393934249878, 0.011441792361438274, 0.030339552089571953, -0.011183949187397957, -0.09875395148992538, -0.0024696544278413057, -0.01931675337255001, -0.000007543508672824828, 0.03895581141114235, 0.11628729104995728, -0.01077569741755724, 0.06682436913251877, 0.0030511447694152594, 0.09127649664878845, -0.02980237826704979, 0.011463279835879803, -0.05002158507704735, 0.02449510619044304, 0.019628314301371574, -0.01879032328724861, -0.018296124413609505, 0.040030159056186676, 0.039471499621868134, -0.02743881568312645, -0.05719821900129318, 0.039299603551626205, 0.018779581412672997, -0.05844446271657944, 0.001778043806552887, 0.028061935678124428, 0.024881869554519653, -0.04688449203968048, 0.024108340963721275, -0.032509732991456985, 0.007504311855882406, 0.009932335466146469, 0.052728936076164246, 0.06721112877130508, 0.009438135661184788, 0.03175769001245499, 0.0415557324886322, -0.04398375377058983, -0.008567915298044682, -0.04310278967022896, 0.02464551292359829, -0.05315867438912392, -0.004684151615947485, -0.002659008139744401, -0.0050628590397536755, -0.00023215961118694395, -0.011248409748077393, -0.0044692824594676495, 0.09316734969615936, -0.003977768588811159, -0.019155602902173996, 0.04825965315103531, -0.07116472721099854, -0.0033788203727453947, 0.029737917706370354, 0.035303033888339996, 0.0068221017718315125, -0.01642676070332527, 0.0079233068972826, -0.04222182556986809, 0.030060220509767532, 0.0007298843120224774, -0.04585311934351921, 0.05238514766097069, 0.0010085429530590773, 0.05143972113728523, -0.02965196967124939, 0.013891302980482578, -0.0164482481777668, -0.013074799440801144, 0.04213587939739227, -0.008369160816073418, 0.03743024170398712, -0.02067043073475361, 0.04308130219578743, 0.033992331475019455, 0.03536749258637428, 0.03083375096321106, 0.009814157150685787, 0.060679104179143906, 0.029909811913967133, -0.026214059442281723, -0.005790728610008955, 0.02389347180724144, -0.08362714946269989, 0.019048167392611504, -0.02417280152440071, -0.015287953428924084, 0.014041711576282978, -0.004176523070782423, 0.00021570867102127522, 0.028061935678124428, -0.039750829339027405, -0.0073753902688622475, 0.03403530269861221, 0.030210629105567932, 0.028706545010209084, -0.03227337449789047, 0.013762381859123707, 0.0685003474354744, 0.018994450569152832, 0.04011610522866249, -0.05706929787993431, -0.0008695494034327567, 0.04119045287370682, -0.013826842419803143, 0.0015296011697500944, 0.033691514283418655, -0.048001810908317566, 0.011205436661839485, 0.014439219608902931, -0.019950618967413902, 0.03066185489296913, 0.019725006073713303, 0.03564682602882385, -0.0460679866373539, 0.024559566751122475, -0.023678602650761604, 0.0015739179216325283, -0.0067200385965406895, 0.0013664347352460027, -0.009239382110536098, 0.023399271070957184, 0.02789004147052765, -0.02595621719956398, 0.009099716320633888, 0.014922675676643848, -0.033046904951334, -0.011699635535478592, -0.04316725209355354, -0.02492484450340271, 0.054920606315135956, 0.006177493836730719, 0.14172782003879547, -0.06721112877130508, -0.0171250868588686, 0.021390242502093315, -0.02520417422056198, 0.033863410353660583, 0.03478734567761421, -0.09308139979839325, -0.0062903002835810184, -0.059690702706575394, 0.0086377477273345, -0.048001810908317566, 0.03538898006081581, -0.01918783225119114, 0.02034812606871128, 0.026772720739245415, 0.011012054048478603, -0.02226046472787857, 0.0035157997626811266, -0.024581052362918854, 0.03040401265025139, 0.008417506702244282, 0.031048620119690895, -0.03727983310818672, -0.010899247601628304, -0.06914495676755905, -0.010883131995797157, -0.03743024170398712, -0.020971247926354408, 0.021293552592396736, -0.05328759923577309, -0.029179256409406662, 0.018167203292250633, 0.007917935028672218, 0.007633233442902565, 0.012559113092720509, -0.04413416236639023, -0.03332623466849327, -0.00467878021299839, 0.023119941353797913, 0.0001563678088132292, 0.008181150071322918, -0.025311609730124474, 0.017801925539970398, 0.000287387752905488, 0.031478360295295715, 0.03682860732078552, 0.013644203543663025, 0.016587913036346436, 0.019510136917233467, -0.02625703439116478, 0.008310072124004364, 0.037688083946704865, -0.034550990909338, 0.09050296992063522, 0.028255319222807884, 0.03321880102157593, -0.025784321129322052, 0.07619266957044601, 0.047572072595357895, -0.05032240226864815, 0.03538898006081581, -0.0014584256568923593, -0.01446070708334446, -0.06630867719650269, 0.0012334843631833792, -0.017726721242070198, -0.014976393431425095, -0.0432102270424366, 0.05900312215089798, 0.025290122255682945, -0.029415613040328026, 0.0031827520579099655, -0.02258276753127575, 0.009583172388374805, 0.06390213966369629, 0.042415209114551544, 0.046540699899196625, -0.013461564667522907, 0.015223492868244648, -0.010458765551447868, -0.07266881316900253, 0.002378334989771247, 0.022496819496154785, -0.0014517110539600253, -0.060378286987543106, -0.02625703439116478, 0.032531220465898514, -0.02831977978348732, -0.06583596765995026, 0.08388499170541763, -0.008825758472084999, -0.042544130235910416, 0.0021446647588163614, -0.0014785696985200047, 0.021368756890296936, -0.0009702693787403405, -0.004998398013412952, -0.010345959104597569, 0.05530736967921257, -0.03790295124053955, -0.04615393653512001, 0.012537626549601555, 0.016888730227947235, 0.07679430395364761, -0.049935635179281235, -0.06927387416362762, -0.11198990046977997, -0.0782124400138855, 0.04030948877334595, 0.010931477881968021, -0.011366588063538074, 0.08358417451381683, -0.010781069286167622, -0.018328355625271797, -0.05075214058160782, -0.03392786905169487, 0.031177541241049767, 0.05002158507704735, 0.017211034893989563, -0.031199028715491295, -0.003343904158100486, -0.029694942757487297, 0.039901237934827805, -0.017361443489789963, 0.029093308374285698, -0.02711651101708412, 0.020229948684573174, 0.06003449484705925, -0.016920961439609528, -0.05431897193193436, -0.011012054048478603, 0.06557812541723251, -0.00300548505038023, 0.04804478585720062, -0.01320372149348259, -0.015524310059845448, -0.01763002946972847, 0.02479592151939869, 0.009185664355754852, -0.01700690947473049, 0.01158145722001791, -0.07172338664531708, 0.008970795199275017, 0.049205079674720764, -0.00887947529554367, 0.019703518599271774, -0.013730151578783989, 0.041211940348148346, -0.04297386854887009, 0.051396746188402176, 0.013912790454924107, 0.027911527082324028, -0.011484766378998756, 0.032509732991456985, -0.0036796375643461943, 0.04039543867111206, -0.10562977194786072, -0.038117822259664536, 0.003499684389680624, -0.07421587407588959, -0.027245432138442993, -0.02935115247964859, 0.039450012147426605, 0.04972076788544655, -0.030941186472773552, -0.03803187236189842, -0.027911527082324028, 0.06261292845010757, 0.005438880063593388, -0.026794208213686943, -0.052428118884563446, -0.03528154641389847, 0.002852390520274639, 0.011012054048478603, -0.016738321632146835, -0.0023675914853811264, 0.02173403464257717, -0.04009462147951126, -0.04434903338551521, 0.021186117082834244, -0.016469735652208328, 0.04030948877334595, -0.02698758989572525, 0.020358869805932045, -0.0026482646353542805, 0.004034171812236309, 0.007139034103602171, -0.004713696427643299, 0.1012464389204979, -0.026450416073203087, 0.018618429079651833, 0.037236858159303665, 0.058186616748571396, -0.07352828979492188, 0.04941995069384575, -0.00578535720705986, -0.0015739179216325283, 0.01860768534243107, -0.006757640745490789, -0.007053086068481207, -0.011248409748077393, -0.055092498660087585, 0.009346816688776016, -0.0213042963296175, 0.04318873956799507, -0.045079588890075684, -0.011592200957238674, 0.06033531203866005, 0.018446533009409904, 0.045810144394636154, 0.017844898626208305, 0.023979417979717255, 0.029587509110569954, -0.07236799597740173, 0.016082970425486565, 0.08869806677103043, 0.014858215115964413, 0.0027046678587794304, 0.007241096813231707, -0.005651063751429319, -0.023055480793118477, 0.015739180147647858, -0.023678602650761604, -0.03055442124605179, -0.03538898006081581, 0.02479592151939869, 0.029329665005207062, 0.016781296581029892, -0.007176636252552271, -0.047872889786958694, -0.03601210191845894, 0.0013859072932973504, 0.017490364611148834, -0.041684653609991074, -0.027761118486523628, 0.014471450820565224, 0.03596912696957588, 0.01158145722001791, 0.01700690947473049, -0.024237262085080147, -0.016147430986166, -0.04101855680346489, 0.05165459215641022, -0.0022158401552587748, -0.013644203543663025, -0.00259991898201406, 0.03835417702794075, 0.016985422000288963, -0.01431029848754406, 0.032359324395656586, -0.02019771933555603, -0.045208510011434555, -0.009889361448585987, -0.012924390845000744, 0.0062688132748007774, 0.037086449563503265, 0.0006261427188292146, -0.011538484133780003, 0.029007362201809883, -0.013751638121902943, 0.01076495461165905, 0.04774396866559982, -0.04026651382446289, 0.003236469579860568, -0.03478734567761421, -0.06501946598291397, 0.025419043377041817, -0.011366588063538074, 0.045939065515995026, 0.06235508248209953, -0.0031532077118754387, 0.002908793743699789, -0.001568546169437468, 0.04394078254699707, -0.009615403600037098, -0.05328759923577309, -0.028942901641130447, -0.045509327203035355, -0.03581871837377548, -0.005377105437219143, -0.04297386854887009, 0.012731008231639862, 0.016136687248945236, 0.024258749559521675, -0.001559145632199943, 0.03831120580434799, -0.04778694361448288, -0.014202863909304142, -0.05857338383793831, 0.01639453135430813, 0.018500249832868576, 0.004925879649817944, -0.025268634781241417, 0.02044481784105301, 0.03519560024142265, 0.0023890784941613674, 0.04045989736914635, 0.015427619218826294, 0.0067254104651510715, 0.042716026306152344, 0.030446985736489296, 0.023786036297678947, 0.07142256945371628, -0.043897807598114014, -0.04217885062098503, 0.019682031124830246, -0.010415791533887386, -0.012365730479359627, -0.006875819060951471, 0.012258295901119709, 0.02627852000296116, -0.025784321129322052, -0.016920961439609528, 0.05741309002041817, -0.013751638121902943, -0.041512757539749146, -0.01203268300741911, -0.0548776313662529, 0.0019284524023532867, 0.04984968900680542, 0.03538898006081581, 0.004638492129743099, -0.04795883595943451, 0.03579723462462425, -0.0024051936343312263, -0.028083423152565956, -0.045208510011434555, 0.0007433136343024671, 0.05388922989368439, -0.01956385374069214, 0.014245837926864624, -0.014546654187142849, -0.021948903799057007, -0.021089425310492516, 0.0005657107103615999, -0.020691918209195137, -0.006881190929561853, 0.012118631042540073, -0.026342982426285744, 0.012795469723641872, -0.09256571531295776, -0.0006536728469654918, -0.017307724803686142, -0.030189143493771553, -0.028233831748366356, -0.0642889067530632, -0.045939065515995026, -0.028985874727368355, -0.0891278013586998, 0.026342982426285744, 0.004028800409287214, 0.004015370737761259, -0.037086449563503265, -0.031908098608255386, 0.020842326804995537, 0.020208461210131645, 0.046540699899196625, -0.01866140216588974, -0.027847066521644592, 0.04228628799319267, -0.0213042963296175, 0.04099706932902336, 0.0086753498762846, -0.021443961188197136, -0.09634741395711899, -0.010544712655246258, -0.007284070830792189, 0.028233831748366356, 0.03893432393670082, 0.008648491464555264, -0.004869476426392794, -0.013762381859123707, -0.0005858546937815845, 0.07443074136972427, -0.00467878021299839, 0.02421577461063862, -0.013794612139463425, -0.03558236360549927, -0.014750780537724495, 0.07107877731323242, -0.037537675350904465, 0.025268634781241417, 0.010302985087037086, -0.020509278401732445, -0.01800605095922947, 0.03203701972961426, -0.05105295777320862, 0.09196408092975616, 0.018328355625271797, -0.05844446271657944, 0.006295671686530113, -0.025483503937721252, 0.061151813715696335, -0.023399271070957184, -0.012440934777259827, 0.019864670932292938, 0.026772720739245415, -0.0067630126141011715, -0.05384625867009163, 0.0445639006793499, -0.061280738562345505, -0.011753353290259838, -0.028856953606009483, -0.010168692097067833, 0.01579289697110653, 0.002558288164436817, -0.018392816185951233, -0.006489054299890995, 0.0764075368642807, -0.036205485463142395, -0.03697901591658592, -0.07073498517274857, 0.005591974593698978, 0.0045095705427229404, -0.05354544147849083, 0.02948007360100746, 0.048732366412878036, -0.03996569663286209, 0.02079935185611248 ]
9,580
asyncclick.core
__init__
null
def __init__( self, param_decls: t.Optional[t.Sequence[str]] = None, type: t.Optional[t.Union[types.ParamType, t.Any]] = None, required: bool = False, default: t.Optional[t.Union[t.Any, t.Callable[[], t.Any]]] = None, callback: t.Optional[t.Callable[[Context, "Parameter", t.Any], t.Any]] = None, nargs: t.Optional[int] = None, multiple: bool = False, metavar: t.Optional[str] = None, expose_value: bool = True, is_eager: bool = False, envvar: t.Optional[t.Union[str, t.Sequence[str]]] = None, shell_complete: t.Optional[ t.Callable[ [Context, "Parameter", str], t.Union[t.List["CompletionItem"], t.List[str]], ] ] = None, ) -> None: self.name: t.Optional[str] self.opts: t.List[str] self.secondary_opts: t.List[str] self.name, self.opts, self.secondary_opts = self._parse_decls( param_decls or (), expose_value ) self.type: types.ParamType = types.convert_type(type, default) # Default nargs to what the type tells us if we have that # information available. if nargs is None: if self.type.is_composite: nargs = self.type.arity else: nargs = 1 self.required = required self.callback = callback self.nargs = nargs self.multiple = multiple self.expose_value = expose_value self.default = default self.is_eager = is_eager self.metavar = metavar self.envvar = envvar self._custom_shell_complete = shell_complete if __debug__: if self.type.is_composite and nargs != self.type.arity: raise ValueError( f"'nargs' must be {self.type.arity} (or None) for" f" type {self.type!r}, but it was {nargs}." ) # Skip no default or callable default. check_default = default if not callable(default) else None if check_default is not None: if multiple: try: # Only check the first value against nargs. check_default = next(_check_iter(check_default), None) except TypeError: raise ValueError( "'default' must be a list when 'multiple' is true." ) from None # Can be None for multiple with empty default. if nargs != 1 and check_default is not None: try: _check_iter(check_default) except TypeError: if multiple: message = ( "'default' must be a list of lists when 'multiple' is" " true and 'nargs' != 1." ) else: message = "'default' must be a list when 'nargs' != 1." raise ValueError(message) from None if nargs > 1 and len(check_default) != nargs: subject = "item length" if multiple else "length" raise ValueError( f"'default' {subject} must match nargs={nargs}." )
(self, param_decls: Optional[Sequence[str]] = None, type: Union[asyncclick.types.ParamType, Any, NoneType] = None, required: bool = False, default: Union[Any, Callable[[], Any], NoneType] = None, callback: Optional[Callable[[asyncclick.core.Context, ForwardRef('Parameter'), Any], Any]] = None, nargs: Optional[int] = None, multiple: bool = False, metavar: Optional[str] = None, expose_value: bool = True, is_eager: bool = False, envvar: Union[Sequence[str], str, NoneType] = None, shell_complete: Optional[Callable[[asyncclick.core.Context, ForwardRef('Parameter'), str], Union[List[ForwardRef('CompletionItem')], List[str]]]] = None) -> None
[ 0.037454038858413696, 0.006742952857166529, -0.02321210317313671, -0.025378022342920303, 0.04356355965137482, 0.03261137008666992, 0.036023713648319244, 0.006671436596661806, -0.014946878887712955, -0.04184717312455177, 0.007989377714693546, 0.04679200425744057, -0.04450348764657974, -0.0029832457657903433, -0.005041889846324921, 0.04875359311699867, 0.03067021816968918, 0.056518204510211945, 0.014527997933328152, 0.0181651059538126, 0.05508787930011749, 0.0042654285207390785, -0.011892116628587246, -0.014139767736196518, 0.031160615384578705, -0.00959849078208208, 0.051818568259477615, -0.031834911555051804, -0.004812016151845455, 0.014456481672823429, -0.009884555824100971, -0.033714763820171356, -0.01721496321260929, 0.06505927443504333, 0.07172049582004547, -0.010911323130130768, -0.03571721538901329, 0.13502252101898193, -0.02253780886530876, -0.03827136382460594, -0.012310996651649475, -0.06424194574356079, -0.030833683907985687, -0.04687373712658882, 0.020576221868395805, 0.047568466514348984, 0.014017168432474136, 0.01833878830075264, -0.05643647164106369, -0.045034751296043396, 0.03994688764214516, -0.039538223296403885, 0.041745007038116455, -0.014701680280268192, -0.04560688138008118, 0.05418882146477699, 0.04307316616177559, 0.05112384259700775, -0.007851453498005867, 0.047405000776052475, 0.0034455466084182262, 0.04662853851914406, 0.00633939728140831, -0.013434822671115398, -0.01709236390888691, -0.014180634170770645, -0.021270951256155968, -0.049039654433727264, -0.030261553823947906, 0.07331428676843643, -0.006804252043366432, -0.014139767736196518, -0.05847978964447975, -0.020729470998048782, 0.06902331858873367, 0.010099104605615139, -0.031732745468616486, -0.04295056685805321, 0.0352063849568367, -0.0072844321839511395, 0.001703617163002491, 0.03571721538901329, -0.058152858167886734, -0.03297916799783707, 0.02129138447344303, 0.037617504596710205, -0.05190030112862587, -0.020749904215335846, 0.04376789182424545, 0.003805681597441435, -0.07188396155834198, -0.011963632889091969, 0.02157744951546192, 0.037617504596710205, -0.002444320358335972, -0.03923172503709793, 0.010088887996971607, -0.07127096503973007, -0.012699227780103683, -0.022088278084993362, -0.0441356897354126, -0.038516562432050705, 0.024315496906638145, -0.03289743512868881, 0.03299960121512413, -0.00447231438010931, -0.00996118038892746, 0.04875359311699867, -0.008827137760818005, -0.01919698156416416, -0.036309778690338135, -0.05970578268170357, -0.024867191910743713, 0.017419295385479927, -0.04544341564178467, 0.06644873321056366, -0.022108711302280426, -0.026052316650748253, 0.012219047173857689, -0.020729470998048782, -0.0363302119076252, 0.005542502738535404, -0.01584593951702118, -0.016724565997719765, 0.04348182678222656, -0.011565185151994228, -0.008530857041478157, 0.030772384256124496, 0.010323869064450264, 0.03626891225576401, 0.06608093529939651, 0.0036473243962973356, -0.0846751406788826, 0.00034672569017857313, 0.0021058956626802683, -0.008147734217345715, -0.06407848745584488, 0.06787905842065811, -0.06898245215415955, 0.0017904582200571895, 0.034041695296764374, -0.007069883868098259, 0.00574683491140604, -0.042827967554330826, -0.028095636516809464, -0.022374343127012253, 0.034675125032663345, -0.05717206746339798, -0.010737641714513302, 0.06738866120576859, -0.024376796558499336, -0.0035962413530796766, -0.02031059004366398, 0.0005660632159560919, 0.029280761256814003, -0.013506338931620121, -0.01783817447721958, -0.05042911320924759, -0.0006730182212777436, -0.020576221868395805, -0.018205972388386726, -0.05112384259700775, 0.022047411650419235, -0.008050676435232162, 0.04201063886284828, 0.02178177982568741, -0.027666538953781128, 0.0010025034425780177, 0.005854108836501837, 0.028402134776115417, 0.01245402917265892, 0.008122192695736885, 0.04286883398890495, -0.00038631499046459794, 0.04041685163974762, 0.06959544867277145, -0.007728854194283485, -0.01568247377872467, 0.003504292108118534, -0.07049450278282166, 0.005951166618615389, -0.012004499323666096, -0.014303233474493027, -0.020136909559369087, 0.044585220515728, 0.05075604468584061, 0.017695141956210136, 0.03297916799783707, -0.017368212342262268, 0.01578463986515999, -0.034041695296764374, -0.010533309541642666, 0.02353903464972973, 0.03275440260767937, -0.03191664442420006, 0.018808752298355103, -0.0009980336762964725, 0.03737230598926544, 0.04409482330083847, -0.005113405641168356, -0.017245613038539886, -0.022272177040576935, 0.008188600651919842, 0.015641607344150543, -0.007166941184550524, 0.048426661640405655, 0.02388639934360981, 0.02654271386563778, -0.030894983559846878, -0.03216183930635452, -0.04286883398890495, -0.0496935173869133, -0.0015018394915387034, 0.010037804953753948, -0.0030113414395600557, -0.07576626539230347, 0.022088278084993362, 0.0029628125485032797, -0.010359627194702625, 0.042419303208589554, 0.11287294328212738, 0.014946878887712955, 0.07736005634069443, 0.022619541734457016, 0.0837760791182518, -0.010257461108267307, 0.030649784952402115, -0.04883532598614693, -0.014650597237050533, 0.040110353380441666, -0.03440949320793152, -0.030486319214105606, 0.049897849559783936, 0.018297921866178513, -0.05075604468584061, -0.05745812878012657, 0.04630160704255104, 0.008311199955642223, -0.06534533947706223, 0.007820803672075272, 0.037106674164533615, 0.04687373712658882, -0.03912955895066261, 0.0177155751734972, -0.005716185085475445, 0.010952189564704895, 0.010911323130130768, 0.03252963721752167, 0.05234983190894127, 0.01856355369091034, 0.004919290542602539, 0.051369041204452515, -0.04646507278084755, -0.01222926378250122, -0.03841439634561539, 0.0483449287712574, -0.05067431181669235, -0.03457295894622803, 0.016571316868066788, -0.018727019429206848, 0.019053949043154716, -0.01055374275892973, 0.0074836560525000095, 0.10143035650253296, -0.037392739206552505, -0.029403360560536385, 0.05316716060042381, -0.06632613390684128, -0.018614636734128, 0.021924812346696854, 0.0677155926823616, 0.03428689390420914, 0.01725582964718342, -0.006083982530981302, -0.031119748950004578, 0.020688604563474655, 0.012035149149596691, -0.0543522872030735, 0.032570503652095795, -0.008908870629966259, 0.07106663286685944, -0.0109215397387743, 0.0173784289509058, 0.014609730802476406, -0.010104212909936905, 0.044626086950302124, -0.022823873907327652, 0.018011856824159622, -0.04274623468518257, 0.017368212342262268, 0.01578463986515999, 0.058438923209905624, 0.06244383007287979, 0.028218235820531845, 0.08410301059484482, 0.025745820254087448, -0.011984066106379032, 0.0018121685134246945, 0.028218235820531845, -0.06342462450265884, 0.017235396429896355, -0.05026564747095108, -0.0009380111005157232, 0.014139767736196518, 0.000548822688870132, -0.046097274869680405, 0.006937067955732346, -0.033878229558467865, 0.0028810796793550253, 0.02225174382328987, 0.026011450216174126, 0.04601554572582245, -0.05684513598680496, -0.0072333491407334805, 0.053698424249887466, 0.03050675243139267, 0.04348182678222656, -0.06469147652387619, -0.0006062910542823374, 0.054760947823524475, -0.017572542652487755, -0.013240707106888294, 0.00003392228973098099, -0.0416632741689682, -0.018410304561257362, 0.0013728549238294363, -0.03005722165107727, 0.012535762041807175, 0.021148351952433586, 0.05308542773127556, -0.04895792156457901, 0.034675125032663345, -0.016489583998918533, 0.008249900303781033, -0.013005725108087063, -0.005353495944291353, -0.003800573293119669, 0.012709444388747215, 0.009583165869116783, -0.039149992167949677, -0.0038644270971417427, -0.007013692520558834, -0.021373117342591286, -0.01595832221210003, -0.028565600514411926, -0.03028198704123497, 0.053126294165849686, -0.012055582366883755, 0.12938295304775238, -0.06628526747226715, -0.012239480391144753, -0.005946058314293623, -0.02541888877749443, 0.028259102255105972, 0.04883532598614693, -0.03968125581741333, -0.01349612232297659, -0.020290156826376915, 0.025950150564312935, -0.044748686254024506, 0.06272989511489868, -0.03855742886662483, -0.003843993879854679, 0.052104633301496506, 0.021413983777165413, -0.020392322912812233, 0.02353903464972973, -0.030588485300540924, 0.008587048389017582, -0.013710670173168182, 0.027932170778512955, -0.03696364164352417, -0.0015120561001822352, -0.07143443077802658, -0.00843890756368637, -0.05427055433392525, -0.03299960121512413, 0.001559307798743248, -0.029464660212397575, -0.05304456129670143, -0.026971811428666115, 0.0036524327006191015, 0.032509204000234604, -0.001084874733351171, -0.08524727076292038, -0.0510421097278595, -0.02689007855951786, 0.06085003912448883, 0.012832043692469597, 0.03600328043103218, 0.0036039038095623255, -0.005823459010571241, 0.006329180672764778, 0.010104212909936905, 0.04380875825881958, 0.009583165869116783, 0.007064775563776493, -0.00253243837505579, -0.036820609122514725, 0.004035554826259613, 0.04585207998752594, -0.033592164516448975, 0.07887211441993713, 0.031221915036439896, 0.00956273265182972, -0.017970990389585495, 0.05153250694274902, 0.0436861589550972, -0.022088278084993362, 0.03968125581741333, 0.014180634170770645, 0.0017610855866223574, -0.05496527999639511, -0.009639357216656208, -0.03786269947886467, 0.008811812847852707, -0.043277494609355927, 0.06706172972917557, 0.045647747814655304, -0.028402134776115417, 0.0074887643568217754, -0.01850225403904915, 0.029689425602555275, 0.06003271043300629, 0.03479772433638573, 0.025602787733078003, -0.023743366822600365, -0.004564263857901096, -0.00482478691264987, -0.09873317182064056, -0.03839396312832832, 0.04019208624958992, 0.006901309825479984, -0.05880672112107277, -0.01434409897774458, 0.02744177356362343, -0.028994696214795113, -0.04850839450955391, 0.08320394903421402, -0.003910401836037636, -0.03073151782155037, -0.013761753216385841, -0.019779328256845474, 0.022292610257864, -0.014824279583990574, -0.0002657911099959165, -0.0363302119076252, 0.04086637869477272, -0.04442175477743149, -0.028259102255105972, 0.016765432432293892, 0.018880266696214676, 0.06559053808450699, -0.021495716646313667, -0.031283214688301086, -0.08087456971406937, -0.054311420768499374, 0.05688600242137909, 0.007509197108447552, -0.030751951038837433, 0.10265634953975677, -0.016101352870464325, 0.0068910932168364525, -0.04720066860318184, -0.03283613547682762, 0.08034330606460571, 0.03442992642521858, 0.01568247377872467, -0.026910511776804924, -0.03034328669309616, -0.033367399126291275, 0.028177369385957718, -0.019176548346877098, 0.014783413149416447, -0.018553337082266808, 0.02970985881984234, 0.06873725354671478, -0.02032080665230751, -0.01474254671484232, -0.009358401410281658, 0.04364529252052307, -0.02088272012770176, 0.04170414060354233, 0.00982325617223978, -0.03193707764148712, -0.02564365416765213, 0.0029245002660900354, -0.02257867529988289, -0.007263998966664076, 0.03428689390420914, -0.0791173130273819, 0.018522687256336212, 0.04176544025540352, 0.002385574858635664, 0.050183914601802826, -0.028831230476498604, 0.05688600242137909, -0.009077444672584534, 0.07159789651632309, 0.010839806869626045, 0.04237843677401543, 0.0026333273854106665, 0.00826522521674633, -0.010247244499623775, 0.03346956521272659, -0.09652639180421829, -0.049039654433727264, -0.005172151140868664, -0.09505520015954971, -0.023069070652127266, -0.014844712801277637, 0.025888850912451744, 0.040498580783605576, -0.008684106171131134, -0.03369433060288429, -0.009787498041987419, 0.04137720912694931, 0.004260320216417313, 0.011330204084515572, -0.018154889345169067, -0.014977528713643551, 0.028769930824637413, -0.000469324819277972, -0.005465878173708916, -0.008571723476052284, -0.00046389727503992617, -0.004663875792175531, -0.02286474034190178, 0.033306099474430084, -0.007366165053099394, 0.03338783234357834, -0.020361673086881638, -0.01595832221210003, -0.005532286129891872, -0.015181859955191612, 0.05766246095299721, -0.030772384256124496, 0.08483860641717911, -0.01596853882074356, 0.004296078346669674, 0.04965265095233917, 0.05619127303361893, -0.02864733152091503, 0.035226818174123764, -0.031119748950004578, 0.005103189032524824, -0.00057308713439852, 0.009807931259274483, 0.0018977324943989515, -0.018757669255137444, -0.03888436034321785, 0.0007994485786184669, -0.02868819795548916, 0.031834911555051804, -0.06759299337863922, -0.030363719910383224, 0.02672661282122135, -0.004967819433659315, 0.031446680426597595, 0.015386192128062248, 0.021986111998558044, 0.05157337337732315, -0.05970578268170357, 0.0129852918908, 0.06975891441106796, 0.015345325693488121, 0.022946473211050034, -0.007243565749377012, -0.005757051054388285, -0.02558235451579094, 0.0038363314233720303, -0.04679200425744057, -0.03248877078294754, -0.017357995733618736, -0.01585615612566471, 0.027012677863240242, 0.023682067170739174, -0.0033638139721006155, -0.04438088834285736, -0.0505925789475441, -0.010145078413188457, 0.015049044042825699, -0.023109937086701393, -0.05721293389797211, -0.0007470885175280273, 0.012648144736886024, 0.014497348107397556, 0.00787188671529293, -0.04589294642210007, -0.004569372162222862, -0.03923172503709793, 0.05496527999639511, -0.007764612324535847, -0.002514559542760253, -0.012259913608431816, 0.026420114561915398, 0.02003474347293377, -0.01131998747587204, 0.004674092400819063, -0.01919698156416416, -0.054025355726480484, 0.007325298618525267, -0.020290156826376915, 0.013680020347237587, 0.01800164021551609, -0.008699431084096432, -0.04051901400089264, 0.03516551852226257, -0.0241724643856287, -0.0037009615916758776, 0.036820609122514725, -0.05218636617064476, 0.01386391930282116, -0.0009756848448887467, -0.052268099039793015, 0.01126890443265438, -0.03338783234357834, 0.039374757558107376, 0.08193708956241608, -0.005409686826169491, -0.02178177982568741, -0.011248471215367317, 0.0334082655608654, 0.009920313954353333, -0.04863099381327629, -0.03067021816968918, -0.03894565999507904, -0.06097263842821121, -0.010676342062652111, -0.02139355055987835, 0.022619541734457016, 0.004914182238280773, 0.03265223652124405, -0.026420114561915398, 0.04662853851914406, -0.04315489903092384, 0.012607278302311897, -0.04891705513000488, 0.023130370303988457, 0.018379654735326767, -0.01828770525753498, -0.004244995303452015, 0.0469963364303112, 0.03050675243139267, -0.006605028640478849, 0.012648144736886024, 0.014865146018564701, 0.024826325476169586, 0.07952597737312317, 0.040723346173763275, 0.013189624063670635, 0.07539846748113632, -0.022905606776475906, -0.022231310606002808, -0.003964039031416178, 0.025153256952762604, -0.01180016715079546, -0.024356363341212273, 0.018890483304858208, 0.005608910694718361, -0.030425019562244415, -0.01120760478079319, 0.06640786677598953, 0.015100127086043358, -0.06522274017333984, -0.03974255546927452, -0.02717614360153675, -0.03955865651369095, 0.04205150529742241, 0.029955057427287102, -0.005062322597950697, -0.03737230598926544, 0.04515735059976578, 0.013945652171969414, -0.026624446734786034, -0.06281162798404694, 0.0030241122003644705, 0.03955865651369095, -0.00792296975851059, 0.016203518956899643, -0.008086434565484524, -0.02644054777920246, -0.03992645442485809, -0.02382509969174862, -0.01055374275892973, -0.0027610347606241703, 0.006513079162687063, -0.0037111782003194094, -0.006814468652009964, -0.09628119319677353, 0.015008177608251572, -0.022333476692438126, -0.0005568044143728912, -0.014201067388057709, -0.07997550815343857, -0.03287700191140175, -0.05427055433392525, -0.10935842990875244, 0.02292603999376297, 0.0051874760538339615, 0.0044544353149831295, 0.0025247761514037848, -0.05406622216105461, 0.0206068716943264, -0.0030190038960427046, 0.03154884651303291, -0.013485905714333057, -0.014773196540772915, 0.022823873907327652, -0.023559467867016792, 0.022619541734457016, 0.024478960782289505, 0.009128527715802193, -0.08336741477251053, -0.017899474129080772, -0.0004993361071683466, 0.03367389738559723, 0.03146711364388466, -0.011187171563506126, -0.030098088085651398, 0.001561861950904131, -0.012954642064869404, 0.05418882146477699, -0.024131597951054573, 0.05508787930011749, -0.0414385087788105, -0.047405000776052475, -0.01867593638598919, 0.06277076154947281, -0.03671844303607941, 0.021822646260261536, 0.0007739070570096374, -0.01285247690975666, 0.006201473064720631, 0.029852891340851784, -0.06935025006532669, 0.07494894415140152, 0.023947698995471, -0.052840229123830795, 0.015427058562636375, -0.03641194477677345, 0.05672253668308258, -0.007626688107848167, 0.011830816976726055, 0.013802619650959969, 0.019963227212429047, 0.018757669255137444, -0.04953005164861679, 0.03056805208325386, -0.03171231225132942, -0.013506338931620121, -0.02353903464972973, 0.012116882018744946, 0.02507152408361435, -0.003943605814129114, -0.049897849559783936, -0.012780960649251938, 0.026522280648350716, -0.04650593921542168, -0.029362494125962257, -0.0791173130273819, -0.008505315519869328, 0.026930944994091988, -0.04082551226019859, 0.04051901400089264, 0.03927259147167206, 0.008888437412679195, 0.023702500388026237 ]
9,582
asyncclick.core
_parse_decls
null
def _parse_decls( self, decls: t.Sequence[str], expose_value: bool ) -> t.Tuple[t.Optional[str], t.List[str], t.List[str]]: raise NotImplementedError()
(self, decls: Sequence[str], expose_value: bool) -> Tuple[Optional[str], List[str], List[str]]
[ -0.035519976168870926, 0.030475109815597534, -0.05013979226350784, -0.025121374055743217, 0.002857041545212269, 0.05871949717402458, 0.032654356211423874, 0.019647523760795593, -0.03696136549115181, -0.012260397896170616, 0.009866660460829735, 0.021174710243940353, -0.012483470141887665, 0.0026168099138885736, 0.006233155261725187, -0.0041697365231812, 0.006374720484018326, 0.026648562401533127, -0.055116020143032074, 0.025395924225449562, -0.043447621166706085, -0.019956393167376518, 0.0016869843238964677, -0.029857371002435684, -0.05068889260292053, -0.06867195665836334, 0.034576207399368286, -0.060675669461488724, -0.02747221291065216, 0.01475709117949009, 0.03644658252596855, -0.04876703768968582, -0.013238484039902687, -0.024366360157728195, 0.02126050740480423, 0.04238373786211014, -0.029411226511001587, 0.05137526988983154, 0.02795267663896084, -0.00668787956237793, -0.012689382769167423, -0.02918815426528454, 0.018343407660722733, -0.03442177549004555, -0.07083404064178467, 0.04238373786211014, -0.004508634563535452, -0.016481611877679825, -0.019870596006512642, 0.02857041545212269, 0.025395924225449562, 0.04790906980633736, -0.0028291575144976377, -0.0511007197201252, 0.03347800672054291, -0.01233761478215456, 0.06304366886615753, 0.06122476980090141, 0.039295047521591187, 0.02548172138631344, 0.03126444295048714, 0.01914989948272705, 0.01671326346695423, -0.003099418245255947, -0.02376578189432621, -0.0025524620432406664, 0.042932841926813126, -0.05837630853056908, -0.0728931650519371, 0.021723810583353043, -0.01951024681329727, -0.04269260913133621, -0.0765995979309082, 0.02827870473265648, 0.10474102944135666, -0.021243348717689514, -0.009180284105241299, -0.015675120055675507, 0.009840920567512512, -0.04018733650445938, 0.009223181754350662, 0.012166020460426807, -0.04488901421427727, 0.01653308980166912, 0.023285318166017532, 0.04190327599644661, -0.01963036321103573, -0.0028742009308189154, 0.02783256024122238, 0.08909165114164352, -0.00952347181737423, 0.0003332679043523967, 0.009128805249929428, 0.013581671752035618, 0.009600688703358173, 0.028587574139237404, -0.02093447931110859, -0.0633525401353836, -0.04183463752269745, 0.03416438400745392, 0.04176599904894829, 0.03987846523523331, -0.043550580739974976, -0.004167591221630573, -0.006554894149303436, 0.00726700946688652, -0.05535625293850899, -0.02213563770055771, 0.08511066436767578, 0.028827806934714317, -0.042864203453063965, -0.09176851809024811, 0.0230794046074152, 0.05116935819387436, -0.01542630884796381, -0.0006273908657021821, 0.03423301875591278, -0.026288213208317757, 0.015829553827643394, -0.023199521005153656, 0.009935298003256321, -0.002453795401379466, -0.003191649913787842, 0.003120867535471916, 0.018841030076146126, -0.02922247350215912, -0.006932401098310947, -0.009943877346813679, 0.0713145062327385, -0.015692278742790222, 0.0012397672981023788, 0.02932542935013771, -0.0007265937165357172, -0.02074572443962097, -0.0037922293413430452, 0.0008558254921808839, 0.0009121298207901418, 0.014456802047789097, -0.03871162608265877, -0.01602688804268837, 0.009935298003256321, 0.0127751799300313, -0.007721733767539263, -0.00278411409817636, -0.08236516267061234, -0.008558254688978195, -0.032362643629312515, -0.0000027733224214898655, -0.0323454849421978, 0.060847263783216476, -0.06383299827575684, -0.06366140395402908, -0.043550580739974976, 0.016275698319077492, 0.0210031159222126, -0.00010181695688515902, -0.018583640456199646, -0.04938477650284767, 0.02649412676692009, 0.016584567725658417, -0.011925788596272469, -0.08421837538480759, 0.01817181333899498, 0.029771573841571808, 0.018738074228167534, 0.07543276250362396, 0.018686596304178238, -0.013324281200766563, -0.00740428501740098, -0.0008145356550812721, 0.014559757895767689, 0.07673687487840652, -0.017073610797524452, -0.021775290369987488, 0.012998252175748348, -0.02707754634320736, 0.022187115624547005, 0.05466987565159798, -0.01359025202691555, -0.027163343504071236, 0.03277447074651718, -0.024623751640319824, -0.060092248022556305, 0.0313330814242363, 0.05549352616071701, 0.05466987565159798, -0.0157780759036541, 0.009369037114083767, 0.02798699587583542, -0.009060167707502842, -0.03895185887813568, -0.0004539199871942401, 0.00413541728630662, 0.02380009926855564, -0.02616809867322445, -0.015760917216539383, 0.005722662899643183, 0.06149931997060776, -0.03493655472993851, -0.0412168987095356, 0.002869911026209593, -0.042315103113651276, -0.06033248081803322, 0.07014766335487366, 0.0012633614242076874, 0.03493655472993851, -0.008034893311560154, -0.05717514827847481, -0.07900191843509674, 0.013238484039902687, -0.012569267302751541, 0.011642659083008766, 0.045884259045124054, -0.03932936489582062, -0.0034790700301527977, -0.040530525147914886, -0.04186895862221718, 0.028587574139237404, 0.005456692073494196, -0.025996504351496696, 0.047737475484609604, -0.006640691310167313, 0.11146751791238785, 0.012843817472457886, 0.07454047352075577, 0.001223680330440402, 0.021277666091918945, -0.03630930930376053, -0.0024366360157728195, 0.04135417565703392, 0.011411006562411785, -0.026185257360339165, 0.002899940125644207, -0.040530525147914886, 0.037304554134607315, -0.04584994167089462, 0.04619312658905983, 0.012363353744149208, 0.013813324272632599, -0.001926143653690815, -0.0197676382958889, 0.03246559947729111, -0.04729133099317551, 0.028484618291258812, -0.001532549737021327, 0.014868627302348614, 0.049144547432661057, -0.01733958162367344, -0.00646909698843956, 0.06970151513814926, -0.013229903765022755, 0.042212143540382385, 0.03081829845905304, 0.01860079914331436, 0.019201377406716347, 0.006511995568871498, -0.10172097384929657, 0.05504738166928291, 0.018841030076146126, -0.038402754813432693, 0.033958468586206436, -0.03596612066030502, 0.013084049336612225, 0.01697065494954586, 0.03128160163760185, -0.009171703830361366, 0.0614306814968586, -0.05466987565159798, -0.04787474870681763, 0.006666430272161961, 0.024589432403445244, 0.024040332064032555, -0.010664572939276695, -0.014113613404333591, 0.015709439292550087, 0.03527974337339401, 0.0457126647233963, -0.04499197006225586, 0.020042188465595245, 0.03495371714234352, 0.020694246515631676, -0.017176568508148193, -0.04924750328063965, 0.08174742013216019, 0.04049620404839516, 0.02086584083735943, -0.02434920147061348, 0.03431881591677666, -0.03994710370898247, 0.00413541728630662, 0.019681841135025024, 0.002126694191247225, 0.049556370824575424, -0.03092125430703163, 0.10631969571113586, 0.06534302979707718, 0.023422593250870705, -0.002239302732050419, 0.04018733650445938, -0.018841030076146126, 0.029668617993593216, 0.006224575452506542, 0.052748020738363266, 0.005143532529473305, 0.057689931243658066, -0.0338040366768837, -0.021380623802542686, 0.0161727424710989, -0.006383299827575684, -0.015023062005639076, 0.002370143309235573, -0.029634298756718636, -0.06843172013759613, -0.0362749882042408, -0.004482895601540804, 0.007910487242043018, -0.04001574218273163, -0.02831302396953106, 0.02148357965052128, 0.009926717728376389, -0.009437674656510353, -0.048972953110933304, 0.00738712539896369, -0.03153899312019348, -0.016155583783984184, -0.008691240102052689, -0.003421157132834196, 0.0020923754200339317, 0.056454453617334366, 0.02707754634320736, -0.08744435012340546, -0.0028742009308189154, -0.008734138682484627, 0.029771573841571808, 0.03368391841650009, -0.0009952457621693611, -0.019887754693627357, -0.04087371006608009, 0.02168949320912361, -0.043516259640455246, -0.007116864901036024, -0.04866408184170723, 0.003358954330906272, 0.030183399096131325, 0.014027816243469715, -0.01253494806587696, -0.010441499762237072, 0.0197676382958889, 0.10954566299915314, 0.015434888191521168, -0.014431063085794449, -0.003015766153112054, -0.019458768889307976, 0.010836166329681873, 0.07515820860862732, 0.03527974337339401, -0.026940271258354187, 0.013324281200766563, -0.0007249850314110518, -0.009712225757539272, 0.07708006352186203, -0.021964043378829956, 0.016953496262431145, 0.006636401172727346, -0.01908126287162304, -0.07011334598064423, 0.012586425989866257, -0.008553965017199516, 0.026991749182343483, -0.005276517942547798, -0.009652167558670044, -0.018669435754418373, -0.01918421871960163, -0.07025061547756195, -0.044683098793029785, -0.005066315643489361, 0.05672900378704071, 0.024881143122911453, -0.030835457146167755, -0.06211705878376961, -0.06952992081642151, -0.008442428894340992, 0.01810317672789097, 0.001926143653690815, -0.0033096210099756718, -0.010638833045959473, 0.006910951808094978, 0.009952456690371037, -0.031315919011831284, 0.08785617351531982, 0.075020931661129, -0.01643013395369053, -0.029565660282969475, 0.0010075790341943502, -0.014310946688055992, 0.009317559190094471, -0.03280878812074661, -0.05055161938071251, -0.022942129522562027, -0.004495765082538128, 0.014456802047789097, -0.04619312658905983, -0.04313875362277031, 0.005739822052419186, -0.059577468782663345, -0.00044346347567625344, 0.04375649243593216, -0.01433668565005064, -0.026185257360339165, 0.038471393287181854, 0.044683098793029785, -0.02769528515636921, -0.002095592673867941, -0.03500519320368767, 0.05415509268641472, 0.04396240413188934, -0.04008437693119049, 0.05844494700431824, 0.023096563294529915, -0.02464091032743454, -0.01817181333899498, -0.0861402302980423, 0.009952456690371037, 0.07934510707855225, 0.009789442643523216, -0.03162479028105736, -0.07062812894582748, 0.007614487782120705, -0.009746544063091278, -0.051546864211559296, 0.04488901421427727, 0.06417618691921234, -0.03220821171998978, -0.10460375249385834, 0.014242309145629406, 0.043447621166706085, -0.014731352217495441, -0.024537954479455948, 0.02503557689487934, -0.013384338468313217, -0.02067708782851696, 0.06826012581586838, -0.03443893417716026, 0.051512543112039566, 0.07364818453788757, -0.03833412006497383, -0.049075908958911896, 0.04849248751997948, -0.031024210155010223, -0.025773432105779648, 0.014671294018626213, -0.028913604095578194, 0.03135024011135101, 0.002554606879130006, -0.01693633571267128, -0.009849500842392445, 0.026682879775762558, 0.0338040366768837, -0.004813214298337698, -0.00006032604505890049, 0.08339472860097885, 0.021174710243940353, 0.018446363508701324, -0.039741192013025284, -0.03126444295048714, 0.05230187624692917, -0.0019786942284554243, -0.037373192608356476, -0.03864298760890961, -0.050997763872146606, 0.012268977239727974, -0.05013979226350784, 0.03936368227005005, -0.04145713150501251, 0.02216995693743229, -0.006198836490511894, 0.017828626558184624, -0.06472528725862503, -0.009471993893384933, -0.017536915838718414, -0.01643013395369053, -0.01555500365793705, -0.02707754634320736, 0.04828657582402229, -0.010999181307852268, 0.053914863616228104, 0.0420062318444252, -0.05748401954770088, -0.060744307935237885, -0.03282595053315163, -0.03423301875591278, -0.027884040027856827, 0.07344227284193039, -0.046536315232515335, 0.08373791724443436, 0.05058593675494194, 0.07550139725208282, 0.0024859693367034197, -0.023130882531404495, 0.005195010919123888, 0.016584567725658417, -0.03400994837284088, 0.05854790285229683, 0.017142249271273613, 0.014413903467357159, -0.008862834423780441, 0.021243348717689514, -0.04255533218383789, -0.03926072642207146, -0.007490081712603569, 0.0019551001023501158, 0.0382997989654541, 0.0375104658305645, 0.02733493782579899, -0.030972732231020927, 0.006559183821082115, 0.007545849774032831, -0.029926009476184845, -0.04756588116288185, 0.0013802599860355258, -0.016404394060373306, -0.01721946708858013, -0.00026315561262890697, -0.055768080055713654, 0.017725668847560883, -0.02733493782579899, -0.05048298090696335, 0.04080507531762123, 0.004294142127037048, -0.08593431860208511, 0.006404749117791653, 0.01191720925271511, -0.01274086069315672, -0.04550675302743912, 0.020694246515631676, 0.034473251551389694, 0.053914863616228104, 0.03263719379901886, -0.026374010369181633, 0.04087371006608009, 0.04396240413188934, 0.060709986835718155, -0.046604953706264496, -0.012586425989866257, 0.005400924012064934, -0.010698891244828701, -0.05405213683843613, -0.046570636332035065, 0.04584994167089462, 0.03423301875591278, -0.03433597832918167, -0.010733210481703281, 0.02035105787217617, -0.028827806934714317, -0.011067818850278854, -0.01006399281322956, -0.0043885186314582825, -0.04186895862221718, -0.025773432105779648, -0.005237909499555826, 0.040393248200416565, -0.021397782489657402, -0.03682409226894379, 0.03023487888276577, -0.007318487856537104, -0.011187934316694736, 0.05048298090696335, -0.05068889260292053, -0.007232690695673227, -0.006559183821082115, 0.002019447972998023, -0.043687853962183, -0.01643013395369053, 0.032362643629312515, -0.002419476630166173, -0.0023079405073076487, -0.000793086423072964, -0.015014482662081718, 0.04639904201030731, -0.0026833026204258204, 0.043550580739974976, 0.02616809867322445, 0.00708683580160141, -0.015820974484086037, 0.03282595053315163, 0.029720095917582512, -0.015254714526236057, 0.019355813041329384, -0.0010890861740335822, -0.04073643684387207, -0.003865156788378954, -0.03761342540383339, 0.055253297090530396, -0.039706870913505554, -0.014619816094636917, -0.018652277067303658, -0.06994175165891647, 0.07570730894804001, -0.03217389062047005, -0.04066779837012291, -0.03346084803342819, -0.002897795056924224, 0.0013727527111768723, -0.005280808079987764, 0.03716728091239929, -0.030646704137325287, 0.0316762700676918, 0.0206084493547678, -0.009274660609662533, 0.008639762178063393, 0.02129482664167881, -0.021397782489657402, -0.012183180078864098, -0.04272692650556564, -0.01798306033015251, 0.041663043200969696, 0.03371823951601982, 0.010690311901271343, 0.00318521517328918, -0.008914313279092312, -0.0023272447288036346, -0.017862943932414055, -0.01191720925271511, 0.012380513362586498, 0.018995465710759163, -0.03905481472611427, 0.025087054818868637, -0.02402317151427269, 0.05446396395564079, -0.01777714677155018, 0.014087874442338943, 0.003249563043937087, 0.02314804308116436, -0.026631401851773262, -0.007035357411950827, 0.01889250986278057, 0.0041847508400678635, -0.08332608640193939, 0.01933865435421467, 0.0062889233231544495, -0.0010751441586762667, 0.013513034209609032, -0.05243915319442749, 0.01875523291528225, -0.024555113166570663, 0.042177826166152954, 0.011985846795141697, 0.012732281349599361, 0.08270835131406784, 0.025996504351496696, 0.009377616457641125, 0.03315197676420212, 0.026082301512360573, -0.0020795059390366077, 0.0035112439654767513, 0.05782720819115639, -0.03757910430431366, -0.011488224379718304, -0.028844965621829033, 0.025533199310302734, 0.005074894987046719, -0.07186360657215118, 0.0700790286064148, 0.027266301214694977, -0.01794874109327793, -0.02198120206594467, -0.018326248973608017, -0.0014220860321074724, 0.06156795844435692, -0.007490081712603569, -0.01758839376270771, -0.001439245417714119, 0.08257107436656952, 0.04080507531762123, 0.011891470290720463, -0.031127167865633965, 0.016524510458111763, 0.003586316481232643, -0.005422373302280903, 0.016327178105711937, 0.005332286469638348, 0.011290891095995903, 0.016327178105711937, -0.07337363064289093, -0.027815401554107666, -0.007777501828968525, -0.014482541009783745, 0.02038537710905075, 0.0292567927390337, -0.06966719776391983, -0.009094486944377422, -0.05484146997332573, 0.018875349313020706, 0.0066449809819459915, -0.024881143122911453, 0.015417728573083878, 0.010604514740407467, -0.005709793418645859, 0.016515931114554405, 0.03555429354310036, 0.0057698511518538, 0.025172851979732513, -0.0307153407484293, 0.013607410714030266, 0.002350839087739587, -0.008802776224911213, 0.024795345962047577, 0.0017459698719903827, -0.09787726402282715, 0.0005984343588352203, -0.013418657705187798, -0.0038201133720576763, -0.031487513333559036, -0.044168319553136826, 0.029857371002435684, -0.08215925097465515, 0.045884259045124054, 0.013187005184590816, 0.06575485318899155, 0.015829553827643394, -0.00790190789848566, 0.0076187774538993835, 0.04547243192791939, 0.008515356108546257, -0.06753943115472794, 0.0012944629415869713, -0.08593431860208511, 0.01933865435421467, 0.01999071054160595, 0.0038973307237029076, 0.0420062318444252, 0.0659264475107193, -0.009471993893384933, 0.02282201312482357, -0.042932841926813126, -0.02474386803805828, -0.024778185412287712, 0.005847068503499031, -0.05676332488656044, 0.02896508201956749, 0.04131985455751419, 0.065823495388031, -0.030663862824440002, 0.001545419218018651, -0.10329964011907578, 0.009394776076078415, -0.018034538254141808, -0.024194765836000443, -0.010784688405692577, -0.001261216588318348, -0.004294142127037048, 0.03176206722855568, 0.037270236760377884, -0.019784798845648766, 0.019716160371899605, -0.03654954209923744, 0.01918421871960163, 0.010947702452540398, -0.029170995578169823, -0.02362850494682789, -0.045403797179460526, 0.07001038640737534, -0.02165517397224903, 0.028587574139237404, -0.04440854862332344, 0.012071643956005573, -0.0725499764084816, 0.05007115378975868 ]
9,583
asyncclick.core
add_to_parser
null
def add_to_parser(self, parser: OptionParser, ctx: Context) -> None: raise NotImplementedError()
(self, parser: asyncclick.parser.OptionParser, ctx: asyncclick.core.Context) -> NoneType
[ -0.015731003135442734, 0.016386112198233604, -0.02538125589489937, 0.04370749741792679, 0.004140621982514858, 0.015033900737762451, 0.06913914531469345, 0.05250946804881096, -0.04511849954724312, -0.028908763080835342, 0.05072891712188721, -0.06960947811603546, 0.010842885822057724, 0.01232947874814272, -0.03288980573415756, 0.033847272396087646, 0.008310639299452305, -0.022676832973957062, -0.0034939120523631573, 0.003290240652859211, 0.014227612875401974, -0.042934805154800415, 0.0299502182751894, 0.010364152491092682, -0.00621933164075017, 0.04464816674590111, -0.004535366781055927, 0.005299659911543131, 0.00587497977539897, -0.053114183247089386, -0.024205420166254044, -0.06359592080116272, -0.013648094609379768, 0.027699332684278488, -0.01196832861751318, -0.0019747742917388678, -0.03937370330095291, 0.09164800494909286, 0.014353595674037933, -0.002370568923652172, -0.007101208437234163, 0.003865560283884406, 0.007731120567768812, 0.024978112429380417, -0.004686545580625534, 0.028891965746879578, -0.030655719339847565, 0.06661950051784515, 0.006345313973724842, -0.08546646684408188, 0.01748635806143284, 0.013807672075927258, 0.0075505455024540424, 0.01307697407901287, -0.051803965121507645, 0.012724223546683788, 0.05533147230744362, 0.04733578860759735, 0.06114346161484718, 0.050829701125621796, -0.010221372358500957, 0.008256047032773495, -0.004774733446538448, -0.018410230055451393, -0.004041935782879591, -0.001983173191547394, -0.021064259111881256, -0.007097009103745222, 0.007088609971106052, 0.02879117988049984, 0.017267988994717598, -0.031092459335923195, 0.0027317185886204243, 0.021030662581324577, 0.0278841070830822, -0.01662127859890461, -0.06688825786113739, 0.02502850443124771, 0.010733701288700104, 0.04323716089129448, -0.03749236464500427, 0.021937737241387367, 0.01782231219112873, 0.03265463933348656, -0.01521027646958828, 0.03487193211913109, 0.010700105689466, -0.03772753104567528, -0.01988842338323593, -0.01597457006573677, -0.02057712711393833, -0.02118184231221676, -0.01955246925354004, 0.012472258880734444, 0.022324083372950554, -0.027766522020101547, -0.020728304982185364, -0.012405067682266235, -0.01839343085885048, 0.022324083372950554, -0.055096305906772614, 0.007445560302585363, 0.017435966059565544, -0.043942663818597794, 0.027010628953576088, -0.05009060725569725, 0.018427027389407158, 0.0075295488350093365, 0.0011674369452521205, 0.009633454494178295, 0.0005516979726962745, -0.005135882645845413, -0.0006719061639159918, -0.015353056602180004, -0.03309137746691704, 0.03132762387394905, -0.002374768489971757, 0.01215310301631689, 0.03893696144223213, 0.0018771379254758358, -0.05882538482546806, 0.016461702063679695, -0.03013499267399311, -0.014571965672075748, -0.04464816674590111, -0.03443519026041031, -0.02092987671494484, 0.011892739683389664, 0.0035737010184675455, -0.03624933958053589, 0.00020249048247933388, 0.013538909144699574, 0.04931791499257088, -0.058220669627189636, 0.019115731120109558, -0.05442440137267113, -0.006887038238346577, 0.019384494051337242, -0.0612778440117836, 0.02741377241909504, -0.012262287549674511, -0.027984892949461937, -0.019821232184767723, -0.061949748545885086, -0.02709461748600006, 0.006849243771284819, -0.06645151972770691, 0.003913853317499161, 0.001424651127308607, 0.0386682003736496, -0.011178839020431042, 0.0414230152964592, 0.0025784398894757032, 0.04189335182309151, 0.04820926859974861, 0.03288980573415756, -0.010313759557902813, -0.01666327379643917, -0.01278301514685154, -0.036820460110902786, -0.01832624152302742, -0.03342733159661293, 0.03934010490775108, 0.02491092123091221, 0.0005228269728831947, 0.03540945425629616, -0.009944211691617966, 0.016453303396701813, -0.017654335126280785, 0.06544366478919983, 0.010036598891019821, -0.032285090535879135, 0.018678991124033928, 0.03372969105839729, 0.03493912145495415, 0.04599197953939438, 0.021887343376874924, 0.04007920250296593, -0.008961549028754234, -0.04582400247454643, 0.00845761876553297, -0.006471296306699514, -0.0029038945212960243, 0.01553783006966114, 0.016108950600028038, -0.03702203184366226, 0.011321619153022766, -0.0024692551232874393, -0.03611495718359947, -0.008125864900648594, 0.07874740660190582, -0.033410534262657166, 0.01857820525765419, -0.0599004365503788, -0.004463976714760065, 0.00020997067622374743, -0.017755120992660522, 0.028707191348075867, 0.023096775636076927, 0.03329295292496681, 0.049452293664216995, -0.012270686216652393, -0.02941269241273403, -0.004631953313946724, 0.017788715660572052, 0.049418698996305466, -0.006702264305204153, 0.017620740458369255, -0.060135602951049805, 0.0037374780513346195, 0.019787637516856194, -0.03265463933348656, -0.005610416643321514, 0.024524575099349022, 0.02190414071083069, 0.05442440137267113, -0.012463859282433987, 0.003953747916966677, -0.003237747820094228, 0.04458097368478775, 0.06809768825769424, 0.04135582596063614, 0.018124669790267944, 0.00679045170545578, 0.0770004466176033, -0.024071039631962776, 0.03245306760072708, -0.05066172406077385, 0.005744797643274069, 0.0325874499976635, -0.01829264499247074, 0.011943132616579533, -0.06386468559503555, -0.022861607372760773, -0.023264750838279724, -0.0016608680598437786, 0.06319277733564377, 0.026590686291456223, -0.02528047002851963, -0.0011569384951144457, 0.007680727634578943, 0.046663884073495865, -0.06487254053354263, -0.019216516986489296, -0.06470456719398499, 0.009591461159288883, 0.013555707409977913, -0.04313637688755989, 0.041120659559965134, 0.06393187493085861, 0.05882538482546806, -0.002968985354527831, -0.02180335484445095, 0.06477175652980804, -0.03863460570573807, -0.0006104897474870086, -0.03497271612286568, 0.019569266587495804, -0.006744258105754852, -0.042531661689281464, 0.007176797837018967, 0.008894357830286026, 0.005035096779465675, -0.007470756769180298, -0.04128863289952278, 0.010212973691523075, 0.04861241206526756, -0.07243148237466812, -0.002460856456309557, 0.023667894303798676, -0.014336798340082169, 0.0015674311434850097, -0.009759437292814255, 0.05764954909682274, 0.013118968345224857, 0.04306918755173683, -0.02665787748992443, 0.025952376425266266, -0.03658528998494148, 0.00488811731338501, 0.08828847110271454, 0.004820927046239376, 0.012354674749076366, 0.03776112571358681, -0.055969785898923874, 0.0408518947660923, 0.004329595249146223, 0.13041698932647705, -0.028841571882367134, -0.03240267559885979, -0.03712281584739685, 0.08687746524810791, 0.023415930569171906, 0.04088548943400383, 0.051367226988077164, 0.03114285133779049, -0.01926690898835659, 0.05005700886249542, 0.039306510239839554, -0.04347233101725578, -0.006110146641731262, -0.05375249311327934, -0.0488811731338501, 0.0014844926772639155, 0.04327075928449631, -0.017318380996584892, 0.0571456216275692, -0.013228152878582478, 0.036921244114637375, 0.0040167393162846565, -0.0053584519773721695, 0.07552225142717361, -0.0632263720035553, 0.010977267287671566, -0.004531167447566986, 0.0320163294672966, -0.001556932576932013, -0.010691707022488117, -0.008860763162374496, -0.0036324928514659405, -0.06635073572397232, -0.03799629583954811, -0.032940201461315155, -0.09057295322418213, 0.026842651888728142, 0.05949729308485985, -0.013496915809810162, -0.006748457904905081, 0.020812293514609337, -0.029782241210341454, -0.017074815928936005, 0.024642158299684525, 0.0064880941063165665, 0.0018960352754220366, -0.01185914408415556, -0.07444720715284348, -0.012589842081069946, -0.014042839407920837, -0.01973724365234375, 0.027732927352190018, 0.008545806631445885, 0.027296189218759537, -0.05203913524746895, -0.053080588579177856, 0.05005700886249542, -0.053181372582912445, 0.009944211691617966, -0.014857525005936623, 0.0685008317232132, 0.036954838782548904, -0.026960235089063644, -0.022542452439665794, -0.024071039631962776, 0.019182922318577766, 0.061042677611112595, -0.017973490059375763, -0.01381607074290514, 0.025398053228855133, 0.017267988994717598, -0.07236429303884506, -0.018846968188881874, -0.031965937465429306, 0.0502585805952549, -0.013496915809810162, -0.0331081785261631, -0.053618114441633224, 0.04495052248239517, 0.017654335126280785, 0.019065337255597115, -0.022156106308102608, 0.033007390797138214, -0.04790690913796425, 0.06803049892187119, -0.03994482383131981, -0.01980443485081196, 0.03329295292496681, -0.002929090987890959, 0.06258805841207504, -0.07901616394519806, -0.05052734538912773, 0.03490552678704262, 0.04518568888306618, -0.005660809576511383, 0.0241550263017416, 0.040683917701244354, -0.05811988562345505, 0.02321435883641243, 0.026019567623734474, 0.02108105644583702, 0.0005564222810789943, -0.005614615976810455, -0.004291800782084465, -0.005635613109916449, 0.019065337255597115, -0.0408518947660923, -0.0077395192347466946, -0.03749236464500427, -0.03114285133779049, -0.07142362743616104, 0.031814757734537125, 0.026590686291456223, -0.06856802850961685, 0.06493972986936569, -0.01521027646958828, -0.017939895391464233, 0.011657572351396084, -0.04652950167655945, 0.11684448271989822, -0.019871626049280167, 0.028875168412923813, -0.03270503506064415, -0.016234932467341423, -0.01691523753106594, 0.016612879931926727, -0.051736775785684586, -0.005883378442376852, 0.06100907921791077, -0.036887649446725845, -0.05183756351470947, 0.04683186113834381, 0.0008792522130534053, -0.003149560187011957, -0.06097548454999924, 0.09682168066501617, 0.04491692781448364, -0.0483100526034832, -0.00885236356407404, 0.008701184764504433, -0.04075111076235771, -0.05728000029921532, -0.03265463933348656, 0.051669586449861526, 0.017142007127404213, -0.008331636898219585, 0.0055810208432376385, -0.007680727634578943, -0.02847202494740486, -0.058691006153821945, -0.0006813548388890922, 0.017368774861097336, 0.022643238306045532, -0.0010792493121698499, -0.00679045170545578, 0.032755427062511444, 0.03213391453027725, -0.07881459593772888, -0.03907134383916855, 0.04098627716302872, -0.017435966059565544, -0.07955369353294373, 0.03361210599541664, 0.04730219393968582, 0.06040436401963234, 0.010078592225909233, -0.0347711443901062, -0.03446878865361214, 0.036854054778814316, 0.017100011929869652, -0.014093232341110706, 0.009347895160317421, -0.004300199449062347, 0.040650323033332825, 0.049452293664216995, -0.03792910277843475, -0.020526733249425888, 0.06164739280939102, 0.02900954894721508, -0.0013784575276076794, -0.05906055495142937, 0.0013721584109589458, -0.0457904078066349, -0.0353422649204731, -0.02462536096572876, -0.03524148091673851, -0.015663811936974525, -0.0028577009215950966, 0.031193245202302933, -0.018695790320634842, -0.05476035177707672, -0.031092459335923195, 0.019434886053204536, 0.0032566452864557505, 0.051367226988077164, 0.0504937507212162, 0.01220349594950676, 0.022508857771754265, 0.08539927750825882, -0.06470456719398499, -0.009700645692646503, -0.000528076256159693, -0.014882721938192844, -0.04985543712973595, 0.007794111501425505, -0.061479415744543076, 0.07330496609210968, 0.0029836834874004126, 0.012976188212633133, 0.005383648443967104, 0.0325874499976635, -0.03161318600177765, -0.013060176745057106, -0.04132223129272461, 0.03372969105839729, -0.03092448227107525, 0.040179990231990814, 0.0033154371194541454, -0.039709653705358505, 0.08096469193696976, -0.06493972986936569, 0.013715284876525402, -0.035946980118751526, 0.012908997014164925, 0.018897362053394318, 0.01948527991771698, 0.08889319002628326, 0.012791413813829422, -0.019636457785964012, 0.008675988763570786, 0.03974325209856033, -0.018712587654590607, 0.0007826657383702695, -0.017519952729344368, 0.06282322853803635, -0.047570958733558655, 0.02781691588461399, 0.007466557435691357, -0.0911104753613472, 0.009028739295899868, 0.028371239081025124, -0.035543836653232574, 0.05721281096339226, 0.03604776784777641, 0.0024587565567344427, -0.03035336174070835, -0.004342193715274334, 0.01673046313226223, 0.07847864180803299, 0.025179684162139893, -0.02491092123091221, -0.014336798340082169, 0.014924716204404831, 0.038802582770586014, -0.02991662174463272, -0.016394510865211487, 0.007516950368881226, -0.008331636898219585, -0.044748950749635696, -0.023331942036747932, 0.0306389220058918, -0.019720446318387985, -0.06514130532741547, 0.047134216874837875, -0.021484199911355972, 0.05613776296377182, 0.05761595442891121, -0.05627214163541794, 0.00673585943877697, -0.012791413813829422, 0.009356293827295303, -0.016562487930059433, -0.007957888767123222, -0.03092448227107525, -0.07841145247220993, 0.02672506868839264, 0.03836584463715553, 0.008285443298518658, -0.017805512994527817, -0.01589898020029068, -0.020543530583381653, -0.01748635806143284, 0.016050158068537712, -0.051300037652254105, 0.015126287937164307, -0.08378670364618301, -0.025045303627848625, 0.025448447093367577, -0.004333795048296452, 0.045756809413433075, 0.02418862283229828, 0.0013627096777781844, -0.08069593459367752, 0.046697478741407394, -0.03430081158876419, -0.0055810208432376385, -0.022139308974146843, -0.047067027539014816, 0.02418862283229828, 0.03147880360484123, 0.02289520390331745, 0.06708983331918716, -0.01904853992164135, -0.0463615246117115, 0.016050158068537712, -0.043035589158535004, -0.0022403872571885586, -0.026573888957500458, -0.033847272396087646, -0.08687746524810791, 0.01814146712422371, -0.00731537863612175, -0.01941808871924877, -0.01735197752714157, -0.011086451821029186, 0.017536751925945282, 0.0013858064776286483, 0.031747568398714066, -0.04219570755958557, 0.0020829092245548964, -0.04132223129272461, 0.010767296887934208, 0.001869788859039545, 0.006173138041049242, 0.02759854681789875, 0.007180997170507908, -0.030840493738651276, 0.02847202494740486, 0.038231462240219116, -0.011111648753285408, 0.06295760720968246, 0.01320295687764883, -0.03530867025256157, 0.05348373204469681, -0.013068575412034988, -0.027833713218569756, -0.07901616394519806, -0.02618754282593727, -0.011254428885877132, 0.017217595130205154, -0.06913914531469345, -0.0252468753606081, -0.014210815541446209, -0.02020757831633091, 0.014840727671980858, -0.05281182751059532, 0.01861180178821087, -0.02922791801393032, 0.011506393551826477, -0.02202172577381134, 0.018746182322502136, -0.021097853779792786, 0.032100316137075424, -0.06725780665874481, -0.022693630307912827, -0.03268823400139809, -0.02057712711393833, 0.0469326451420784, -0.039709653705358505, 0.013631296344101429, 0.023785479366779327, -0.00030419501126743853, 0.04982184246182442, -0.046697478741407394, -0.03722360357642174, -0.01521027646958828, 0.028992751613259315, 0.023231156170368195, -0.002292879857122898, 0.030874088406562805, 0.00927230529487133, -0.0014729442773386836, -0.020778698846697807, 0.04448018968105316, 0.08566803485155106, 0.022878404706716537, -0.010624516755342484, -0.024054240435361862, -0.011288023553788662, -0.007290182169526815, 0.020627519115805626, 0.027934499084949493, 0.00012585117656271905, -0.06339434534311295, -0.029093537479639053, 0.08734780550003052, 0.001087648095563054, -0.026993831619620323, -0.025398053228855133, -0.043035589158535004, 0.014949912205338478, 0.03624933958053589, -0.01977084018290043, -0.003821466350927949, 0.023886265233159065, -0.03446878865361214, -0.04078470543026924, 0.024709349498152733, 0.08002402633428574, 0.01347171887755394, 0.10320478677749634, -0.06920633465051651, -0.0227776188403368, -0.015764597803354263, -0.04780612513422966, 0.03320896252989769, 0.024742944166064262, -0.01785590685904026, -0.06063953414559364, -0.1189945861697197, 0.039306510239839554, 0.01930050551891327, 0.08969947695732117, 0.020845890045166016, 0.012841806747019291, -0.018343038856983185, 0.027648938819766045, -0.035443052649497986, -0.0317307710647583, -0.017654335126280785, 0.009104329161345959, -0.00581198837608099, -0.03480473905801773, 0.03141161426901817, 0.02430620603263378, -0.01370688620954752, 0.03480473905801773, 0.00869278609752655, 0.02343272790312767, 0.029059942811727524, -0.005047695245593786, 0.023298347368836403, -0.03621574118733406, -0.016234932467341423, 0.025650018826127052, -0.04091908782720566, -0.02358390763401985, -0.021097853779792786, -0.031814757734537125, -0.034636761993169785, 0.05345013737678528, -0.02850561961531639, -0.049956224858760834, -0.02600276842713356, 0.0146307572722435, 0.014009243808686733, -0.013555707409977913, -0.028841571882367134, -0.026590686291456223, 0.05479395017027855, 0.051669586449861526, -0.024490980431437492, 0.006105947308242321, 0.02161858044564724, -0.00016049633268266916, -0.006807249505072832, 0.03520788252353668, -0.026573888957500458, 0.01439558994024992, -0.0009768885793164372, -0.03903774917125702, 0.07659730315208435, -0.019434886053204536, 0.012631836347281933, 0.020073197782039642, 0.08015840500593185, -0.027867307886481285, -0.01231268048286438, 0.01024656929075718, 0.03443519026041031, -0.0006876539555378258, 0.000037761914427392185, -0.0031432611867785454, 0.025952376425266266, 0.05183756351470947, 0.0023915660567581654, 0.06325996667146683, 0.010212973691523075, -0.003993642516434193, 0.007008821237832308 ]
9,598
asyncclick.types
Path
The ``Path`` type is similar to the :class:`File` type, but returns the filename instead of an open file. Various checks can be enabled to validate the type of file and permissions. :param exists: The file or directory needs to exist for the value to be valid. If this is not set to ``True``, and the file does not exist, then all further checks are silently skipped. :param file_okay: Allow a file as a value. :param dir_okay: Allow a directory as a value. :param readable: if true, a readable check is performed. :param writable: if true, a writable check is performed. :param executable: if true, an executable check is performed. :param resolve_path: Make the value absolute and resolve any symlinks. A ``~`` is not expanded, as this is supposed to be done by the shell only. :param allow_dash: Allow a single dash as a value, which indicates a standard stream (but does not open it). Use :func:`~click.open_file` to handle opening this value. :param path_type: Convert the incoming path value to this type. If ``None``, keep Python's default, which is ``str``. Useful to convert to :class:`pathlib.Path`. .. versionchanged:: 8.1 Added the ``executable`` parameter. .. versionchanged:: 8.0 Allow passing ``path_type=pathlib.Path``. .. versionchanged:: 6.0 Added the ``allow_dash`` parameter.
class Path(ParamType): """The ``Path`` type is similar to the :class:`File` type, but returns the filename instead of an open file. Various checks can be enabled to validate the type of file and permissions. :param exists: The file or directory needs to exist for the value to be valid. If this is not set to ``True``, and the file does not exist, then all further checks are silently skipped. :param file_okay: Allow a file as a value. :param dir_okay: Allow a directory as a value. :param readable: if true, a readable check is performed. :param writable: if true, a writable check is performed. :param executable: if true, an executable check is performed. :param resolve_path: Make the value absolute and resolve any symlinks. A ``~`` is not expanded, as this is supposed to be done by the shell only. :param allow_dash: Allow a single dash as a value, which indicates a standard stream (but does not open it). Use :func:`~click.open_file` to handle opening this value. :param path_type: Convert the incoming path value to this type. If ``None``, keep Python's default, which is ``str``. Useful to convert to :class:`pathlib.Path`. .. versionchanged:: 8.1 Added the ``executable`` parameter. .. versionchanged:: 8.0 Allow passing ``path_type=pathlib.Path``. .. versionchanged:: 6.0 Added the ``allow_dash`` parameter. """ envvar_list_splitter: t.ClassVar[str] = os.path.pathsep def __init__( self, exists: bool = False, file_okay: bool = True, dir_okay: bool = True, writable: bool = False, readable: bool = True, resolve_path: bool = False, allow_dash: bool = False, path_type: t.Optional[t.Type[t.Any]] = None, executable: bool = False, ): self.exists = exists self.file_okay = file_okay self.dir_okay = dir_okay self.readable = readable self.writable = writable self.executable = executable self.resolve_path = resolve_path self.allow_dash = allow_dash self.type = path_type if self.file_okay and not self.dir_okay: self.name: str = _("file") elif self.dir_okay and not self.file_okay: self.name = _("directory") else: self.name = _("path") async def to_info_dict(self) -> t.Dict[str, t.Any]: info_dict = await super().to_info_dict() info_dict.update( exists=self.exists, file_okay=self.file_okay, dir_okay=self.dir_okay, writable=self.writable, readable=self.readable, allow_dash=self.allow_dash, ) return info_dict def coerce_path_result( self, value: "t.Union[str, os.PathLike[str]]" ) -> "t.Union[str, bytes, os.PathLike[str]]": if self.type is not None and not isinstance(value, self.type): if self.type is str: return os.fsdecode(value) elif self.type is bytes: return os.fsencode(value) else: return t.cast("os.PathLike[str]", self.type(value)) return value def convert( self, value: "t.Union[str, os.PathLike[str]]", param: t.Optional["Parameter"], ctx: t.Optional["Context"], ) -> "t.Union[str, bytes, os.PathLike[str]]": rv = value is_dash = self.file_okay and self.allow_dash and rv in (b"-", "-") if not is_dash: if self.resolve_path: # os.path.realpath doesn't resolve symlinks on Windows # until Python 3.8. Use pathlib for now. import pathlib rv = os.fsdecode(pathlib.Path(rv).resolve()) try: st = os.stat(rv) except OSError: if not self.exists: return self.coerce_path_result(rv) self.fail( _("{name} {filename!r} does not exist.").format( name=self.name.title(), filename=format_filename(value) ), param, ctx, ) if not self.file_okay and stat.S_ISREG(st.st_mode): self.fail( _("{name} {filename!r} is a file.").format( name=self.name.title(), filename=format_filename(value) ), param, ctx, ) if not self.dir_okay and stat.S_ISDIR(st.st_mode): self.fail( _("{name} '{filename}' is a directory.").format( name=self.name.title(), filename=format_filename(value) ), param, ctx, ) if self.readable and not os.access(rv, os.R_OK): self.fail( _("{name} {filename!r} is not readable.").format( name=self.name.title(), filename=format_filename(value) ), param, ctx, ) if self.writable and not os.access(rv, os.W_OK): self.fail( _("{name} {filename!r} is not writable.").format( name=self.name.title(), filename=format_filename(value) ), param, ctx, ) if self.executable and not os.access(value, os.X_OK): self.fail( _("{name} {filename!r} is not executable.").format( name=self.name.title(), filename=format_filename(value) ), param, ctx, ) return self.coerce_path_result(rv) def shell_complete( self, ctx: "Context", param: "Parameter", incomplete: str ) -> t.List["CompletionItem"]: """Return a special completion marker that tells the completion system to use the shell to provide path completions for only directories or any paths. :param ctx: Invocation context for this command. :param param: The parameter that is requesting completion. :param incomplete: Value being completed. May be empty. .. versionadded:: 8.0 """ from .shell_completion import CompletionItem type = "dir" if self.dir_okay and not self.file_okay else "file" return [CompletionItem(incomplete, type=type)]
(exists: bool = False, file_okay: bool = True, dir_okay: bool = True, writable: bool = False, readable: bool = True, resolve_path: bool = False, allow_dash: bool = False, path_type: Optional[Type[Any]] = None, executable: bool = False)
[ 0.07236187160015106, -0.015700167044997215, -0.04881688579916954, -0.0064601292833685875, 0.056651175022125244, -0.024345261976122856, 0.06056831777095795, 0.031547755002975464, 0.0016347760101780295, -0.048058729618787766, 0.08373422920703888, 0.044225823134183884, 0.03458038344979286, 0.028430886566638947, -0.024471621960401535, 0.04325706884264946, 0.04624757543206215, 0.05736720934510231, 0.01615295559167862, 0.04869052395224571, 0.0103140939027071, -0.005428193137049675, 0.03331678733229637, -0.019943740218877792, -0.004219880793243647, 0.011446064338088036, 0.04372038692235947, -0.012604359537363052, -0.002306060865521431, -0.04940656200051308, 0.005322893615812063, -0.01936459355056286, 0.009882365353405476, 0.015626458451151848, 0.017521850764751434, -0.008050153031945229, -0.03091595694422722, 0.0833551436662674, -0.03314830735325813, -0.06857108324766159, -0.0760262981057167, 0.033464208245277405, -0.0451524592936039, -0.02784120850265026, 0.009250568225979805, 0.012446410022675991, -0.0503753200173378, 0.026198536157608032, -0.0516810342669487, 0.002748318947851658, 0.03196895122528076, 0.0014702454209327698, -0.03422236442565918, -0.024303143844008446, -0.014541871845722198, 0.04134061560034752, 0.03592821583151817, 0.04355190694332123, 0.006865532603114843, -0.004801660776138306, 0.05311310663819313, 0.040582459419965744, 0.016795283183455467, -0.004891165532171726, -0.0062337350100278854, 0.0023363344371318817, -0.00810280255973339, -0.05492426082491875, -0.016837403178215027, 0.06368518620729446, -0.034285541623830795, -0.003332731779664755, -0.012098921462893486, -0.007528919726610184, 0.07800593227148056, -0.022618349641561508, -0.04165651276707649, 0.03590715676546097, 0.052312832325696945, -0.016184546053409576, 0.025861576199531555, -0.028430886566638947, -0.02988401986658573, -0.08794620633125305, -0.012625419534742832, 0.05319734662771225, 0.017732448875904083, -0.04024549946188927, 0.0019967432599514723, 0.055429697036743164, -0.04595273733139038, -0.0059125712141394615, -0.024155722931027412, 0.022049732506275177, -0.002187598729506135, -0.04595273733139038, 0.023208027705550194, -0.0616634339094162, -0.03790784999728203, -0.01472088135778904, -0.03230591118335724, 0.01588970609009266, 0.013910074718296528, 0.0053676459938287735, 0.02257622964680195, -0.019185584038496017, -0.013078208081424236, -0.000011260062819928862, 0.017953578382730484, -0.03512794151902199, -0.0651172623038292, -0.007639484480023384, -0.012246341444551945, 0.014942009933292866, -0.011045926250517368, 0.01235164050012827, -0.049785640090703964, -0.06583330035209656, 0.018901275470852852, -0.01727966032922268, 0.03512794151902199, 0.052102230489254, -0.030410518869757652, 0.009798126295208931, 0.0929163470864296, 0.049743521958589554, -0.02866254560649395, 0.0014478692319244146, -0.01719542220234871, 0.03005249984562397, -0.004001384135335684, 0.04780600965023041, -0.0103140939027071, 0.04302540794014931, 0.010608932934701443, 0.04612121731042862, -0.056356336921453476, 0.04113001748919487, -0.018174707889556885, 0.08701957017183304, 0.031147615984082222, -0.042014531791210175, -0.0032827144023030996, -0.07387818396091461, 0.028030747547745705, -0.0009141319897025824, 0.04228831082582474, -0.04264632984995842, -0.0034090739209204912, 0.05917836353182793, -0.0048990631476044655, -0.01387848425656557, 0.009987665340304375, 0.05012260004878044, 0.03963476046919823, -0.013257216662168503, -0.029757661744952202, -0.04911172389984131, 0.020533418282866478, -0.01902763359248638, -0.011740903370082378, -0.09460113942623138, 0.019575191661715508, 0.005870451685041189, 0.03725499287247658, 0.07632113248109818, -0.01420491375029087, 0.008397641591727734, 0.009624381549656391, 0.009966605342924595, 0.03462250158190727, 0.009097883477807045, -0.03881342336535454, -0.004422582220286131, 0.0007502594962716103, 0.024892820045351982, 0.017016412690281868, 0.028957383707165718, 0.016100306063890457, -0.06435910612344742, 0.007586834952235222, -0.038623884320259094, -0.006170555483549833, 0.0280096884816885, 0.05336582660675049, 0.07691081613302231, -0.0016913744620978832, 0.019859500229358673, 0.04586849734187126, 0.03799208998680115, -0.10765828937292099, 0.008318666368722916, 0.062421590089797974, 0.018100997433066368, -0.01745866984128952, -0.024134663864970207, -0.022218210622668266, -0.01975420117378235, -0.0008562172297388315, 0.029504941776394844, -0.029210103675723076, -0.01392060425132513, 0.041846051812171936, 0.006212675012648106, -0.0373602919280529, -0.00023067189613357186, 0.04296222701668739, 0.008218632079660892, 0.003867127001285553, 0.006059990730136633, -0.07059283554553986, -0.059304721653461456, -0.024429501965641975, -0.00010924831440206617, 0.02992613986134529, -0.06806565076112747, 0.0054071336053311825, 0.01611083559691906, -0.007197226397693157, 0.05606149509549141, 0.09695985168218613, 0.08082795888185501, 0.008576651103794575, -0.014299683272838593, 0.07274094969034195, -0.07042435556650162, -0.003001037985086441, -0.015973946079611778, 0.006718113087117672, 0.011224934831261635, 0.0003321872791275382, -0.04129849374294281, 0.030473697930574417, 0.027251530438661575, -0.05719873309135437, -0.0007134046754799783, 0.04426794499158859, 0.014478691853582859, -0.053829144686460495, -0.018048347905278206, -0.009950810112059116, -0.022618349641561508, -0.02870466560125351, -0.0026838229969143867, -0.025292959064245224, -0.03401176258921623, 0.02592475712299347, 0.020301759243011475, 0.019185584038496017, -0.044310063123703, 0.029146922752261162, 0.05884140357375145, -0.06781292706727982, -0.04294116795063019, -0.025735218077898026, -0.006333769764751196, -0.0651172623038292, -0.04919596388936043, 0.038623884320259094, 0.010961686260998249, -0.027946507558226585, -0.0162898451089859, 0.008466086350381374, 0.03247439116239548, -0.04277268797159195, -0.07240398973226547, 0.0221550315618515, -0.03123185597360134, -0.03521217778325081, 0.010551017709076405, -0.029294343665242195, 0.03664425387978554, -0.06044195964932442, 0.017964107915759087, -0.059304721653461456, 0.04717421159148216, 0.013057148084044456, -0.026051115244627, 0.042330432683229446, 0.011467124335467815, -0.012846549041569233, -0.01187779288738966, -0.0035222710575908422, -0.011561893858015537, -0.013436226174235344, 0.02522978000342846, -0.02461904101073742, -0.005117559805512428, -0.055261220782995224, 0.050880756229162216, 0.027335770428180695, 0.012751779519021511, 0.011109105311334133, -0.007760579232126474, 0.07834288477897644, 0.036896973848342896, -0.0703401193022728, -0.08605081588029861, 0.03274817019701004, -0.10403598845005035, -0.000490630220156163, 0.049575041979551315, 0.011646133847534657, 0.011783023364841938, -0.023397566750645638, -0.01235164050012827, -0.001888811239041388, -0.04011914134025574, -0.008776719681918621, 0.029210103675723076, 0.016184546053409576, -0.012751779519021511, -0.005591407883912325, 0.04772176966071129, 0.04418370500206947, 0.05917836353182793, 0.0162793155759573, -0.012688599526882172, -0.019354062154889107, 0.04599485546350479, -0.04650029540061951, 0.04860628768801689, 0.014836710877716541, -0.017595559358596802, -0.001524211373180151, -0.02813604846596718, 0.008655625395476818, 0.045278821140527725, -0.009724415838718414, 0.06680205464363098, -0.037802550941705704, 0.05121771618723869, 0.01533161848783493, -0.003043157747015357, -0.015479038469493389, 0.03375904634594917, 0.005870451685041189, -0.0006624001543968916, 0.01706906221807003, 0.020354408770799637, 0.050922878086566925, -0.021986551582813263, -0.018574845045804977, -0.010777411982417107, -0.007191961165517569, -0.04334130883216858, 0.062210991978645325, 0.05062803626060486, 0.10226695239543915, -0.030347339808940887, 0.02146005444228649, -0.013320396654307842, -0.03708651289343834, -0.0343066044151783, -0.0009240038343705237, -0.05050167813897133, -0.006660198327153921, 0.008129127323627472, 0.000853584730066359, -0.028873145580291748, 0.07872196286916733, 0.0031221325043588877, -0.03529641777276993, 0.0070445421151816845, -0.0006587805110029876, -0.029294343665242195, 0.025693098083138466, 0.010529957711696625, 0.013731065206229687, -0.0035117410589009523, 0.020965145900845528, -0.02600899711251259, 0.007728989236056805, -0.1194518432021141, 0.026135355234146118, 0.006965567357838154, 0.027462130412459373, -0.0075605097226798534, -0.06406426429748535, 0.04102471470832825, 0.05879928544163704, 0.04367826506495476, 0.0015715962508693337, 0.012298990972340107, -0.034454021602869034, 0.004959610290825367, 0.015921296551823616, 0.01962784118950367, -0.00005318451439961791, 0.013457286171615124, -0.00008304681978188455, 0.01109857577830553, 0.04243573173880577, 0.01697429269552231, 0.04144591465592384, -0.030031440779566765, 0.019943740218877792, 0.02596687711775303, -0.011435534805059433, 0.023566046729683876, 0.037802550941705704, -0.027988627552986145, 0.01689005270600319, 0.06183191388845444, -0.005744092166423798, 0.0132466871291399, 0.07240398973226547, 0.046795133501291275, -0.04869052395224571, -0.005449253134429455, -0.0020994103979319334, -0.07021375745534897, -0.027778029441833496, 0.00955593679100275, -0.0075499797239899635, 0.031105495989322662, -0.0664650946855545, 0.02119680494070053, 0.03597033768892288, 0.005143884569406509, -0.040750935673713684, -0.025650978088378906, -0.0070445421151816845, 0.08592445403337479, 0.05147043615579605, 0.03925568237900734, -0.014752470888197422, -0.000989816035144031, 0.02240774966776371, -0.02054394781589508, 0.006028400734066963, 0.01235164050012827, -0.04224619269371033, -0.059346843510866165, -0.00434097507968545, -0.022513050585985184, -0.02539825811982155, -0.056651175022125244, 0.0325586311519146, 0.03304300829768181, -0.05041743814945221, 0.03904508426785469, 0.025124479085206985, 0.05484002083539963, 0.032642871141433716, -0.034454021602869034, -0.020480768755078316, 0.049659281969070435, 0.009929750114679337, -0.03066323697566986, -0.02592475712299347, 0.03982429951429367, 0.058083247393369675, -0.012341110967099667, -0.07615265250205994, -0.037634070962667465, -0.034074943512678146, 0.025377199053764343, -0.02253410965204239, -0.008129127323627472, 0.05193375423550606, 0.04024549946188927, 0.04243573173880577, -0.05622997507452965, -0.000023281079847947694, -0.0007134046754799783, 0.045320939272642136, 0.0251876600086689, -0.003685485338792205, -0.02285000868141651, -0.04134061560034752, -0.02076507732272148, -0.04767965152859688, 0.06465394049882889, 0.023081667721271515, 0.0062232050113379955, 0.045363057404756546, -0.00803435780107975, -0.08445025980472565, -0.05888352543115616, 0.018616965040564537, -0.06267430633306503, 0.0028852084651589394, 0.05420822277665138, 0.0015321088721975684, -0.024787520989775658, 0.03434872254729271, 0.024871760979294777, 0.01623719558119774, -0.02396618388593197, 0.017058532685041428, 0.03887660428881645, -0.02678821235895157, -0.008576651103794575, -0.0009338756208308041, 0.02596687711775303, -0.0330008864402771, 0.014520811848342419, -0.04121425375342369, -0.031021255999803543, 0.016184546053409576, -0.016995351761579514, -0.004372565075755119, 0.01902763359248638, 0.014257563278079033, 0.013151917606592178, 0.00972968153655529, -0.04338342696428299, -0.026998812332749367, -0.051007118076086044, -0.03573867678642273, 0.00255614728666842, 0.026682913303375244, -0.01776403933763504, -0.0020467606373131275, 0.021512703970074654, 0.011740903370082378, 0.007834288291633129, 0.0023389668203890324, -0.010540488176047802, -0.05408186465501785, -0.036454714834690094, 0.0223656315356493, -0.04277268797159195, -0.004346240311861038, -0.013699475675821304, 0.011035395786166191, -0.001962520880624652, 0.05050167813897133, 0.03597033768892288, 0.03672849386930466, -0.0162898451089859, 0.031379275023937225, 0.014994660392403603, 0.0712246373295784, 0.08794620633125305, -0.021354755386710167, 0.024429501965641975, -0.05197587236762047, 0.03426448255777359, 0.030157798901200294, 0.05740933120250702, -0.048227205872535706, 0.004196188412606716, 0.029336463660001755, -0.02609323523938656, 0.035022638738155365, -0.05281826853752136, 0.04940656200051308, -0.02453480288386345, -0.00940325204282999, -0.01841689646244049, 0.0251876600086689, 0.05896776542067528, -0.04498397931456566, 0.0007239346159622073, 0.036201994866132736, -0.06284278631210327, 0.011193345300853252, -0.016868991777300835, -0.040582459419965744, 0.007781638763844967, -0.08192307502031326, -0.01637408509850502, 0.037718310952186584, -0.0031168675050139427, 0.009903425350785255, 0.013699475675821304, 0.02080719731748104, -0.06456970423460007, 0.0015268438728526235, 0.024682221934199333, 0.015247379429638386, -0.022428810596466064, 0.0009924485348165035, 0.005554552655667067, 0.010129819624125957, 0.023734524846076965, 0.013194037601351738, -0.007086661644279957, 0.008597711101174355, 0.020617658272385597, -0.06187403202056885, -0.01545797847211361, -0.02767273038625717, -0.02988401986658573, 0.023502865806221962, 0.04557365924119949, -0.05753568932414055, -0.03653895482420921, -0.03725499287247658, 0.010951156727969646, 0.03881342336535454, -0.0008075161604210734, 0.011477653868496418, -0.027714848518371582, -0.006554898805916309, -0.03750770911574364, 0.029862960800528526, -0.02845194563269615, -0.0360335148870945, -0.012941318564116955, -0.010951156727969646, 0.02001745067536831, 0.01187779288738966, -0.01187779288738966, 0.018227357417345047, 0.016163485124707222, -0.04418370500206947, 0.03742346912622452, 0.042877987027168274, -0.00444100983440876, 0.024787520989775658, 0.012814958579838276, -0.034938398748636246, 0.03177941218018532, -0.021986551582813263, -0.00877145491540432, 0.014426042325794697, -0.001599237322807312, -0.05753568932414055, -0.0031379275023937225, 0.01253065001219511, 0.01191991288214922, -0.05850444734096527, -0.02432420291006565, -0.02167065441608429, -0.004759540781378746, -0.031505633145570755, -0.08605081588029861, 0.021944431588053703, -0.031105495989322662, 0.020575538277626038, 0.024745400995016098, 0.02371346578001976, -0.09215819090604782, -0.02011222019791603, -0.0529867485165596, 0.020617658272385597, 0.00592836644500494, -0.05058591812849045, -0.06503301858901978, -0.038371168076992035, 0.02596687711775303, -0.05050167813897133, -0.0003978349850513041, -0.01697429269552231, -0.052102230489254, 0.040413979440927505, 0.0058757164515554905, 0.02228139154613018, 0.08550325781106949, -0.03356950730085373, -0.049575041979551315, 0.020923025906085968, 0.028157107532024384, 0.007023482117801905, -0.04359402507543564, -0.007355175446718931, 0.04150909557938576, -0.018943393602967262, -0.032642871141433716, 0.028072867542505264, 0.004783233627676964, -0.048058729618787766, -0.00032988382736220956, 0.014426042325794697, -0.017774568870663643, 0.02723047137260437, 0.0193224735558033, 0.021217865869402885, -0.010256178677082062, -0.00736044067889452, -0.031063375994563103, -0.029504941776394844, -0.013520466163754463, 0.03439084440469742, 0.023523926734924316, 0.007213021162897348, -0.005865186452865601, -0.03961370140314102, -0.0058283316902816296, -0.036896973848342896, 0.0429832898080349, 0.03744453191757202, 0.030473697930574417, 0.032032132148742676, -0.00006716961797792464, 0.03925568237900734, -0.1007506400346756, -0.013120328076183796, 0.0007976443157531321, -0.01902763359248638, 0.003193209646269679, -0.08301819115877151, -0.022513050585985184, 0.0251876600086689, -0.039676882326602936, 0.01387848425656557, -0.009850775822997093, 0.04633181542158127, -0.03314830735325813, 0.020270168781280518, -0.026282774284482002, 0.007644749712198973, -0.025503559038043022, -0.04085623845458031, -0.013004498556256294, 0.013278276659548283, 0.004683198872953653, 0.005575612653046846, 0.022997427731752396, 0.012277930974960327, -0.09754952788352966, 0.010951156727969646, -0.03611775487661362, 0.011193345300853252, 0.008466086350381374, 0.0277990885078907, -0.04624757543206215, -0.0003478176658973098, -0.022828949615359306, 0.07181431353092194, 0.002520608715713024, 0.030852776020765305, 0.004835883155465126, -0.05353430658578873, -0.012204221449792385, 0.07585781812667847, 0.020649246871471405, -0.027546370401978493, 0.017774568870663643, -0.044141583144664764, 0.047005731612443924, 0.03611775487661362, -0.0573250912129879, 0.05842020735144615, -0.0037539300974458456, -0.02944176271557808, 0.07476270198822021, 0.004964875057339668, 0.048269327729940414, -0.055092740803956985, -0.05884140357375145, 0.006933977361768484, -0.00883989967405796, 0.03904508426785469, 0.0017321780323982239, 0.0005077414098195732, -0.005996811203658581, 0.022723648697137833, -0.04247784987092018, -0.020607126876711845, 0.040456097573041916, 0.01615295559167862, -0.02375558577477932, 0.008287076838314533, 0.03266393020749092, -0.01928035356104374, 0.01387848425656557, -0.08230215311050415, 0.038286928087472916, -0.013583646155893803, -0.013141387142241001, 0.05416610464453697, 0.022702589631080627, -0.060652557760477066, -0.005749356932938099 ]
9,600
asyncclick.types
__init__
null
def __init__( self, exists: bool = False, file_okay: bool = True, dir_okay: bool = True, writable: bool = False, readable: bool = True, resolve_path: bool = False, allow_dash: bool = False, path_type: t.Optional[t.Type[t.Any]] = None, executable: bool = False, ): self.exists = exists self.file_okay = file_okay self.dir_okay = dir_okay self.readable = readable self.writable = writable self.executable = executable self.resolve_path = resolve_path self.allow_dash = allow_dash self.type = path_type if self.file_okay and not self.dir_okay: self.name: str = _("file") elif self.dir_okay and not self.file_okay: self.name = _("directory") else: self.name = _("path")
(self, exists: bool = False, file_okay: bool = True, dir_okay: bool = True, writable: bool = False, readable: bool = True, resolve_path: bool = False, allow_dash: bool = False, path_type: Optional[Type[Any]] = None, executable: bool = False)
[ 0.013992829248309135, 0.020050249993801117, -0.007847951725125313, -0.033895786851644516, 0.03673117607831955, -0.04138931632041931, 0.041683901101350784, 0.06046374887228012, -0.044556111097335815, -0.030471226200461388, 0.06477206945419312, 0.09426748007535934, -0.011939933523535728, 0.030471226200461388, -0.05814388766884804, 0.033269792795181274, 0.029882054775953293, 0.06366737186908722, -0.0394008606672287, 0.012206901796162128, -0.0014832859160378575, 0.040100499987602234, 0.031557511538267136, 0.042420364916324615, 0.0340799018740654, 0.03159433603286743, -0.004533860832452774, -0.003974607679992914, -0.016855835914611816, -0.042641304433345795, 0.0066419909708201885, 0.009017089381814003, 0.015051497146487236, 0.03477954491972923, -0.009850215166807175, 0.0071851336397230625, -0.03153910115361214, 0.0628572627902031, -0.043377768248319626, -0.06248902902007103, 0.02886941470205784, 0.03483477979898453, -0.01907443441450596, -0.009362307377159595, -0.004262289498001337, 0.02310657873749733, -0.009831803850829601, 0.02128382958471775, -0.065950408577919, -0.013744272291660309, -0.004312921315431595, 0.054019682109355927, 0.0191480815410614, -0.02524232678115368, -0.045182108879089355, 0.040063679218292236, 0.04172072559595108, 0.06215761974453926, -0.007663835305720568, -0.0013371437089517713, -0.0404687337577343, 0.04304635897278786, -0.0011863985564559698, -0.018604937940835953, 0.0008630445227026939, 0.022830404341220856, -0.05081606283783913, -0.07471434026956558, 0.02023436687886715, 0.0766659751534462, 0.03929039090871811, 0.019774075597524643, 0.00503097428008914, 0.0064946976490318775, 0.1170978844165802, -0.03951133042573929, -0.07298365235328674, -0.011470437049865723, 0.029863642528653145, 0.02531597390770912, 0.013385245576500893, -0.016100959852337837, -0.05788612365722656, -0.048275258392095566, -0.0021932837553322315, 0.013090659864246845, 0.02054736390709877, -0.05714965984225273, 0.05077923834323883, 0.056265901774168015, -0.05567672848701477, -0.03803839907050133, -0.028169773519039154, -0.004041349980980158, 0.019626783207058907, -0.03001093491911888, 0.04374600201845169, -0.05055829882621765, 0.0016455382574349642, 0.0018584225326776505, -0.03840663284063339, -0.013026218861341476, -0.004678851924836636, -0.007419881410896778, 0.00018986979557666928, -0.018034178763628006, -0.008883604779839516, -0.00774668762460351, -0.0013175812782719731, -0.01609175279736519, -0.02800406888127327, -0.0082484045997262, -0.00809650868177414, 0.04606586694717407, -0.0239719245582819, -0.013072247616946697, -0.047649264335632324, -0.08226310461759567, 0.014250591397285461, -0.02074989303946495, 0.03223874047398567, 0.02246217243373394, -0.05280451849102974, 0.02853800542652607, 0.06963273137807846, 0.01726089045405388, -0.03032393380999565, -0.05365145206451416, 0.06447748094797134, 0.050042774528265, 0.01372586004436016, 0.016413956880569458, -0.00617709755897522, 0.016855835914611816, -0.022314880043268204, -0.0055418964475393295, -0.03906945139169693, 0.06502982974052429, -0.050926532596349716, 0.09559311717748642, 0.02822500839829445, -0.04282541945576668, 0.019737252965569496, -0.027120310813188553, 0.007024032063782215, 0.006743254605680704, 0.020915597677230835, -0.0638883113861084, -0.0260892603546381, 0.04035826399922371, -0.006665005348622799, -0.04323047772049904, -0.06863851100206375, 0.06514029949903488, 0.02043689414858818, -0.00014671757526230067, -0.014158532954752445, -0.04919584095478058, 0.010770795866847038, 0.014609618112444878, -0.014407089911401272, -0.017076775431632996, -0.008616636507213116, -0.002828484633937478, 0.00158224836923182, 0.027654249221086502, 0.0007335878326557577, -0.029513821005821228, 0.058401647955179214, -0.0009297866490669549, 0.0042415764182806015, -0.03393261134624481, -0.06160527095198631, 0.050411008298397064, -0.0024464435409754515, 0.01800656132400036, 0.031870510429143906, 0.002337124664336443, 0.009293263778090477, -0.05287816375494003, 0.02638384699821472, -0.015171172097325325, -0.027193957939743996, 0.012704015709459782, 0.054019682109355927, 0.05140523612499237, -0.0010868607787415385, 0.043488238006830215, 0.05932223051786423, 0.03490842506289482, -0.06318867206573486, 0.025573736056685448, 0.0031575923785567284, 0.02297769859433174, 0.014830557629466057, -0.029237648472189903, -0.025923555716872215, -0.020786715671420097, -0.02960588037967682, 0.014195356518030167, 0.0031990185379981995, 0.05512437969446182, 0.04757561907172203, 0.007231162395328283, -0.029955700039863586, 0.01549337524920702, -0.0012865117751061916, 0.04271494969725609, -0.027083488181233406, 0.021688884124159813, -0.010780001990497112, -0.07291000336408615, -0.003958497662097216, 0.020400071516633034, 0.017178038135170937, -0.03822251781821251, -0.014361061155796051, 0.02130223996937275, -0.02542644366621971, 0.04448246583342552, 0.07600315660238266, 0.0840306207537651, 0.01788688637316227, 0.019221728667616844, 0.035405538976192474, -0.005463647190481424, 0.005781247746199369, -0.01500546745955944, -0.04628680646419525, 0.03825933858752251, -0.052657224237918854, -0.03387737646698952, -0.0022450664546340704, 0.021007655188441277, -0.04186801612377167, -0.04175754636526108, 0.039658620953559875, 0.053062278777360916, -0.05505073443055153, -0.03822251781821251, 0.015889225527644157, -0.020068662241101265, -0.023124990984797478, -0.01017241831868887, 0.013652213849127293, -0.04142613708972931, -0.006282964255660772, 0.018687790259718895, -0.006918164901435375, -0.04345141723752022, 0.02542644366621971, 0.0627467930316925, -0.0649561807513237, -0.012575134634971619, 0.007056252099573612, -0.010209241881966591, -0.051147472113370895, -0.10008554905653, 0.022333290427923203, 0.015364494174718857, -0.012326577678322792, -0.005587925668805838, 0.032404445111751556, 0.03579218313097954, -0.01864176243543625, -0.08844941109418869, 0.005767439026385546, -0.018568115308880806, -0.029108766466379166, -0.009238028898835182, 0.05365145206451416, 0.05821753293275833, -0.0017502543050795794, 0.02916400134563446, -0.04249401018023491, -0.012832896783947945, 0.030158229172229767, -0.05250992998480797, 0.010687943547964096, 0.025408031418919563, 0.007847951725125313, 0.010826030746102333, 0.026347024366259575, 0.01522640697658062, 0.011829463765025139, -0.017076775431632996, -0.06517712026834488, 0.03268061950802803, -0.08682918548583984, 0.002311808755621314, 0.0014614220708608627, 0.07202624529600143, 0.0063704196363687515, -0.01693868823349476, 0.05759153887629509, -0.020179131999611855, -0.07482481002807617, -0.05633954703807831, 0.02853800542652607, -0.0936046615242958, -0.005721409805119038, -0.019313786178827286, 0.017095185816287994, -0.006517712492495775, -0.04724420979619026, -0.004791623447090387, -0.04937995597720146, -0.02319863811135292, 0.042420364916324615, 0.06528759002685547, 0.06307820230722427, -0.00021389120956882834, 0.036878470331430435, 0.1042833998799324, 0.042309895157814026, 0.06514029949903488, 0.004892887081950903, -0.04798067361116409, -0.009491188451647758, 0.03759652003645897, -0.023990336805582047, 0.014443913474678993, -0.014664852991700172, -0.008262213319540024, -0.028574829921126366, -0.020363248884677887, 0.002925145672634244, -0.0035396332386881113, -0.022517407312989235, 0.041904840618371964, -0.03643659129738808, 0.04606586694717407, 0.021799353882670403, -0.00492050452157855, -0.02940335124731064, 0.03350914269685745, -0.013293187133967876, -0.041573431342840195, 0.022333290427923203, -0.012473870068788528, 0.03862757235765457, 0.02702825330197811, -0.04186801612377167, -0.021965058520436287, 0.0013129784492775798, -0.05556625872850418, 0.030379168689250946, -0.015530198812484741, 0.07673961669206619, 0.007461307570338249, 0.00228879414498806, -0.03266220912337303, -0.05085288733243942, -0.029127178713679314, 0.012262136675417423, -0.03789110854268074, -0.006085039582103491, 0.026034025475382805, -0.006480888929218054, -0.04102108255028725, 0.062120795249938965, -0.009859421290457249, -0.045182108879089355, 0.008487755432724953, -0.019939780235290527, -0.031041985377669334, 0.05622907727956772, 0.006393434014171362, -0.006209317594766617, 0.029219236224889755, 0.051589351147413254, -0.03680482134222984, -0.05836482718586922, -0.10634549707174301, 0.04514528438448906, -0.009647686965763569, 0.03612359240651131, 0.00014434420154429972, -0.029513821005821228, -0.03947450593113899, -0.012869720347225666, 0.04426152631640434, -0.015428935177624226, 0.02470839023590088, -0.02842753566801548, -0.003304885234683752, 0.005012562498450279, 0.06885945051908493, 0.009118353016674519, 0.0035810593981295824, -0.0036639117170125246, 0.013026218861341476, 0.05313592776656151, -0.00529333995655179, 0.052546754479408264, -0.032643795013427734, 0.02202029339969158, 0.049895480275154114, -0.03233079984784126, 0.057112835347652435, 0.010365740396082401, -0.05880670249462128, -0.013606185093522072, 0.04330412298440933, -0.038922157138586044, 0.03457701578736305, 0.048606667667627335, 0.019497903063893318, -0.01587081328034401, -0.010384151712059975, 0.09124797582626343, -0.02277516946196556, -0.015539404936134815, -0.025168679654598236, -0.034319255501031876, 0.05122111737728119, -0.019829310476779938, -0.027635836973786354, 0.014987056143581867, -0.024524273350834846, -0.05225216969847679, -0.012492282316088676, 0.0022519708145409822, 0.04974818974733353, 0.04558716341853142, 0.03735717013478279, 0.012492282316088676, -0.0093162776902318, 0.019663607701659203, -0.02076830342411995, -0.0415366068482399, 0.0039700050838291645, -0.05505073443055153, -0.045071639120578766, 0.03547918424010277, -0.029642703011631966, -0.036583881825208664, -0.048606667667627335, -0.0489749014377594, 0.048275258392095566, -0.04566080868244171, -0.04234671965241432, 0.05652366206049919, 0.06525076925754547, -0.0478702038526535, 0.004395773634314537, -0.014674058184027672, 0.06576629728078842, 0.014149327762424946, 0.00968451052904129, -0.00040275411447510123, 0.07165801525115967, 0.02949541062116623, -0.03601312264800072, -0.02415604144334793, -0.024782035499811172, -0.04245718941092491, 0.012492282316088676, -0.0012186189414933324, 0.006982605904340744, 0.0034107519313693047, 0.05236263945698738, 0.041352491825819016, -0.07813890278339386, -0.018356382846832275, 0.011939933523535728, 0.011912316083908081, 0.009969890117645264, 0.010402563959360123, -0.02936652861535549, -0.05512437969446182, -0.008961854502558708, -0.005311751272529364, 0.04385647177696228, 0.006692622788250446, -0.00761320348829031, 0.016782188788056374, -0.027286015450954437, -0.06186303123831749, -0.06528759002685547, 0.021541591733694077, -0.029127178713679314, -0.017546270042657852, 0.05166299641132355, -0.001845764578320086, -0.03205462545156479, 0.02202029339969158, -0.00863044522702694, 0.026144495233893394, 0.007221956737339497, 0.03330661356449127, 0.062010325491428375, -0.025481678545475006, -0.022314880043268204, 0.005891717504709959, 0.059764109551906586, -0.026457494124770164, 0.06554535776376724, -0.0532095730304718, -0.03719146549701691, 0.03142863139510155, -0.05442474037408829, -0.002333672484382987, 0.002984983380883932, 0.0011196564882993698, -0.02404557168483734, -0.024782035499811172, -0.03811204805970192, 0.005357780493795872, -0.06153162196278572, 0.009850215166807175, 0.011000941507518291, 0.0016098656924441457, -0.03109722025692463, 0.019939780235290527, 0.05206805095076561, -0.03735717013478279, -0.011028558947145939, -0.009122956544160843, 0.02437698096036911, -0.01345889177173376, -0.03142863139510155, 0.028611652553081512, -0.05037418380379677, -0.019497903063893318, -0.008170154877007008, 0.01432423759251833, 0.03328820317983627, 0.06908039003610611, 0.023069756105542183, 0.025721028447151184, -0.02384304441511631, -0.019534725695848465, -0.008496961556375027, 0.03183368593454361, 0.07703420519828796, -0.017969738692045212, 0.05365145206451416, -0.0319257453083992, 0.0016098656924441457, 0.04963771998882294, 0.04054237902164459, 0.0055418964475393295, -0.037964753806591034, 0.0457712784409523, -0.04308318346738815, 0.01383632980287075, -0.014305826276540756, 0.0713634267449379, -0.0032956793438643217, -0.005864100065082312, -0.040395088493824005, -0.04418788105249405, 0.016542837023735046, 0.019976604729890823, 0.028077716007828712, 0.019995015114545822, -0.06974320113658905, -0.00863044522702694, 0.004842255264520645, -0.032533325254917145, -0.025039799511432648, -0.06911721080541611, 0.010163212195038795, -0.00334170856513083, -0.03310408815741539, 0.006195508874952793, -0.03770698979496956, 0.05144205689430237, -0.03352755308151245, 0.007705261465162039, 0.041683901101350784, 0.003910167142748833, 0.01048541534692049, -0.017923709005117416, 0.00540380971506238, 0.039769090712070465, 0.06532441824674606, 0.007148310076445341, 0.0006656949990428984, -0.01112061645835638, -0.006416448391973972, -0.08314686268568039, -0.014370267279446125, -0.08351509273052216, -0.06502982974052429, 0.005077003501355648, 0.015465757809579372, -0.0255553238093853, -0.04566080868244171, 0.012851309031248093, -0.0010247215395793319, 0.03360120207071304, -0.00343146501109004, 0.0016087150434032083, -0.01819067820906639, 0.036252472549676895, -0.05048465356230736, 0.020713068544864655, -0.037412405014038086, -0.048790786415338516, -0.009610864333808422, -0.05192076042294502, 0.028501182794570923, 0.0196820180863142, 0.007898584008216858, -0.014305826276540756, 0.033490732312202454, -0.057849299162626266, -0.0015880019636824727, 0.029992524534463882, -0.026991430670022964, 0.015843195840716362, 0.02747013233602047, 0.011562495492398739, 0.005569513887166977, -0.011580906808376312, -0.030600106343626976, 0.009238028898835182, -0.005196678917855024, -0.07228400558233261, -0.0019447270315140486, 0.03012140467762947, 0.0260892603546381, -0.08042193949222565, -0.02949541062116623, 0.002139199757948518, 0.0065039037726819515, 0.002393510192632675, -0.06039010360836983, 0.017509447410702705, -0.03500048443675041, -0.008635048754513264, -0.0033624216448515654, -0.01691107079386711, -0.025463266298174858, 0.011958344839513302, -0.009730539284646511, 0.08454614132642746, 0.019019199535250664, 0.005523485131561756, -0.0329752042889595, -0.015456552617251873, -0.0029527631122618914, -0.03441131114959717, -0.0018676284234970808, -0.004363553132861853, -0.020510541275143623, 0.04440882056951523, -0.01715042069554329, -0.008377285674214363, 0.05409333109855652, -0.027193957939743996, -0.012851309031248093, 0.028887826949357986, 0.016855835914611816, 0.004110393580049276, -0.04937995597720146, 0.028059303760528564, 0.01992136985063553, -0.03522142395377159, -0.017564682289958, 0.04588174819946289, 0.009620069526135921, 0.019626783207058907, 0.0066373879089951515, 0.03098675049841404, -0.042972713708877563, -0.03822251781821251, 0.00889281090348959, 0.01266719214618206, 0.015235613100230694, 0.028464360162615776, -0.0186325553804636, -0.011083792895078659, 0.026641609147191048, -0.017610711976885796, 0.022314880043268204, 0.03717305511236191, 0.015014673583209515, -0.024008749052882195, 0.0002761742507573217, -0.02702825330197811, -0.03161274641752243, 0.029108766466379166, 0.03446654602885246, 0.026660021394491196, 0.002918241312727332, 0.005256516393274069, -0.06455112993717194, -0.05332004278898239, 0.02544485405087471, -0.030176639556884766, 0.007070060819387436, -0.011442819610238075, -0.032938383519649506, 0.029311293736100197, -0.030415991321206093, 0.03078422322869301, 0.012004374526441097, 0.07408834993839264, 0.0021530084777623415, -0.015585433691740036, 0.0031115631572902203, -0.05228899046778679, -0.04175754636526108, -0.04024779424071312, 0.034227196127176285, 0.04035826399922371, 0.00022712456120643765, 0.02152317948639393, 0.05442474037408829, 0.038590747863054276, -0.07106883823871613, -0.017619917169213295, -0.025923555716872215, 0.06340961158275604, 0.02853800542652607, 0.013615390285849571, -0.07405152171850204, 0.047759734094142914, -0.022167585790157318, 0.009500394575297832, -0.006927371025085449, 0.04621315747499466, -0.031760040670633316, -0.10737655311822891, -0.032625384628772736, 0.03686005622148514, -0.003498207312077284, 0.014664852991700172, -0.000510634679812938, -0.04547669366002083, 0.02052895352244377, 0.03222033008933067, -0.047538794577121735, 0.06753381341695786, 0.040210969746112823, 0.01565908081829548, 0.08977504074573517, -0.01840241067111492, 0.061273861676454544, -0.0015454250387847424, -0.03065534122288227, -0.022443760186433792, 0.009896243922412395, 0.042309895157814026, 0.006844518706202507, 0.007461307570338249, 0.05799659341573715, 0.0019734951201826334, -0.04330412298440933, 0.003926277160644531, 0.07412517070770264, 0.018715407699346542, -0.03131816163659096, -0.003949292004108429, 0.03109722025692463, -0.013090659864246845, -0.0013417465379461646, -0.04514528438448906, -0.0255553238093853, -0.004994151182472706, -0.028482770547270775, 0.04868031665682793, 0.018393205478787422, -0.016054930165410042, 0.007419881410896778 ]
9,601
asyncclick.types
coerce_path_result
null
def coerce_path_result( self, value: "t.Union[str, os.PathLike[str]]" ) -> "t.Union[str, bytes, os.PathLike[str]]": if self.type is not None and not isinstance(value, self.type): if self.type is str: return os.fsdecode(value) elif self.type is bytes: return os.fsencode(value) else: return t.cast("os.PathLike[str]", self.type(value)) return value
(self, value: Union[str, os.PathLike[str]]) -> Union[str, bytes, os.PathLike[str]]
[ 0.022285351529717445, -0.026713965460658073, 0.006433939561247826, 0.007189827039837837, 0.007990178652107716, -0.032867781817913055, 0.04357470944523811, 0.026322681456804276, 0.025024333968758583, -0.009399687871336937, 0.11695808172225952, 0.04240085929632187, 0.014966579154133797, 0.008443711325526237, 0.04382370784878731, 0.04101358354091644, -0.017714453861117363, 0.013063520193099976, 0.060755595564842224, 0.09099110960960388, -0.009168474934995174, -0.008737173862755299, 0.04008873179554939, -0.0267851073294878, -0.010706928558647633, -0.0006219400675036013, 0.003661609487608075, -0.035108767449855804, -0.05598905682563782, -0.029488518834114075, 0.0308757945895195, -0.03220971301198006, 0.024206196889281273, -0.007847893983125687, 0.017527705058455467, 0.0011438361834734678, -0.02477533556520939, 0.06456171721220016, -0.012903450056910515, -0.062391869723796844, -0.09013739973306656, 0.02897273562848568, -0.06602013111114502, -0.02733646146953106, -0.01997322402894497, -0.0005480186664499342, -0.08537086099386215, 0.023654842749238014, -0.04517541453242302, 0.062498584389686584, 0.03224528580904007, -0.020204437896609306, -0.04499755799770355, -0.008674924261868, 0.005500195547938347, -0.0040239910595119, -0.0025722419377416372, 0.02913280576467514, -0.036247044801712036, 0.025629043579101562, 0.030911365523934364, 0.013321411795914173, 0.035215478390455246, 0.026589466258883476, 0.027211962267756462, 0.005162269342690706, -0.003534887218847871, -0.023174632340669632, -0.038167890161275864, 0.08558429032564163, -0.02182292565703392, -0.027425389736890793, -0.0664825588464737, -0.0028479185421019793, 0.07662034779787064, 0.007905697450041771, -0.0372074656188488, 0.033632561564445496, 0.04677611589431763, 0.011160461232066154, 0.04190286248922348, -0.009906576946377754, -0.004430836532264948, -0.08743398636579514, -0.020649077370762825, 0.028830451890826225, -0.03646047040820122, -0.005580230616033077, 0.016922995448112488, 0.02662503719329834, -0.016487248241901398, -0.07590892165899277, -0.03646047040820122, 0.04720297083258629, 0.004726522136479616, 0.03530440852046013, 0.020773576572537422, -0.05694947764277458, -0.021022574976086617, -0.037990033626556396, 0.014121763408184052, 0.029364019632339478, 0.012965699657797813, -0.01301016379147768, 0.02361927181482315, -0.015482361428439617, 0.006087120156735182, -0.003488200018182397, -0.01527782715857029, -0.023227987810969353, -0.05929717794060707, 0.001810795976780355, -0.021075930446386337, 0.0013228036696091294, -0.0047576469369232655, 0.0006219400675036013, -0.023868270218372345, -0.061289165169000626, 0.052894361317157745, 0.014984364621341228, 0.030360013246536255, 0.059830743819475174, -0.0006258306675590575, -0.009675364010035992, 0.016576174646615982, 0.09284081310033798, -0.007123131304979324, -0.006825222633779049, -0.01757216826081276, 0.04698954522609711, 0.021502785384655, 0.05200508236885071, -0.03670946881175041, 0.012334310449659824, -0.0018096844432875514, 0.06669598817825317, -0.10514844208955765, 0.0033837095834314823, 0.02056014910340309, 0.07847005128860474, 0.0006469510844908655, 0.004802111070603132, 0.07434379309415817, -0.06644698977470398, 0.025771329179406166, 0.06562884896993637, 0.05449506640434265, 0.0012060857843607664, -0.038061175495386124, 0.031000293791294098, -0.007469950243830681, 0.017643311992287636, 0.045210983604192734, 0.031516075134277344, 0.0064428322948515415, 0.003090247279033065, 0.013027949258685112, -0.059937458485364914, 0.04136929661035538, -0.051258087158203125, 0.009506400674581528, -0.08949711918830872, 0.02570018544793129, -0.03224528580904007, 0.05058223381638527, 0.05232522264122963, 0.005424606613814831, 0.03427284210920334, 0.01739431358873844, -0.01669178158044815, 0.005664712283760309, 0.012778950855135918, -0.010618001222610474, 0.034023843705654144, 0.021573927253484726, 0.00422630226239562, 0.010431252419948578, 0.010938141494989395, -0.004904378205537796, -0.030644582584500313, 0.03370370343327522, -0.012129776179790497, -0.015304505825042725, 0.06313886493444443, 0.04457070305943489, 0.01855037733912468, 0.00832365918904543, 0.014210691675543785, 0.05602462589740753, -0.003256987314671278, -0.04332571104168892, 0.03299228101968765, 0.018941659480333328, -0.0005596904666163027, 0.007260969374328852, -0.06445500254631042, 0.01865709014236927, -0.035535622388124466, -0.05253865197300911, 0.010039969347417355, -0.02477533556520939, -0.01374826580286026, 0.029168376699090004, 0.05634476989507675, -0.02470419369637966, -0.03372149169445038, 0.04314785450696945, 0.0390571691095829, 0.0055046421475708485, 0.015615752898156643, 0.0008481506374664605, -0.014797615818679333, -0.0662335604429245, -0.004288551863282919, 0.010217824950814247, -0.046135835349559784, -0.01783895306289196, 0.03699404001235962, -0.019706441089510918, 0.045424412935972214, 0.07128466665744781, 0.03823903203010559, 0.04709625989198685, -0.0007542204111814499, 0.027354246005415916, -0.03612254559993744, -0.07000410556793213, -0.04190286248922348, 0.03605140373110771, 0.020364508032798767, 0.012565523386001587, -0.04300557076931, 0.027976742014288902, 0.0002942960418295115, -0.014335189945995808, 0.044535133987665176, 0.05826561152935028, -0.014068406075239182, -0.021787354722619057, -0.01975979655981064, -0.02815459854900837, -0.03028886951506138, -0.030858008190989494, 0.01025339588522911, 0.014059513807296753, -0.033205706626176834, 0.04069344326853752, -0.006580670364201069, -0.003534887218847871, 0.0007503298111259937, 0.043076712638139725, 0.0316583625972271, -0.0019141747616231441, -0.049835238605737686, 0.05026209354400635, -0.010546858422458172, -0.04101358354091644, -0.06018645688891411, 0.04087129980325699, 0.017323169857263565, -0.035108767449855804, 0.011213818565011024, 0.017812274396419525, -0.011934135109186172, -0.10650014877319336, -0.09056425839662552, -0.05061780661344528, 0.01811463013291359, 0.005469070747494698, 0.03459298610687256, -0.08053317666053772, 0.016842959448695183, -0.062391869723796844, 0.017198670655488968, -0.04489084333181381, -0.007034203037619591, -0.01140056736767292, 0.007847893983125687, 0.022836705669760704, -0.03066236712038517, -0.05958174541592598, -0.015802502632141113, -0.0007542204111814499, -0.03596247360110283, -0.01039568055421114, 0.024135053157806396, 0.020489007234573364, -0.05986631661653519, -0.005842568352818489, 0.0255934726446867, 0.031018080189824104, -0.02068464830517769, -0.05413935333490372, -0.0015328960726037621, 0.020489007234573364, 0.025131046772003174, -0.0148420799523592, -0.10123561322689056, 0.08124460279941559, -0.04396599158644676, -0.04069344326853752, 0.030804652720689774, 0.031996287405490875, 0.04076458513736725, 0.031569432467222214, 0.013543731532990932, 0.01707417145371437, -0.060862310230731964, -0.036033619195222855, 0.06996853649616241, -0.02465083636343479, -0.022516565397381783, -0.07060881704092026, 0.007203166373074055, 0.02493540570139885, 0.08409029990434647, 0.0026078131049871445, 0.01637164130806923, -0.013419232331216335, 0.026055898517370224, -0.03507319465279579, 0.010955926962196827, -0.013339197263121605, -0.02939959056675434, -0.009826541878283024, -0.06288986653089523, -0.008803869597613811, 0.007656699046492577, 0.036407116800546646, 0.07039538770914078, -0.026162611320614815, 0.01855037733912468, 0.025771329179406166, -0.005651372950524092, 0.02443740889430046, -0.006371689960360527, 0.03870145604014397, -0.020542362704873085, -0.012716701254248619, 0.046029120683670044, 0.060044173151254654, -0.00598929962143302, 0.038879312574863434, 0.01571357436478138, -0.00788791198283434, 0.002814570674672723, -0.019546370953321457, 0.03519769385457039, 0.06221401318907738, -0.016727352514863014, -0.021467214450240135, -0.03370370343327522, -0.0448552742600441, -0.030199941247701645, 0.006393921561539173, 0.01849702000617981, -0.044428419321775436, 0.03557119145989418, -0.008599335327744484, 0.013570410199463367, 0.06353014707565308, -0.014690902084112167, 0.018674876540899277, -0.019599726423621178, 0.0498708114027977, -0.0031436041463166475, -0.01331251859664917, -0.005669158883392811, -0.012992378324270248, -0.0029635250102728605, -0.02372598461806774, 0.01871044747531414, 0.004415274132043123, -0.11069755256175995, 0.03468191251158714, 0.04926609992980957, -0.0028412488754838705, 0.005371250212192535, -0.0511869452893734, -0.014557510614395142, 0.024295123293995857, 0.0341661311686039, -0.009853220544755459, 0.04264985769987106, 0.026376038789749146, 0.03487755358219147, 0.012272060848772526, -0.008279195055365562, -0.008012411184608936, -0.01402394287288189, -0.0032836657483130693, 0.019012801349163055, 0.08594000339508057, 0.003915054257959127, 0.005380142945796251, 0.0377410352230072, -0.03866588696837425, 0.02472197823226452, -0.012343203648924828, 0.05036880820989609, 0.0033614777494221926, -0.00889724399894476, -0.015420111827552319, 0.06353014707565308, -0.04080015793442726, 0.017972344532608986, 0.007652252912521362, 0.040942441672086716, -0.04741640016436577, -0.03934173658490181, 0.009550864808261395, -0.09227167069911957, 0.01083142776042223, -0.0013772720703855157, -0.006078227423131466, 0.034841980785131454, -0.07654920220375061, 0.0070297569036483765, 0.003445959184318781, 0.01915508694946766, -0.06658927351236343, 0.008528193458914757, -0.010778071358799934, 0.06868797540664673, 0.05211179703474045, 0.01696745865046978, 0.05737633258104324, 0.01031564548611641, 0.061075735837221146, 0.03443291410803795, 0.06530870497226715, -0.00889724399894476, -0.03612254559993744, -0.04595797881484032, 0.0029346232768148184, 0.020542362704873085, 0.002590027404949069, -0.009684257209300995, 0.028990522027015686, -0.011204925365746021, -0.032547641545534134, 0.04346799850463867, -0.04232971742749214, 0.05894146487116814, 0.05353464558720589, -0.06374357640743256, -0.0670161247253418, 0.0339171327650547, -0.021591713652014732, -0.02881266549229622, 0.006709616165608168, -0.039199452847242355, 0.008599335327744484, 0.010404573753476143, -0.01039568055421114, 0.043290141969919205, 0.019226228818297386, 0.005851461086422205, -0.009630899876356125, -0.007821216247975826, -0.000603598658926785, 0.007781198248267174, 0.053392358124256134, -0.036300402134656906, 0.02372598461806774, 0.03148050606250763, 0.006749633699655533, 0.008252516388893127, 0.029648588970303535, -0.03688732534646988, -0.029862016439437866, -0.04866139218211174, 0.028901593759655952, 0.03781217709183693, 0.0670161247253418, 0.04254314675927162, -0.010280074551701546, -0.015731358900666237, -0.025006547570228577, -0.08800312876701355, -0.06274758279323578, -0.008359230123460293, -0.015855858102440834, 0.00899951159954071, -0.0042285253293812275, 0.011605101637542248, 0.031195934861898422, 0.03000430017709732, 0.03633597120642662, 0.020880289375782013, 0.021129287779331207, 0.13844308257102966, -0.08928368985652924, -0.0490882433950901, 0.03656718507409096, 0.05908374860882759, -0.031053651124238968, -0.05022652447223663, -0.05264536291360855, 0.030946936458349228, 0.02351255714893341, -0.028403596952557564, -0.03951959311962128, -0.005282321944832802, 0.010457930155098438, 0.02886602282524109, 0.02623375505208969, -0.01974201202392578, -0.042685430496931076, -0.007096452638506889, -0.05328564718365669, 0.008803869597613811, 0.00807021465152502, -0.005282321944832802, 0.009968826547265053, 0.024970976635813713, 0.016994137316942215, -0.02121821604669094, -0.005273429211229086, -0.010386788286268711, -0.08209831267595291, 0.008439265191555023, -0.04425056278705597, -0.03076908178627491, 0.0021420526318252087, -0.046349264681339264, -0.017972344532608986, 0.006456171162426472, 0.012947914190590382, -0.00788791198283434, -0.0002651165414135903, 0.024277338758111, 0.00244774273596704, 0.05243193730711937, 0.04314785450696945, 0.037136323750019073, -0.07043095678091049, 0.06445500254631042, -0.026429396122694016, -0.02776331454515457, -0.01156952977180481, 0.028990522027015686, -0.03791889175772667, -0.0029301769100129604, 0.03293892368674278, -0.020062152296304703, 0.05837232619524002, 0.001581806456670165, 0.047487542033195496, 0.0023610377684235573, -0.06762083619832993, -0.0108847850933671, 0.03181843087077141, 0.07117795199155807, -0.05353464558720589, -0.03487755358219147, 0.013285839930176735, -0.014682009816169739, -0.03414834290742874, -0.027674388140439987, -0.011818528175354004, -0.03491312637925148, -0.029808659106492996, -0.008190266788005829, -0.004708736669272184, 0.02760324440896511, -0.026109255850315094, 0.007594449445605278, 0.045531127601861954, -0.03453962877392769, 0.0088083166629076, -0.020151080563664436, 0.042365290224552155, -0.03951959311962128, -0.0005952616920694709, 0.010626893490552902, 0.01757216826081276, -0.003181398380547762, 0.01626492664217949, 0.0040862406603991985, -0.03208521381020546, 0.01790120266377926, 0.01557128969579935, -0.0036015831865370274, 0.03966188058257103, -0.06235630065202713, 0.03503762558102608, 0.03628261759877205, -0.05908374860882759, -0.03318792209029198, -0.020524578168988228, -0.004886592738330364, 0.01986651122570038, 0.0422230064868927, 0.03912831097841263, -0.07238737493753433, -0.028136812150478363, 0.01543789729475975, 0.01104485522955656, -0.023174632340669632, 0.010413466021418571, -0.020328937098383904, 0.01795455999672413, 0.03411277383565903, 0.018141308799386024, 0.01140056736767292, 0.008314765989780426, 0.018852731212973595, -0.017003029584884644, 0.017447669059038162, 0.059332747012376785, 0.04357470944523811, 0.019226228818297386, 0.005806996952742338, 0.020826932042837143, 0.023654842749238014, -0.04631369188427925, -0.05367692932486534, -0.08942597359418869, 0.0034570752177387476, 0.0005407932912930846, 0.004366363864392042, 0.0006347234593704343, -0.023210203275084496, -0.04364585131406784, -0.0037727695889770985, -0.00490882433950901, 0.03169393166899681, 0.023388057947158813, -0.06449057161808014, 0.033419135957956314, -0.033312421292066574, 0.002954632043838501, 0.0010115557815879583, -0.03784774988889694, -0.051756083965301514, -0.05100908875465393, 0.0005080010741949081, 0.0188705176115036, -0.0048154499381780624, -0.00979097094386816, 0.017972344532608986, -0.04595797881484032, 0.029506303369998932, -0.054637350142002106, -0.009782077744603157, -0.015526825562119484, -0.0296841599047184, -0.045317698270082474, 0.025878041982650757, -0.0019075052114203572, 0.04048001766204834, 0.03441512957215309, -0.05335678905248642, 0.03770546242594719, 0.046242550015449524, 0.044819701462984085, -0.06719398498535156, -0.02945294789969921, 0.01410397794097662, -0.023868270218372345, -0.00210092356428504, -0.02689182199537754, 0.03267214074730873, -0.014370761811733246, -0.018319163471460342, 0.0033725935500115156, -0.005878139287233353, 0.03092915192246437, -0.08373458683490753, 0.011951920576393604, -0.0038661439903080463, -0.05129365995526314, -0.03509097918868065, -0.058016613125801086, -0.015420111827552319, 0.01279673632234335, 0.020151080563664436, 0.020809147506952286, -0.018150201067328453, -0.009924362413585186, -0.004461961332708597, -0.04549555480480194, 0.042578715831041336, -0.02918616309762001, -0.02842138335108757, 0.006029317155480385, 0.04887481778860092, 0.05716290697455406, -0.08601114153862, 0.005749193951487541, -0.034290630370378494, -0.049123816192150116, -0.0004121256060898304, -0.0459224097430706, 0.009595328941941261, 0.025557901710271835, -0.023067917674779892, 0.009373009204864502, 0.047487542033195496, 0.04688283056020737, -0.044321704655885696, -0.010618001222610474, -0.0308757945895195, 0.012734486721456051, -0.04677611589431763, 0.00267228577286005, -0.04129815474152565, -0.00327477278187871, 0.02258770726621151, -0.006705169565975666, -0.007007524836808443, -0.024810906499624252, -0.058301184326410294, -0.03448627144098282, -0.007358790375292301, -0.02799452841281891, 0.02607368305325508, 0.03628261759877205, -0.01723424345254898, 0.004261873662471771, -0.05563334375619888, 0.040231019258499146, 0.03274328261613846, 0.04179615154862404, 0.0385235995054245, -0.021805141121149063, 0.006825222633779049, 0.026536108925938606, 0.043290141969919205, -0.01631828397512436, 0.0314093641936779, 0.023050133138895035, 0.00851485412567854, 0.0052778758108615875, -0.013917229138314724, -0.026962963864207268, 0.009755399078130722, -0.04474855959415436, 0.02897273562848568, -0.013125769793987274, 0.06634027510881424, -0.019119516015052795, -0.013739372603595257, -0.0038661439903080463, -0.04311228543519974, 0.05894146487116814, 0.034664127975702286, -0.0017774479929357767, 0.027265319600701332, 0.01691410131752491, -0.03308120742440224, 0.0033259063493460417, 0.020809147506952286, 0.06072002649307251, -0.026980748400092125, 0.008630460128188133, 0.03873702883720398, 0.007914590649306774, 0.040622301399707794, -0.03863031417131424, 0.053925927728414536, -0.04517541453242302, -0.002576688304543495, -0.030306655913591385, -0.01593589410185814, -0.049941953271627426, -0.006589563097804785 ]
9,602
asyncclick.types
convert
null
def convert( self, value: "t.Union[str, os.PathLike[str]]", param: t.Optional["Parameter"], ctx: t.Optional["Context"], ) -> "t.Union[str, bytes, os.PathLike[str]]": rv = value is_dash = self.file_okay and self.allow_dash and rv in (b"-", "-") if not is_dash: if self.resolve_path: # os.path.realpath doesn't resolve symlinks on Windows # until Python 3.8. Use pathlib for now. import pathlib rv = os.fsdecode(pathlib.Path(rv).resolve()) try: st = os.stat(rv) except OSError: if not self.exists: return self.coerce_path_result(rv) self.fail( _("{name} {filename!r} does not exist.").format( name=self.name.title(), filename=format_filename(value) ), param, ctx, ) if not self.file_okay and stat.S_ISREG(st.st_mode): self.fail( _("{name} {filename!r} is a file.").format( name=self.name.title(), filename=format_filename(value) ), param, ctx, ) if not self.dir_okay and stat.S_ISDIR(st.st_mode): self.fail( _("{name} '{filename}' is a directory.").format( name=self.name.title(), filename=format_filename(value) ), param, ctx, ) if self.readable and not os.access(rv, os.R_OK): self.fail( _("{name} {filename!r} is not readable.").format( name=self.name.title(), filename=format_filename(value) ), param, ctx, ) if self.writable and not os.access(rv, os.W_OK): self.fail( _("{name} {filename!r} is not writable.").format( name=self.name.title(), filename=format_filename(value) ), param, ctx, ) if self.executable and not os.access(value, os.X_OK): self.fail( _("{name} {filename!r} is not executable.").format( name=self.name.title(), filename=format_filename(value) ), param, ctx, ) return self.coerce_path_result(rv)
(self, value: 't.Union[str, os.PathLike[str]]', param: Optional[ForwardRef('Parameter')], ctx: Optional[ForwardRef('Context')]) -> 't.Union[str, bytes, os.PathLike[str]]'
[ 0.06538276374340057, -0.00657433969900012, -0.005365713965147734, 0.014454775489866734, 0.018538761883974075, -0.04292571172118187, 0.05119115486741066, 0.050684310495853424, 0.000947894062846899, -0.022554518654942513, 0.09185556322336197, 0.09154365956783295, 0.042418867349624634, 0.019172314554452896, 0.020312711596488953, 0.07165981829166412, 0.0044714282266795635, 0.05758517608046532, 0.023002879694104195, 0.059105705469846725, 0.005253623705357313, -0.024094540625810623, 0.03828614950180054, 0.01601429283618927, -0.004186328966170549, -0.0017118138493970037, 0.006910610944032669, -0.0391828715801239, -0.0322040319442749, -0.023295288905501366, 0.011637897230684757, -0.011014090850949287, 0.024581890553236008, 0.016979243606328964, 0.0067254179157316685, 0.0045177266001701355, -0.04113226756453514, 0.04990455135703087, -0.05087925121188164, -0.0895162895321846, -0.07657229900360107, 0.03805221989750862, 0.006584086921066046, 0.016618605703115463, -0.02349022775888443, 0.015546437352895737, -0.08226453512907028, 0.03249644115567207, -0.08553951978683472, 0.04834503307938576, 0.03202858567237854, 0.0038427480030804873, -0.04128821939229965, -0.012349426746368408, 0.012612596154212952, 0.022008687257766724, 0.04261380806565285, 0.049436695873737335, 0.009259633719921112, 0.006627948489040136, 0.0531015619635582, 0.004210696555674076, 0.0034601788502186537, -0.012320186011493206, 0.01001015119254589, 0.02978677861392498, 0.017885712906718254, -0.07220564782619476, -0.03382202982902527, 0.09130973368883133, 0.0244649276137352, -0.01146245189011097, -0.03549851104617119, 0.011735367588698864, 0.08351214975118637, -0.004361774772405624, -0.023002879694104195, 0.04600575938820839, 0.028461189940571785, -0.006564592942595482, 0.059768497943878174, -0.04366648197174072, -0.0001300613075727597, -0.09419484436511993, -0.03234048932790756, 0.013255896978080273, -0.028305238112807274, -0.05185394734144211, 0.025654058903455734, 0.07314135879278183, -0.005239003337919712, -0.046902481466531754, -0.038656532764434814, 0.002262518275529146, 0.01630670204758644, -0.011715873144567013, 0.02432846836745739, -0.01662835292518139, -0.029884248971939087, -0.027486491948366165, -0.01433781161904335, 0.03048856183886528, -0.016413919627666473, 0.014942124485969543, 0.05368638038635254, -0.030839454382658005, 0.007154285442084074, 0.018704459071159363, 0.00947894062846899, -0.059222668409347534, -0.06818988919258118, -0.008967224508523941, -0.040352508425712585, -0.005170774180442095, -0.015497703105211258, -0.020195748656988144, -0.06273157894611359, -0.07045119255781174, -0.010117367841303349, 0.005818948615342379, 0.04074238985776901, 0.05625958368182182, -0.01914307475090027, -0.02670673280954361, 0.03694106638431549, 0.0216967836022377, -0.012982981279492378, -0.021716278046369553, 0.009327862411737442, 0.04639563709497452, 0.0004127238062210381, 0.03828614950180054, 0.0003082483308389783, 0.006535351742058992, -0.02403605915606022, -0.002333184005692601, -0.04963163658976555, 0.05017746612429619, -0.005931038875132799, 0.05906671658158302, 0.052087876945734024, -0.0038695521652698517, 0.024094540625810623, -0.06097712367773056, 0.038948941975831985, -0.005960280075669289, 0.04265279695391655, -0.030293622985482216, -0.012339680455625057, 0.06682531535625458, 0.003701416775584221, 0.015400232747197151, -0.014942124485969543, 0.015634160488843918, 0.03076147846877575, -0.024581890553236008, 0.025127721950411797, -0.06818988919258118, 0.00934248324483633, -0.024835312739014626, 0.011871824972331524, -0.06971041858196259, 0.027661936357617378, 0.0060138884000480175, 0.07158184051513672, 0.06612353026866913, -0.04004060477018356, 0.03156073018908501, 0.05286763608455658, -0.0251862034201622, 0.0070421951822936535, 0.012271451763808727, -0.02475733682513237, 0.04171708598732948, 0.04292571172118187, -0.03228200599551201, 0.02002030238509178, -0.002838808810338378, 0.006949598900973797, -0.035323064774274826, 0.002819314831867814, 0.0011470980243757367, 0.046629566699266434, 0.04378344491124153, 0.030605526641011238, 0.015302763320505619, 0.015205292962491512, 0.05286763608455658, 0.04904681816697121, -0.013665270060300827, -0.023997072130441666, 0.029435887932777405, 0.012359173968434334, 0.03298379108309746, -0.01587783545255661, -0.04596677049994469, 0.011540427803993225, -0.01680379919707775, 0.003891482949256897, -0.009586157277226448, -0.004205822944641113, -0.032535430043935776, 0.036843594163656235, 0.03312024846673012, -0.07610443979501724, -0.023548711091279984, 0.038539569824934006, 0.04978758841753006, -0.036707136780023575, 0.01998131535947323, -0.016053279861807823, -0.0670982301235199, -0.04869592562317848, 0.019328266382217407, 0.020936518907546997, -0.04682450369000435, 0.0077878390438854694, 0.026082925498485565, -0.04390041157603264, 0.05855987221002579, 0.050840262323617935, 0.06374526768922806, 0.03456280007958412, 0.0139869200065732, 0.07949639111757278, -0.02853916585445404, -0.008445760235190392, -0.03481622412800789, 0.006510984618216753, 0.02910448983311653, -0.003267675871029496, -0.025693045929074287, 0.0461617112159729, 0.01970839872956276, -0.039221860468387604, 0.026511793956160545, 0.04967062547802925, -0.005239003337919712, -0.06822887808084488, -0.04269178584218025, -0.007368719205260277, -0.03522559627890587, -0.01676481030881405, 0.05064532160758972, 0.01567314751446247, -0.04210696741938591, 0.0016764809843152761, 0.02195020578801632, -0.020468663424253464, -0.017027979716658592, 0.06674733757972717, 0.0727904662489891, -0.05356941744685173, -0.02770092524588108, -0.016257967799901962, -0.01692076213657856, -0.053491443395614624, -0.08577344566583633, 0.06635745614767075, 0.04128821939229965, -0.029767286032438278, -0.009722615592181683, 0.014747184701263905, -0.0016764809843152761, -0.05493399500846863, -0.09357103705406189, -0.039358317852020264, 0.019328266382217407, 0.025634564459323883, 0.030683502554893494, -0.1438654661178589, 0.018568001687526703, -0.0503334179520607, -0.0005851235473528504, -0.061328016221523285, 0.026258371770381927, 0.0349331870675087, -0.03232099488377571, 0.09848351776599884, 0.01001015119254589, -0.0335296206176281, -0.026765214279294014, -0.015254028141498566, -0.012515125796198845, 0.004140031058341265, 0.0251862034201622, 0.008479874581098557, -0.051814962178468704, -0.035888392478227615, 0.038539569824934006, -0.0066230748780071735, 0.014844655059278011, -0.029884248971939087, -0.008757663890719414, 0.0042472477070987225, 0.0167843047529459, -0.05961254611611366, -0.09824958443641663, 0.08819069713354111, -0.07442796230316162, -0.03310075402259827, 0.02489379420876503, 0.03959224373102188, 0.020098278298974037, -0.03132680431008339, 0.03625877574086189, 0.011209030635654926, -0.050138480961322784, -0.009664133191108704, 0.04004060477018356, 0.016862280666828156, -0.028461189940571785, 0.018334073945879936, 0.031677693128585815, 0.07158184051513672, 0.06355033069849014, 0.02883157506585121, 0.0039572748355567455, 0.010234331712126732, 0.018314581364393234, -0.008012020029127598, 0.03485520929098129, 0.010887379758059978, -0.022496037185192108, 0.029864754527807236, -0.040352508425712585, -0.0004523209063336253, 0.01984485611319542, 0.01733013615012169, 0.057000353932380676, -0.0007310237269848585, 0.04518701136112213, 0.02881208062171936, -0.02013726718723774, -0.0033895133528858423, 0.00667180959135294, -0.004851560574024916, 0.020215243101119995, 0.02504974603652954, 0.048617951571941376, 0.05766315013170242, -0.0014133125077933073, 0.018148882314562798, -0.00899159163236618, 0.0025512727443128824, -0.02321731299161911, -0.007115297485142946, 0.02881208062171936, 0.04514802247285843, -0.02432846836745739, -0.035186607390642166, -0.0044836122542619705, -0.03522559627890587, -0.02697964757680893, -0.014639968052506447, 0.007154285442084074, -0.008757663890719414, 0.013645775616168976, -0.009084188379347324, -0.023022374138236046, 0.06394020467996597, -0.015429473482072353, 0.0033895133528858423, -0.016745315864682198, 0.023158831521868706, -0.042457856237888336, 0.011979041621088982, -0.0188701581209898, 0.006676683202385902, -0.008284935727715492, 0.01637493073940277, 0.022125650197267532, 0.013177921064198017, -0.14745235443115234, 0.02992323786020279, -0.008494495414197445, -0.01140396948903799, 0.006301424466073513, -0.01882142387330532, 0.021053483709692955, 0.05661047622561455, 0.043549519032239914, -0.023158831521868706, 0.025556588545441628, 0.008757663890719414, 0.013684763573110104, 0.01810014620423317, -0.02727205865085125, -0.010097874328494072, -0.014942124485969543, -0.005219509359449148, 0.0391438826918602, 0.08265441656112671, 0.01097510289400816, 0.008250821381807327, 0.010244078934192657, 0.009152417071163654, 0.03746740147471428, -0.004805262666195631, 0.032398972660303116, -0.00936685036867857, -0.006998333614319563, 0.00274377572350204, 0.0685017928481102, -0.0516979955136776, 0.012807535007596016, 0.05076228454709053, 0.06386223435401917, -0.05820897966623306, 0.004227753728628159, -0.01902610994875431, -0.08631928265094757, -0.022457048296928406, -0.01308045070618391, -0.02308085560798645, 0.030410585924983025, -0.06327741593122482, 0.00629655085504055, 0.002809567842632532, -0.014708196744322777, -0.0545831024646759, -0.03023514151573181, -0.007027574814856052, 0.07228362560272217, 0.04826705902814865, -0.0014084390131756663, 0.022008687257766724, -0.0356544628739357, 0.021579820662736893, -0.03302277624607086, 0.022885914891958237, -0.050411395728588104, -0.020078783854842186, -0.0726735070347786, 0.03397798165678978, -0.023139337077736855, -0.021462855860590935, -0.018918894231319427, 0.03791576251387596, 0.018382810056209564, -0.02908499725162983, 0.012622342444956303, 0.021872229874134064, 0.07321933656930923, -0.007227387744933367, -0.04093732684850693, -0.05508994683623314, 0.05021645501255989, -0.020351700484752655, -0.04031351953744888, 0.003333468222990632, 0.025556588545441628, 0.027642443776130676, -0.018314581364393234, -0.0475262887775898, -0.0042813620530068874, -0.029123984277248383, 0.014834907837212086, 0.002997197210788727, 0.014006414450705051, 0.030274128541350365, 0.03723347559571266, 0.0447581447660923, -0.07052917033433914, -0.013840715400874615, 0.01552694384008646, 0.035303570330142975, 0.02883157506585121, 0.042145952582359314, -0.02571254037320614, -0.06674733757972717, -0.047058433294296265, 0.013645775616168976, 0.06768304854631424, 0.050138480961322784, 0.015254028141498566, 0.03479672968387604, 0.01669658161699772, -0.040781375020742416, -0.045498915016651154, -0.013236402533948421, -0.04542094096541405, -0.033354174345731735, 0.06674733757972717, 0.01181334350258112, -0.011140801012516022, 0.019757134839892387, 0.03339316323399544, 0.017174184322357178, 0.012973234057426453, 0.014961618930101395, 0.054622091352939606, -0.0573122575879097, -0.038539569824934006, -0.017447099089622498, 0.04998252913355827, -0.017885712906718254, -0.029767286032438278, -0.07372617721557617, -0.01986435055732727, 0.034484826028347015, -0.01656012423336506, -0.05442715063691139, 0.00004999136217520572, -0.015770617872476578, 0.03175567090511322, -0.017564063891768456, -0.04027453437447548, -0.032106559723615646, -0.03596636652946472, -0.0615229569375515, 0.03625877574086189, -0.0021747956052422523, 0.016326196491718292, 0.009781097061932087, 0.049163781106472015, 0.02487429976463318, 0.001992039615288377, -0.011793849058449268, -0.010448765940964222, -0.05076228454709053, -0.036434222012758255, 0.002763269701972604, -0.042418867349624634, -0.015848593786358833, -0.023022374138236046, -0.05567476525902748, -0.007237134501338005, 0.0321650430560112, -0.022457048296928406, -0.0008455507340840995, -0.01721317134797573, 0.03471875190734863, -0.0038671153597533703, 0.05801404267549515, 0.017651785165071487, -0.007242008112370968, 0.03625877574086189, -0.07937942445278168, 0.0012561423936858773, 0.008202086202800274, 0.050294432789087296, -0.03386101871728897, -0.01027331966906786, 0.012349426746368408, -0.043588507920503616, 0.027096612378954887, -0.022574011236429214, 0.05493399500846863, -0.00892336294054985, -0.04682450369000435, -0.02013726718723774, 0.0071250442415475845, 0.08093894273042679, -0.006277056876569986, 0.017593303695321083, 0.013665270060300827, -0.00302156456746161, -0.0322040319442749, -0.005541159771382809, -0.01798318326473236, -0.01243714988231659, -0.04877390339970589, -0.0005924337892793119, -0.0023173452354967594, 0.0063988943584263325, 0.01734962873160839, -0.023022374138236046, 0.04163911193609238, -0.05232180282473564, -0.0030240013729780912, 0.016521135345101357, 0.03156073018908501, -0.03522559627890587, -0.0055996417067945, 0.016930509358644485, 0.0054047019220888615, -0.013099945150315762, 0.014834907837212086, 0.03653169050812721, -0.03119034506380558, -0.0024464926682412624, -0.018519267439842224, 0.010614464059472084, 0.0038695521652698517, -0.025088733062148094, 0.00953742302954197, 0.0628485456109047, -0.008192338980734348, -0.0069154840894043446, -0.018772689625620842, 0.0042618680745363235, 0.004059618338942528, 0.013655522838234901, 0.026180395856499672, -0.026765214279294014, 0.00024534983094781637, -0.024971770122647285, 0.02545911818742752, -0.02799333445727825, -0.025907481089234352, -0.0188701581209898, 0.01866547204554081, 0.05399828404188156, 0.02000080794095993, 0.02475733682513237, 0.0028802333399653435, 0.009093934670090675, -0.03926084563136101, 0.03130730986595154, 0.04507004842162132, -0.0018092836253345013, -0.0009564227075316012, -0.04444624111056328, 0.03304227069020271, 0.050411395728588104, -0.04124923050403595, -0.036141812801361084, -0.042457856237888336, -0.01900661736726761, -0.017359375953674316, 0.007003207225352526, -0.03694106638431549, 0.012066764757037163, -0.042457856237888336, -0.0199325792491436, -0.009839579463005066, 0.01001015119254589, -0.029046008363366127, -0.054310187697410583, 0.013645775616168976, -0.028909550979733467, 0.007743977941572666, 0.042418867349624634, -0.018723953515291214, -0.05423221364617348, -0.017105955630540848, -0.023022374138236046, 0.027350034564733505, 0.00839215237647295, 0.030664008110761642, -0.04783819243311882, -0.022749457508325577, 0.0199130866676569, -0.0461227223277092, -0.003801323240622878, -0.012066764757037163, -0.03703853487968445, 0.00808512233197689, 0.008523736149072647, 0.04534296318888664, 0.06592859327793121, -0.0025171583984047174, -0.06526579707860947, 0.06659138947725296, 0.03312024846673012, 0.058520883321762085, -0.040781375020742416, -0.004529910162091255, 0.03274986147880554, -0.03228200599551201, -0.00846038106828928, 0.015751123428344727, 0.0022661734838038683, -0.04436826705932617, -0.01168663240969181, -0.005063557531684637, -0.025147216394543648, -0.002186979167163372, -0.023587698116898537, 0.005536286160349846, -0.0009564227075316012, -0.05158103257417679, -0.017544569447636604, -0.008816146291792393, -0.024016564711928368, 0.0199130866676569, 0.024718347936868668, 0.022885914891958237, -0.004473865032196045, -0.019815616309642792, -0.012251957319676876, -0.03458229452371597, 0.06136700510978699, 0.0258879866451025, -0.02809080481529236, 0.006837508641183376, 0.01188157219439745, 0.028851069509983063, -0.07025625556707382, -0.02532266080379486, -0.015838846564292908, -0.07594849169254303, -0.0031897001899778843, -0.07060714066028595, -0.017242413014173508, 0.02417251653969288, -0.0004343499313108623, 0.00041455135215073824, 0.06456401199102402, 0.01574137806892395, -0.0475652776658535, 0.025225192308425903, -0.020312711596488953, -0.007953537628054619, -0.07770294696092606, -0.013704258017241955, -0.042028989642858505, 0.02013726718723774, -0.011374728754162788, 0.0000374078554159496, 0.002178450580686331, -0.029611334204673767, -0.0810169205069542, -0.036999545991420746, -0.017408112064003944, -0.048734914511442184, 0.027350034564733505, 0.04713640734553337, -0.030995406210422516, 0.015020100399851799, -0.06670834869146347, 0.06245866417884827, 0.006267310120165348, 0.03902691975235939, 0.01866547204554081, -0.0279738400131464, 0.01439629402011633, 0.051814962178468704, 0.029046008363366127, -0.0034601788502186537, 0.005916418507695198, -0.0028656129725277424, 0.03592737764120102, 0.008538356982171535, -0.0015899766003713012, 0.014211100526154041, -0.0014388983836397529, -0.0010532833402976394, 0.058092016726732254, 0.016209231689572334, 0.08452583849430084, -0.03818867728114128, -0.04822807013988495, -0.012963486835360527, 0.003996262792497873, 0.036570679396390915, 0.008021767251193523, 0.013830968178808689, 0.01705721952021122, -0.0025512727443128824, -0.049280744045972824, -0.017612798139452934, 0.06943750381469727, 0.0615619421005249, -0.03345164656639099, 0.023392759263515472, 0.044134337455034256, -0.013226655311882496, 0.015234533697366714, -0.052789658308029175, 0.08780082315206528, -0.017651785165071487, 0.007393086329102516, -0.012290945276618004, 0.02417251653969288, -0.03313974291086197, 0.005146407056599855 ]
9,606
asyncclick.types
shell_complete
Return a special completion marker that tells the completion system to use the shell to provide path completions for only directories or any paths. :param ctx: Invocation context for this command. :param param: The parameter that is requesting completion. :param incomplete: Value being completed. May be empty. .. versionadded:: 8.0
def shell_complete( self, ctx: "Context", param: "Parameter", incomplete: str ) -> t.List["CompletionItem"]: """Return a special completion marker that tells the completion system to use the shell to provide path completions for only directories or any paths. :param ctx: Invocation context for this command. :param param: The parameter that is requesting completion. :param incomplete: Value being completed. May be empty. .. versionadded:: 8.0 """ from .shell_completion import CompletionItem type = "dir" if self.dir_okay and not self.file_okay else "file" return [CompletionItem(incomplete, type=type)]
(self, ctx: 'Context', param: 'Parameter', incomplete: str) -> List[ForwardRef('CompletionItem')]
[ 0.046761512756347656, 0.03459562361240387, -0.051678113639354706, -0.04188080504536629, 0.07457438856363297, 0.014148677699267864, 0.0793115496635437, -0.019038360565900803, 0.027382221072912216, -0.058604415506124496, 0.0498119592666626, -0.0015364369610324502, -0.025264855474233627, -0.005311361514031887, -0.06032701954245567, 0.04629497602581978, 0.03249620273709297, 0.03434441238641739, -0.009725533425807953, 0.02619793266057968, 0.05056559666991234, 0.06316214054822922, 0.023990845307707787, 0.016212213784456253, -0.04055296257138252, -0.04421349614858627, 0.0594298280775547, -0.06922713667154312, 0.0034496933221817017, -0.08089060336351395, 0.034793008118867874, -0.0038018403574824333, -0.03206555172801018, 0.007051908876746893, -0.005392108578234911, 0.04191669076681137, 0.029768746346235275, 0.08462291210889816, 0.028656231239438057, -0.04564899951219559, -0.07120095193386078, 0.007069852668792009, -0.04066062718629837, -0.01441783457994461, 0.0742872878909111, 0.02341664396226406, 0.01125972718000412, 0.007877323776483536, 0.01625707373023033, 0.008074705488979816, 0.033895816653966904, -0.03267563879489899, -0.04769458994269371, -0.03965577483177185, -0.017719492316246033, 0.031024811789393425, 0.014444749802350998, 0.020330313593149185, 0.011017486453056335, 0.058209650218486786, 0.05174988880753517, -0.0035865148529410362, -0.023614026606082916, -0.01686716079711914, 0.07278000563383102, 0.01195953506976366, 0.031240137293934822, -0.030109677463769913, -0.022429736331105232, 0.04503890872001648, -0.046617962419986725, 0.018697427585721016, -0.0007014899747446179, -0.0014702691696584225, 0.03721541911363602, -0.015153530053794384, -0.019953493028879166, -0.0013760642614215612, 0.031006867066025734, -0.0318143367767334, -0.0230218805372715, 0.02494186721742153, 0.012381214648485184, -0.01195953506976366, -0.04091183841228485, 0.05702536180615425, -0.00021083952742628753, -0.025013642385601997, -0.010820104740560055, 0.05042204633355141, -0.009483292698860168, -0.0018381169065833092, -0.0020321342162787914, 0.031796395778656006, 0.03271152824163437, -0.047012727707624435, -0.019217798486351967, 0.045613110065460205, -0.035044219344854355, -0.02781287208199501, -0.039332784712314606, 0.028907444328069687, 0.0199893806129694, 0.013036162592470646, 0.02896127477288246, -0.008258628658950329, -0.005809301510453224, -0.015530349686741829, 0.020097043365240097, 0.018948640674352646, -0.033285729587078094, -0.0033756752964109182, 0.042993318289518356, -0.010012634098529816, -0.00663471594452858, 0.0684376135468483, -0.02820763550698757, -0.031114529818296432, -0.003413805738091469, -0.008998810313642025, 0.04572077468037605, -0.02716689743101597, -0.014857457019388676, -0.04970429465174675, 0.06395166367292404, 0.02653886377811432, -0.047874029725790024, 0.016077635809779167, -0.08986249566078186, 0.08691971749067307, -0.004216790199279785, 0.04719216376543045, -0.029912296682596207, -0.022052915766835213, 0.026502976194024086, 0.008900118991732597, -0.007352467626333237, -0.017584912478923798, -0.002682596445083618, 0.020114988088607788, 0.033160120248794556, -0.036533553153276443, 0.007693399675190449, -0.024834204465150833, 0.04790991544723511, 0.037071868777275085, 0.05598462000489235, 0.00375922373495996, 0.02015087567269802, 0.04999139532446861, -0.053041841834783554, 0.01973816752433777, 0.015620068646967411, 0.0024403552524745464, 0.04769458994269371, 0.006980133708566427, -0.043962281197309494, -0.0033196010626852512, -0.011905703693628311, -0.021353108808398247, 0.02088657021522522, -0.08598663657903671, -0.02278861217200756, 0.043100982904434204, 0.05975281819701195, 0.036443836987018585, -0.04371106997132301, 0.022824499756097794, -0.017109403386712074, -0.02705923467874527, 0.023829352110624313, -0.005019775126129389, 0.024134395644068718, -0.03163490071892738, 0.029499588534235954, 0.037681955844163895, -0.04015820100903511, 0.033895816653966904, 0.038938023149967194, -0.07181104272603989, -0.010416369885206223, -0.003063902026042342, 0.043244533240795135, -0.00027476425748318434, 0.011170008219778538, 0.06940657645463943, 0.03936867415904999, 0.03775373101234436, 0.019594617187976837, 0.020330313593149185, -0.1071603074669838, 0.0255340114235878, 0.05602050945162773, 0.004035109654068947, -0.03434441238641739, 0.021747872233390808, -0.02932015061378479, 0.03233470767736435, -0.017674632370471954, -0.030899204313755035, -0.026485033333301544, -0.03825615718960762, 0.01923574134707451, 0.01649034209549427, -0.01581745035946369, 0.06179840862751007, -0.014355030842125416, 0.031186304986476898, -0.006414904724806547, -0.051032137125730515, -0.02729250304400921, -0.02879978157579899, -0.017235008999705315, -0.034434132277965546, -0.010550947859883308, -0.053293053060770035, -0.004510620143264532, -0.01797967590391636, 0.03043266572058201, -0.008792456239461899, 0.03761018067598343, 0.00800293032079935, 0.03084537386894226, -0.0019110135035589337, 0.054800331592559814, -0.05864030122756958, 0.0036022155545651913, -0.03531337529420853, -0.037933170795440674, 0.0038713724352419376, -0.045110683888196945, -0.1117539182305336, -0.021119840443134308, -0.021119840443134308, -0.010452257469296455, 0.04923775792121887, 0.04055296257138252, -0.0036941776052117348, -0.024888034909963608, -0.005522200837731361, -0.004898654296994209, 0.0143370870500803, -0.0035214684903621674, -0.0014254096895456314, -0.004100155550986528, 0.0246906541287899, 0.008527785539627075, 0.012497848831117153, 0.0052036987617611885, -0.016624920070171356, -0.02316543087363243, 0.09797308593988419, -0.03172462061047554, -0.029804633930325508, 0.0006773780332878232, -0.027884647250175476, -0.058460865169763565, -0.03979932516813278, -0.013762885704636574, 0.03271152824163437, -0.018150143325328827, -0.006845555268228054, 0.003281470388174057, 0.07773249596357346, -0.024098508059978485, 0.010757301934063435, 0.042203791439533234, -0.008137508295476437, 0.005719582550227642, 0.039835210889577866, -0.060075804591178894, -0.027113065123558044, -0.035797860473394394, -0.03635411709547043, -0.0063745309598743916, 0.11713705211877823, 0.019217798486351967, 0.007774146739393473, -0.007993957959115505, -0.0005593415698967874, -0.01586231030523777, 0.003712121397256851, -0.009608899243175983, 0.02896127477288246, -0.09007781744003296, 0.020330313593149185, -0.007473587989807129, 0.039189234375953674, -0.06502829492092133, 0.05422613024711609, 0.021119840443134308, 0.041593704372644424, 0.01939723640680313, 0.01625707373023033, 0.09093911945819855, 0.04790991544723511, -0.00619957922026515, -0.01788995787501335, 0.01492026075720787, -0.03678476810455322, -0.0255340114235878, 0.016454454511404037, -0.055553968995809555, -0.03131191059947014, -0.05056559666991234, -0.040086425840854645, 0.012686259113252163, -0.08132125437259674, -0.028656231239438057, -0.015880253165960312, 0.01780921034514904, 0.019576674327254295, 0.04066062718629837, 0.011798040941357613, -0.03382404148578644, -0.0008248535450547934, -0.014157649129629135, 0.010290763340890408, -0.022860387340188026, 0.021945253014564514, -0.06728921085596085, 0.04062473773956299, 0.010210015811026096, -0.0032994141802191734, 0.021353108808398247, 0.0640234425663948, 0.02076096460223198, 0.05519509315490723, 0.03337544575333595, 0.04439293220639229, -0.015162501484155655, 0.02465476654469967, -0.03477506339550018, -0.03170667588710785, -0.030127622187137604, 0.009842168539762497, 0.0123991584405303, 0.009599926881492138, -0.01032665092498064, -0.010227959603071213, 0.024726541712880135, -0.03728719428181648, 0.024888034909963608, 0.018195001408457756, 0.006899386644363403, -0.013143825344741344, 0.0772300660610199, 0.0661408081650734, 0.08110592514276505, -0.07321065664291382, 0.0280461423099041, 0.003537169424816966, -0.004385013598948717, 0.00005568882988882251, 0.06316214054822922, -0.011277670972049236, 0.010165156796574593, 0.06850938498973846, 0.0072178891859948635, 0.018096311017870903, 0.0661408081650734, -0.053795479238033295, -0.052036989480257034, -0.020079100504517555, -0.016454454511404037, -0.01509072631597519, 0.005724068731069565, -0.04780225455760956, 0.021227503195405006, -0.0114571088925004, 0.013107937760651112, -0.007702371571213007, 0.018302664160728455, -0.0357799157500267, 0.019217798486351967, -0.024331778287887573, 0.03251414746046066, -0.025013642385601997, -0.012551680207252502, 0.03590552136301994, 0.020545639097690582, 0.014929232187569141, 0.032550033181905746, 0.02151460386812687, -0.07572279125452042, -0.021676097065210342, -0.026108212769031525, -0.016140438616275787, -0.027131009846925735, -0.0009566282387822866, -0.009779364801943302, -0.038579147309064865, -0.01427428424358368, 0.01408587396144867, -0.008357319980859756, -0.04984784498810768, 0.02967902645468712, -0.037574294954538345, -0.047622814774513245, -0.018446214497089386, 0.07209814339876175, -0.006289298180490732, 0.0003628009872045368, 0.015566237270832062, 0.010658610612154007, -0.07016021758317947, 0.04155781492590904, 0.014713906683027744, -0.07016021758317947, -0.04633086174726486, 0.00917824823409319, -0.037825506180524826, 0.029302207753062248, 0.05121157318353653, -0.041737254709005356, 0.0060784583911299706, -0.1017053946852684, 0.017279868945479393, 0.007599194534122944, 0.01703762821853161, -0.02603643760085106, -0.03434441238641739, -0.03149135038256645, 0.052431751042604446, -0.026269707828760147, 0.0341111421585083, 0.023990845307707787, 0.004411929287016392, 0.026215875521302223, -0.08491001278162003, -0.012695230543613434, 0.03761018067598343, -0.013744941912591457, -0.06510006636381149, -0.023093655705451965, 0.00341604882851243, 0.0114571088925004, -0.04105538874864578, 0.022716837003827095, 0.020330313593149185, -0.04668973758816719, 0.06789929419755936, -0.0012156916782259941, 0.0767994150519371, 0.03940455988049507, 0.0037726815789937973, -0.03786139562726021, 0.015745675191283226, -0.0284588485956192, -0.021317221224308014, -0.012740090489387512, 0.030019959434866905, 0.07026787847280502, -0.005710610654205084, -0.007976014167070389, -0.019612561911344528, -0.039440449327230453, 0.01975611224770546, -0.059716928750276566, -0.02555195614695549, 0.08627373725175858, 0.05024261027574539, 0.04005053639411926, -0.04478769749403, 0.01320662908256054, -0.026520920917391777, -0.0027453997172415257, 0.024457383900880814, -0.03185022622346878, 0.023111600428819656, -0.03570814058184624, 0.021747872233390808, -0.056307610124349594, 0.004571180325001478, 0.017396504059433937, 0.013816717080771923, 0.08404871076345444, 0.028512680903077126, -0.00007135459600249305, -0.04780225455760956, -0.015368855558335781, -0.07019609957933426, 0.006737892981618643, 0.03500833362340927, -0.009196192026138306, 0.01682230271399021, -0.01788995787501335, -0.0014758766628801823, -0.00619957922026515, -0.013314291834831238, 0.0285665113478899, 0.024385608732700348, -0.07191870361566544, -0.0007413027924485505, 0.001985031645745039, -0.003653804073110223, 0.027346333488821983, 0.0036358602810651064, 0.0038624005392193794, -0.029356038197875023, 0.04464414715766907, -0.02705923467874527, 0.0160058606415987, 0.005297903902828693, -0.012130001559853554, -0.05361604318022728, 0.024188227951526642, -0.016203241422772408, -0.07672764360904694, -0.005333791486918926, -0.01498306356370449, 0.002929323585703969, 0.05602050945162773, -0.018114255741238594, 0.006006683222949505, 0.0374666303396225, 0.04320864379405975, 0.0073434957303106785, 0.08569953590631485, 0.020186763256788254, -0.06025524437427521, -0.022393848747015, 0.029750801622867584, 0.002976425923407078, -0.00584967527538538, 0.017764350399374962, -0.025731394067406654, -0.017001740634441376, -0.03490066900849342, 0.012076170183718204, 0.01952284201979637, 0.011241783387959003, 0.0320117212831974, 0.008038817904889584, 0.03070182353258133, 0.07306710630655289, -0.024188227951526642, -0.017764350399374962, -0.06359279155731201, -0.005257530137896538, 0.05673826113343239, 0.006975647993385792, 0.007096768356859684, 0.00036195985740050673, 0.03490066900849342, 0.015009979717433453, 0.026897739619016647, -0.06082944571971893, 0.07385663688182831, 0.04213201627135277, -0.022232353687286377, -0.05042204633355141, -0.08254142850637436, 0.028261467814445496, -0.05497976765036583, -0.03522365912795067, 0.004095669835805893, -0.029158657416701317, -0.02277066744863987, -0.04162959009408951, -0.00818236730992794, 0.050529710948467255, -0.06309036165475845, -0.0034452073741704226, 0.09352302551269531, 0.004956971853971481, 0.008783484809100628, 0.025354573503136635, 0.023326925933361053, -0.029481645673513412, 0.009285910986363888, -0.008101620711386204, -0.01448063738644123, -0.047012727707624435, 0.017019683495163918, -0.016122493892908096, 0.040840063244104385, -0.004956971853971481, -0.04005053639411926, -0.01625707373023033, -0.02695157192647457, -0.012731118127703667, -0.0182039737701416, 0.012731118127703667, -0.03854325786232948, -0.009581983089447021, 0.026610638946294785, 0.022196466103196144, -0.011161036789417267, -0.061224207282066345, -0.01889481022953987, 0.022483566775918007, 0.039583999663591385, 0.012569623999297619, 0.030289115384221077, -0.012614483945071697, -0.00867582205682993, -0.016382679343223572, -0.05426201969385147, -0.0037367939949035645, 0.018069395795464516, 0.0075139617547392845, 0.03145546093583107, 0.0364079475402832, 0.017898930236697197, -0.006930788513273001, 0.03789728134870529, 0.001492698909714818, -0.05677414685487747, 0.016248101368546486, 0.001602604635991156, -0.02341664396226406, 0.026610638946294785, 0.053544268012046814, -0.07191870361566544, 0.02540840581059456, 0.007926668971776962, -0.04564899951219559, 0.03865092247724533, 0.05975281819701195, -0.07385663688182831, -0.02253739908337593, -0.007222374901175499, 0.01973816752433777, -0.019325461238622665, -0.039189234375953674, -0.027382221072912216, 0.028494736179709435, -0.0008097134996205568, -0.017764350399374962, 0.005302389618009329, 0.015790535137057304, 0.008420122787356377, 0.03561842069029808, 0.04338808357715607, -0.04704861342906952, -0.04342396929860115, -0.07837846875190735, -0.023972902446985245, -0.051642224192619324, -0.07694296538829803, -0.022878330200910568, -0.002548018004745245, 0.018132198601961136, -0.01320662908256054, -0.02921248786151409, -0.05512331798672676, 0.060578230768442154, 0.015001007355749607, -0.0008080312400124967, 0.03412908688187599, 0.07443083822727203, 0.008299002423882484, -0.00943843275308609, -0.014444749802350998, -0.012793921865522861, 0.007141627836972475, -0.01581745035946369, -0.00943843275308609, 0.06682267040014267, 0.0009123295312747359, -0.01383466087281704, 0.018930697813630104, 0.019917605444788933, -0.05142689868807793, -0.0510680228471756, -0.004171930719166994, -0.04256266728043556, -0.017719492316246033, 0.009510207921266556, 0.014157649129629135, -0.03647972270846367, -0.019558729603886604, -0.003848942695185542, -0.0374666303396225, -0.022357961162924767, 0.00645079230889678, 0.0067648086696863174, 0.0671815425157547, 0.02377551980316639, -0.05045793578028679, -0.06359279155731201, -0.017549024894833565, 0.03499038890004158, 0.05024261027574539, 0.06283915042877197, 0.028153805062174797, -0.04629497602581978, 0.02693362720310688, -0.04755103960633278, 0.01251579262316227, -0.002386523876339197, 0.002556989900767803, 0.008541243150830269, -0.03249620273709297, 0.0028575484175235033, -0.020168818533420563, -0.02314748801290989, 0.02603643760085106, -0.012820837087929249, 0.08067527413368225, 0.021442828699946404, 0.03549281507730484, -0.024367665871977806, 0.03136574476957321, 0.0012639156775549054, -0.017647717148065567, 0.011358418501913548, -0.0772300660610199, 0.014884373173117638, 0.009842168539762497, 0.017800237983465195, -0.033285729587078094, -0.025067472830414772, 0.02241179160773754, -0.05422613024711609, 0.01189673226326704, -0.02402673289179802, 0.0715598315000534, -0.053939029574394226, -0.01548548974096775, -0.003996978979557753, 0.04823290556669235, 0.01452549733221531, 0.10888291150331497, -0.007312093861401081, 0.008038817904889584, 0.02002526819705963, -0.025390461087226868, 0.0372513048350811, -0.043244533240795135, -0.01732472889125347, -0.056451160460710526, 0.028117917478084564, 0.03739485517144203, -0.01636473461985588, 0.034559737890958786, 0.05602050945162773, -0.04593610018491745, 0.0030482010915875435, -0.025892887264490128, 0.042239680886268616, 0.04442882165312767, -0.018428271636366844, 0.00021224138617981225, -0.034039366990327835, -0.013879520818591118, -0.04026586189866066, -0.025713449344038963, 0.0019065275555476546, -0.003884830279275775, -0.0029876409098505974, -0.018284721300005913, 0.05828142538666725, -0.004346882924437523, -0.003662775969132781, -0.022573286667466164, 0.04683328792452812, -0.027525771409273148, -0.008639934472739697, -0.08885764330625534, -0.03330367058515549, 0.008980866521596909, 0.007110226433724165, 0.04439293220639229, 0.02339870110154152, -0.015835393220186234, -0.0018257804913446307 ]
9,609
asyncclick.types
Tuple
The default behavior of Click is to apply a type on a value directly. This works well in most cases, except for when `nargs` is set to a fixed count and different types should be used for different items. In this case the :class:`Tuple` type can be used. This type can only be used if `nargs` is set to a fixed number. For more information see :ref:`tuple-type`. This can be selected by using a Python tuple literal as a type. :param types: a list of types that should be used for the tuple items.
class Tuple(CompositeParamType): """The default behavior of Click is to apply a type on a value directly. This works well in most cases, except for when `nargs` is set to a fixed count and different types should be used for different items. In this case the :class:`Tuple` type can be used. This type can only be used if `nargs` is set to a fixed number. For more information see :ref:`tuple-type`. This can be selected by using a Python tuple literal as a type. :param types: a list of types that should be used for the tuple items. """ def __init__(self, types: t.Sequence[t.Union[t.Type[t.Any], ParamType]]) -> None: self.types: t.Sequence[ParamType] = [convert_type(ty) for ty in types] async def to_info_dict(self) -> t.Dict[str, t.Any]: info_dict = await super().to_info_dict() info_dict["types"] = [await t.to_info_dict() for t in self.types] return info_dict @property def name(self) -> str: # type: ignore return f"<{' '.join(ty.name for ty in self.types)}>" @property def arity(self) -> int: # type: ignore return len(self.types) def convert( self, value: t.Any, param: t.Optional["Parameter"], ctx: t.Optional["Context"] ) -> t.Any: len_type = len(self.types) len_value = len(value) if len_value != len_type: self.fail( ngettext( "{len_type} values are required, but {len_value} was given.", "{len_type} values are required, but {len_value} were given.", len_value, ).format(len_type=len_type, len_value=len_value), param=param, ctx=ctx, ) return tuple(ty(x, param, ctx) for ty, x in zip(self.types, value))
(types: Sequence[Union[Type[Any], asyncclick.types.ParamType]]) -> None
[ -0.00038871850119903684, -0.041305411607027054, -0.01577373966574669, -0.026128513738512993, 0.044829633086919785, -0.0037800134159624577, 0.002581588225439191, -0.012287411838769913, -0.04024435207247734, -0.03147169202566147, 0.01588742434978485, 0.0815497636795044, 0.008758451789617538, -0.006271601188927889, -0.01998954452574253, 0.022585343569517136, 0.029065366834402084, 0.013945313170552254, 0.03997908905148506, 0.020235860720276833, 0.055137038230895996, 0.039562247693538666, 0.013225310482084751, -0.011226356029510498, 0.0033679066691547632, -0.02512430027127266, 0.04517068713903427, -0.037136975675821304, 0.008190029300749302, -0.003704223781824112, -0.03929698094725609, -0.037004340440034866, -0.022206394001841545, -0.014077944681048393, 0.005243702791631222, 0.011207408271729946, -0.049945440143346786, 0.08397503942251205, 0.026299040764570236, -0.03262748569250107, 0.015991635620594025, -0.06938551366329193, -0.026545356959104538, -0.05237071216106415, 0.0038723822217434645, -0.01814216934144497, -0.01614321582019329, -0.006697918754070997, -0.10368037223815918, -0.05858547240495682, 0.06260232627391815, -0.00826581846922636, 0.02340008318424225, 0.015167422592639923, -0.02300218679010868, 0.03914540261030197, -0.002103165490552783, 0.03990330174565315, 0.007687922101467848, 0.04191172868013382, 0.025863250717520714, 0.07571395486593246, 0.010667406022548676, -0.0015643476508557796, -0.006953708827495575, -0.018890593200922012, -0.02927378937602043, -0.02152428776025772, -0.022130604833364487, 0.02474535070359707, 0.0006353312055580318, -0.009658455848693848, -0.06184443086385727, 0.014608473517000675, 0.024555876851081848, -0.0113684618845582, 0.025541143491864204, 0.02806115336716175, 0.09670770913362503, -0.018274802714586258, -0.013462153263390064, -0.008175818249583244, -0.003761066123843193, -0.030619056895375252, -0.01502531673759222, 0.045663319528102875, -0.05498545989394188, -0.0035692232195287943, 0.008758451789617538, 0.003694749902933836, -0.07563816756010056, -0.019373754039406776, -0.004964228253811598, 0.029122209176421165, -0.0024584298953413963, -0.05028649419546127, 0.007536342833191156, -0.06934761255979538, -0.042518045753240585, -0.0017159271519631147, 0.01883375085890293, -0.0607454776763916, 0.006394759751856327, -0.051044393330812454, 0.006451602093875408, -0.08026133477687836, 0.024915877729654312, 0.019193751737475395, -0.015517950057983398, 0.027341149747371674, 0.008985821157693863, -0.05733494088053703, -0.027151675894856453, 0.012827414087951183, -0.045019108802080154, 0.06779392808675766, -0.011074775829911232, -0.04392015561461449, -0.020557967945933342, -0.004166067577898502, 0.021751657128334045, 0.07544869184494019, 0.015442159958183765, 0.0016247426392510533, 0.02307797782123089, 0.07904870063066483, -0.013547416776418686, -0.028496943414211273, -0.04933912307024002, 0.024631666019558907, -0.006655286997556686, -0.01942112110555172, -0.02512430027127266, 0.06752866506576538, -0.01137793529778719, 0.026374829933047295, -0.01710953377187252, -0.005632125306874514, -0.035280127078294754, 0.04471594840288162, -0.02222534269094467, 0.015224264934659004, 0.04664858803153038, -0.001511057955212891, -0.013016888871788979, -0.045284371823072433, 0.010790565051138401, -0.01748848333954811, 0.0094500333070755, 0.05729704722762108, -0.041873835027217865, -0.0375538170337677, -0.026772726327180862, 0.011728462763130665, 0.028307469561696053, -0.009639508090913296, 0.011605304665863514, -0.03702329099178314, -0.004059487953782082, -0.06737708300352097, -0.030600108206272125, -0.034313805401325226, 0.0264127254486084, -0.004893175326287746, 0.0264127254486084, 0.08314134925603867, 0.021353760734200478, 0.01515794824808836, -0.011292671784758568, -0.04119172692298889, -0.008621083572506905, 0.004964228253811598, 0.0681728720664978, -0.005561072379350662, 0.019335858523845673, 0.026109566912055016, -0.03723170980811119, -0.014134787023067474, 0.06055600568652153, -0.09064453095197678, -0.0011338855838403106, -0.04414752498269081, -0.03211590275168419, -0.007806343492120504, 0.06987814605236053, 0.03685276210308075, 0.03164221718907356, 0.008995295502245426, -0.011861095204949379, 0.005873705260455608, -0.0048837014473974705, 0.016683217138051987, 0.01927901618182659, -0.0018165854271501303, -0.039827510714530945, 0.03922119364142418, -0.03454117476940155, 0.016237951815128326, 0.010023193433880806, 0.018890593200922012, -0.03757276386022568, -0.03891803324222565, 0.04043382778763771, 0.025976935401558876, 0.04342752322554588, -0.006570023484528065, 0.07897291332483292, -0.02544640563428402, 0.007938975468277931, -0.05043807253241539, 0.007588448002934456, 0.006811602972447872, 0.05130965635180473, -0.008786872960627079, 0.00007926837133709341, -0.04634542763233185, 0.003126326948404312, -0.02908431366086006, -0.009824245236814022, -0.01955375447869301, 0.11413935571908951, 0.02275587059557438, 0.041949622333049774, 0.022149551659822464, 0.11785305291414261, -0.04554963484406471, 0.039562247693538666, -0.020330598577857018, -0.03709907829761505, 0.026317987591028214, -0.030164318159222603, -0.06017705798149109, 0.015309528447687626, 0.03736434504389763, -0.0843539834022522, -0.04691385105252266, 0.026166409254074097, -0.06570971012115479, -0.0482022762298584, -0.005812125746160746, 0.014608473517000675, 0.06154127046465874, -0.07844238728284836, 0.005532651208341122, -0.05127176269888878, -0.05608440935611725, 0.028288520872592926, 0.010402142070233822, -0.004256067797541618, 0.0004446726234164089, -0.0007134893676266074, 0.019269542768597603, -0.011756883934140205, -0.035033807158470154, -0.001605795230716467, -0.02364639937877655, -0.04441278800368309, -0.07446341961622238, -0.0030055369716137648, -0.06017705798149109, 0.024499034509062767, 0.0031002741307020187, -0.024764299392700195, 0.09746561199426651, 0.03690960630774498, -0.05881284177303314, 0.02402534894645214, -0.02891378663480282, -0.0186537504196167, 0.041949622333049774, 0.062071800231933594, 0.026374829933047295, 0.02813694253563881, 0.03321485593914986, -0.021296918392181396, 0.00945477094501257, 0.04922543838620186, 0.03423801809549332, 0.004554490093141794, -0.014021102339029312, 0.02203586883842945, -0.031035900115966797, -0.040395934134721756, -0.03416222706437111, 0.0252569317817688, 0.05403808876872063, -0.00536686135455966, 0.015792688354849815, -0.024176927283406258, 0.04134330525994301, 0.050589654594659805, 0.0169200599193573, 0.03776223957538605, -0.018625330179929733, 0.027530623599886894, 0.06836234778165817, -0.00932687520980835, 0.04858122393488884, 0.03825487196445465, -0.05968442186713219, 0.02313481830060482, -0.014257945120334625, 0.01922217383980751, -0.01928848959505558, 0.05509914457798004, -0.0343327522277832, -0.0010640169493854046, -0.03978961706161499, -0.023760084062814713, 0.01877690851688385, 0.0011842147214338183, 0.0421769917011261, -0.020974811166524887, -0.01820848509669304, 0.012884256429970264, 0.06320864707231522, -0.011974779888987541, -0.00971056055277586, -0.002726062433794141, 0.03077063523232937, -0.025275878608226776, -0.048694908618927, -0.0015430317725986242, -0.03634118288755417, 0.014295840635895729, 0.0180758535861969, -0.00010347076022299007, -0.01304531004279852, 0.007891607470810413, 0.01608637347817421, -0.03205906227231026, 0.04369278624653816, -0.014504262246191502, 0.014077944681048393, -0.011993726715445518, 0.03558328375220299, 0.012836887501180172, 0.011586356908082962, 0.010544247925281525, -0.017081113532185555, 0.0027450097259134054, -0.03255169466137886, -0.019117962568998337, 0.027720099315047264, -0.014940053224563599, 0.008744241669774055, 0.05778967961668968, 0.051233865320682526, 0.11709515750408173, 0.01575479283928871, 0.032078009098768234, -0.046307533979415894, -0.020842179656028748, -0.008635293692350388, 0.03967593237757683, -0.012893729843199253, -0.021183233708143234, -0.06294338405132294, 0.01377478614449501, -0.013320047408342361, 0.09072032570838928, -0.02286955527961254, 0.03933487832546234, 0.020804284140467644, 0.02724641188979149, -0.0030434317886829376, 0.002685799030587077, -0.02523798495531082, 0.004656332544982433, 0.021126391366124153, 0.018227433785796165, -0.016967428848147392, 0.022130604833364487, 0.005068439058959484, -0.0030931688379496336, 0.008208977058529854, -0.00855476688593626, 0.03133906051516533, -0.09602560847997665, -0.054833877831697464, 0.0010847407393157482, -0.05498545989394188, 0.04403384029865265, 0.023210609331727028, -0.02775799296796322, -0.02184639312326908, 0.03344222530722618, -0.02036849409341812, -0.04907386004924774, 0.03581065312027931, 0.005703178234398365, -0.012514781206846237, -0.02891378663480282, -0.022964293137192726, 0.014807420782744884, -0.02639377862215042, -0.011027407832443714, 0.009805298410356045, -0.0299180019646883, -0.013642153702676296, 0.019023224711418152, -0.06434549391269684, -0.027019044384360313, 0.00024217191094066948, -0.003659223672002554, 0.0018805330619215965, 0.04801280423998833, 0.030656950548291206, -0.03567802160978317, 0.008545293472707272, 0.02601482905447483, -0.0007513842429034412, 0.012713729403913021, -0.037080131471157074, 0.060328636318445206, -0.015252686105668545, -0.012154780328273773, 0.0565391480922699, -0.027530623599886894, 0.011775831691920757, 0.061996009200811386, -0.01570742391049862, 0.04653490334749222, 0.03641697019338608, 0.06472443789243698, 0.04107804223895073, -0.02203586883842945, 0.03270327299833298, 0.03844434767961502, -0.001625926815904677, -0.03141484782099724, -0.020425336435437202, -0.03196432441473007, -0.05479598417878151, -0.01755479909479618, 0.004317646846175194, -0.0034886966459453106, -0.059494949877262115, 0.07480447739362717, 0.015622161328792572, -0.023419030010700226, 0.04608016461133957, 0.016048477962613106, -0.010686353780329227, 0.035924337804317474, -0.038539085537195206, -0.03435170277953148, 0.016569532454013824, 0.017649536952376366, -0.035014860332012177, 0.012306359596550465, 0.0741223692893982, 0.09890561550855637, -0.031812746077775955, 0.04115382954478264, -0.049945440143346786, -0.07488026469945908, -0.017592694610357285, -0.01214530598372221, 0.0038747505750507116, 0.08647609502077103, -0.02948221005499363, -0.01853059232234955, -0.053924404084682465, 0.021543234586715698, -0.06514128297567368, 0.0278148353099823, -0.024631666019558907, -0.037705399096012115, 0.009184769354760647, 0.010023193433880806, -0.00575054669752717, 0.02485903538763523, 0.03744013234972954, 0.026071671396493912, 0.02934957854449749, 0.04115382954478264, -0.01974322833120823, -0.034768544137477875, -0.039827510714530945, 0.02364639937877655, -0.005603704135864973, 0.02698114886879921, 0.005892652552574873, -0.06525497138500214, 0.03075168840587139, -0.00922266487032175, 0.015972688794136047, -0.03772434592247009, 0.029709579423069954, -0.05835810303688049, -0.004225278273224831, 0.047899119555950165, 0.010648459196090698, -0.0016957955667749047, -0.007318447344005108, 0.009720034897327423, 0.0010018456960096955, -0.027890626341104507, 0.03156642988324165, 0.0412675142288208, -0.012922151014208794, 0.05286334455013275, -0.03833066299557686, 0.04248015210032463, -0.07177288830280304, 0.08571819961071014, -0.004518963396549225, -0.06328443437814713, 0.0026597462128847837, -0.07207604497671127, -0.014494788832962513, 0.08177713304758072, -0.011756883934140205, -0.00126947823446244, -0.01207899022847414, 0.08465714007616043, -0.0025129036512225866, 0.01493057981133461, -0.061351798474788666, -0.011880042031407356, 0.01763058826327324, 0.013225310482084751, 0.05184018611907959, -0.0017609273781999946, -0.030808530747890472, 0.0022618500515818596, -0.047785434871912, 0.013225310482084751, 0.02173270843923092, 0.06408023089170456, 0.02146744541823864, -0.0006465812330134213, -0.04581490159034729, 0.024044295772910118, 0.0301264226436615, -0.05112018063664436, 0.06301917135715485, 0.019459016621112823, 0.02383587509393692, 0.021296918392181396, 0.03581065312027931, -0.05498545989394188, 0.0066363392397761345, -0.011387408711016178, 0.030410634353756905, 0.022452712059020996, -0.00632844353094697, 0.022926397621631622, -0.0157642662525177, -0.04513279348611832, 0.0301264226436615, -0.0074368687346577644, 0.0299180019646883, -0.10125509649515152, 0.008332135155797005, -0.0008822400122880936, -0.05574335530400276, 0.018672697246074677, 0.032968539744615555, 0.01744111441075802, 0.012457938864827156, -0.03306327387690544, -0.005508967209607363, 0.02345692552626133, 0.03150958567857742, 0.032021164894104004, 0.03044852986931801, -0.004298699554055929, -0.0192316472530365, 0.007290026172995567, -0.04323804751038551, -0.017715852707624435, -0.05089281126856804, 0.046951744705438614, -0.027397992089390755, -0.019515858963131905, -0.010913723148405552, -0.04054751247167587, -0.02307797782123089, -0.010572669096291065, 0.05737283453345299, -0.017905326560139656, -0.028364311903715134, 0.021050602197647095, 0.020103229209780693, 0.0017088218592107296, -0.0048837014473974705, -0.03387801721692085, 0.028440101072192192, -0.02017901837825775, 0.040850672870874405, 0.01256215013563633, 0.003296853741630912, 0.013111625798046589, -0.01439057756215334, -0.03948645666241646, 0.027663256973028183, -0.03673907741904259, -0.012192674912512302, -0.06063179299235344, 0.011055829003453255, -0.039183296263217926, 0.011794778518378735, 0.022395869717001915, -0.024461138993501663, 0.004054751247167587, -0.002098428551107645, -0.007621605880558491, 0.014475841075181961, 0.08223187178373337, -0.010269510559737682, 0.003905540332198143, -0.007507921662181616, -0.02340008318424225, -0.029785368591547012, -0.058017048984766006, 0.05964652821421623, 0.02569272369146347, -0.0010136878117918968, -0.06138969212770462, 0.04338962957262993, -0.024764299392700195, -0.0043034362606704235, -0.04301067814230919, -0.0026502725668251514, -0.037080131471157074, -0.037269607186317444, 0.007654764223843813, -0.057183362543582916, 0.02749272994697094, -0.02633693628013134, 0.0444885790348053, -0.0444885790348053, -0.016057951375842094, -0.058926526457071304, -0.004270278383046389, -0.02916010469198227, 0.015792688354849815, 0.060025475919246674, 0.0021339550148695707, -0.022774817422032356, -0.031301163136959076, 0.015612686984241009, 0.047520168125629425, -0.004338962957262993, -0.03653065487742424, -0.07760869711637497, 0.004433699883520603, -0.005537387914955616, 0.0299180019646883, 0.07340236753225327, 0.011520041152834892, -0.015584265813231468, -0.0018864540616050363, 0.02609062008559704, -0.020084282383322716, 0.015044264495372772, -0.030941162258386612, -0.0026929043233394623, 0.0014518472598865628, -0.03145274519920349, 0.05797915533185005, 0.008895820938050747, -0.006006337236613035, 0.011463198810815811, -0.014826368540525436, -0.01961059682071209, 0.06267812103033066, -0.01137793529778719, 0.0030529056675732136, -0.012855835258960724, 0.03442749008536339, 0.006570023484528065, -0.030429581180214882, 0.002595798810943961, -0.018729539588093758, 0.03978961706161499, -0.03196432441473007, 0.00041121855610981584, -0.005840546917170286, -0.057903364300727844, -0.05286334455013275, 0.02069059945642948, -0.04088856652379036, -0.029633790254592896, 0.0013571101007983088, -0.0036710656713694334, 0.004445542115718126, -0.13104046881198883, 0.03914540261030197, -0.005210544914007187, 0.00471080606803298, -0.030656950548291206, -0.07904870063066483, -0.07522132247686386, -0.0241011381149292, -0.06229916960000992, 0.030031686648726463, 0.015281107276678085, 0.020425336435437202, -0.0398654043674469, -0.007370552513748407, 0.024631666019558907, -0.0018935593543574214, 0.07537289708852768, 0.009213190525770187, -0.02698114886879921, 0.0677560344338417, -0.011415829882025719, -0.026071671396493912, 0.05036228522658348, -0.029179051518440247, -0.05487177520990372, -0.046875957399606705, -0.02717062272131443, 0.02601482905447483, 0.0593433678150177, -0.03658749908208847, 0.03690960630774498, -0.021751657128334045, 0.020160071551799774, 0.029103262349963188, 0.0036852762568742037, 0.021050602197647095, 0.022926397621631622, 0.016228478401899338, -0.027852730825543404, 0.032779064029455185, -0.0676802396774292, 0.013462153263390064, -0.023096924647688866, 0.00126947823446244, 0.012287411838769913, 0.03872855752706528, 0.028667470440268517, 0.015167422592639923, -0.006759497802704573, -0.01195583213120699, -0.022642185911536217, 0.01441899873316288, 0.07829080522060394, 0.001015464193187654, 0.012931625358760357, -0.026128513738512993, -0.0036639603786170483, 0.02724641188979149, -0.015319001860916615, 0.02127796970307827, -0.05839599668979645, 0.011103197000920773, 0.0556296706199646, -0.046118058264255524, -0.004755806177854538, 0.03416222706437111, -0.05047596991062164, 0.06631602346897125, -0.0004719095886684954, -0.10072457045316696, -0.04248015210032463, -0.02364639937877655, 0.028231680393218994, 0.03461696580052376, -0.02698114886879921, 0.02794746868312359, 0.02192218415439129, -0.022850608453154564, 0.04240436106920242 ]
9,611
asyncclick.types
__init__
null
def __init__(self, types: t.Sequence[t.Union[t.Type[t.Any], ParamType]]) -> None: self.types: t.Sequence[ParamType] = [convert_type(ty) for ty in types]
(self, types: Sequence[Union[Type[Any], asyncclick.types.ParamType]]) -> NoneType
[ -0.009879736229777336, 0.029351087287068367, 0.006464117206633091, -0.00408480130136013, -0.04383145272731781, 0.047474779188632965, -0.020056886598467827, 0.005376695655286312, -0.03922152891755104, 0.05401789769530296, -0.0007789702503941953, 0.059408534318208694, -0.000321521278237924, 0.017724040895700455, -0.027064714580774307, 0.013560239225625992, -0.01315129455178976, 0.06026360020041466, -0.0043868632055819035, -0.04048554226756096, -0.006887003313750029, 0.06472481787204742, -0.023681625723838806, 0.05959441885352135, 0.012249757535755634, -0.022622086107730865, -0.0006622118526138365, -0.049370795488357544, -0.04502110928297043, -0.02070748060941696, -0.00406621303409338, 0.013736829161643982, -0.023086795583367348, -0.01949923485517502, 0.04063424840569496, 0.0266557689756155, -0.007695598527789116, 0.07784823328256607, -0.0350763164460659, 0.0248155165463686, -0.009210553020238876, -0.03580126166343689, -0.030020270496606827, -0.02284514717757702, 0.004003477282822132, 0.011171629652380943, 0.015604963526129723, -0.008862020447850227, -0.042307205498218536, 0.004070860333740711, 0.000687770894728601, -0.02453669160604477, 0.022863734513521194, -0.017101330682635307, -0.022789381444454193, 0.08022754639387131, -0.006738295778632164, 0.047474779188632965, 0.004338068421930075, 0.042902033776044846, -0.003896593814715743, 0.03031768463551998, 0.02764095366001129, -0.015446962788701057, 0.03996506705880165, 0.01630202867090702, -0.022510554641485214, -0.037585750222206116, 0.019201820716261864, 0.04041118547320366, 0.029239557683467865, -0.02091195248067379, -0.06297750771045685, 0.048850320279598236, 0.08944739401340485, 0.026618592441082, -0.022157376632094383, 0.03403536602854729, 0.01616261526942253, -0.008253250271081924, 0.04598770663142204, 0.042195674031972885, -0.021525369957089424, 0.021990079432725906, 0.02362585999071598, 0.02602376416325569, -0.09361119568347931, -0.02418351173400879, -0.00572058092802763, -0.005288400687277317, -0.07888918370008469, -0.04569029435515404, -0.031135573983192444, 0.012426347471773624, -0.005948288831859827, 0.019629353657364845, 0.015038017183542252, -0.0668438971042633, -0.05591391399502754, -0.018207339569926262, -0.0016102204099297523, -0.06952062249183655, 0.003940741531550884, -0.04052271693944931, -0.015288961119949818, -0.058181699365377426, 0.009103669784963131, -0.034165482968091965, -0.03024333156645298, 0.04427757486701012, -0.0071472409181296825, -0.026116706430912018, 0.01110657025128603, 0.016785327345132828, -0.021432427689433098, 0.046879950910806656, -0.0009352290071547031, -0.022659262642264366, 0.00962879229336977, 0.03399818763136864, 0.006696471944451332, 0.04989127069711685, 0.014099303632974625, 0.053311537951231, 0.045615941286087036, 0.02555905282497406, 0.00871331337839365, -0.041563667356967926, -0.019833825528621674, -0.0036456503439694643, 0.012816703878343105, -0.02925814501941204, -0.04531852528452873, 0.03574549779295921, -0.04896185174584389, -0.015065900050103664, -0.07446514070034027, -0.04070860147476196, 0.005859993863850832, -0.028384489938616753, 0.014294481836259365, 0.0792609453201294, 0.06710413098335266, -0.05186164379119873, -0.03212076053023338, 0.04769784212112427, 0.03332900628447533, -0.010130679234862328, -0.03704668581485748, 0.05840476229786873, -0.06896297633647919, -0.04319944605231285, -0.011887283064424992, 0.004663365427404642, -0.0350763164460659, -0.03303159028291702, 0.04070860147476196, -0.014201539568603039, -0.0010496638715267181, -0.019238997250795364, 0.008267192170023918, -0.013225648552179337, -0.009796088561415672, -0.029444029554724693, 0.025019990280270576, 0.05030021816492081, -0.03358924388885498, 0.013578828424215317, 0.0005251223919913173, -0.02366303652524948, 0.007523655891418457, -0.02213878743350506, 0.038180578500032425, 0.001086259726434946, 0.08111979067325592, -0.022064434364438057, -0.022863734513521194, -0.005432460457086563, 0.0056276386603713036, -0.01177575346082449, 0.04048554226756096, 0.003008997766301036, -0.03702809661626816, 0.008230015635490417, 0.045392878353595734, 0.017166389152407646, -0.01806792803108692, 0.024425160139799118, -0.016813209280371666, -0.02414633519947529, 0.034760311245918274, 0.06253138929605484, -0.0004345039196778089, 0.000326168374158442, 0.0020842247176915407, 0.04732607305049896, -0.005413872189819813, 0.020800422877073288, -0.018560519441962242, 0.046805597841739655, -0.016106851398944855, 0.016004614531993866, 0.0008608754142187536, -0.01830957643687725, 0.03167463839054108, -0.03903564438223839, 0.034239836037158966, 0.02866331674158573, 0.03929588198661804, -0.07688163220882416, 0.04427757486701012, -0.048850320279598236, 0.037511397153139114, -0.034593015909194946, -0.03299441561102867, -0.03260405734181404, -0.04074577987194061, -0.04438910633325577, -0.008429840207099915, -0.014526836574077606, 0.10268233716487885, 0.04580182209610939, -0.06751307845115662, -0.02752942405641079, 0.0796327143907547, 0.014192244969308376, -0.022938089445233345, -0.03749280795454979, -0.06513376533985138, 0.02422068826854229, -0.0009340672404505312, -0.014666249975562096, -0.02780825085937977, -0.0042033023200929165, -0.008137073367834091, -0.037474218755960464, 0.00589717086404562, -0.028681905940175056, -0.04710301384329796, -0.013216353952884674, 0.018820757046341896, 0.01573508232831955, -0.07342419028282166, -0.029741443693637848, -0.010455976240336895, 0.009656675159931183, -0.019629353657364845, 0.045615941286087036, 0.0011524809524416924, 0.030689451843500137, 0.016878269612789154, -0.011803635396063328, -0.010325857438147068, -0.03873823210597038, -0.0062735858373343945, 0.03981635719537735, 0.006975297816097736, -0.07769951969385147, 0.027715308591723442, -0.040113773196935654, 0.02879343554377556, 0.01496366411447525, 0.018755698576569557, 0.10944851487874985, -0.0232355035841465, -0.03730692341923714, -0.0022886970546096563, -0.005697345361113548, -0.038217756897211075, -0.020614538341760635, 0.1191144809126854, 0.021748431026935577, 0.03059651143848896, 0.00964738056063652, 0.010530330240726471, -0.00013345891784410924, 0.0366935059428215, -0.03788316249847412, -0.032975826412439346, 0.02897932007908821, 0.0432366244494915, -0.021246543154120445, 0.028105664998292923, -0.008555312640964985, 0.022733615711331367, 0.022863734513521194, 0.01031656377017498, 0.05732663348317146, -0.06810791045427322, -0.04197261109948158, 0.032306645065546036, 0.04717736691236496, 0.05792146176099777, -0.014526836574077606, 0.02091195248067379, 0.038292109966278076, -0.007068240083754063, 0.04271614924073219, 0.03760433942079544, -0.05360895395278931, -0.025763526558876038, -0.03918435424566269, 0.05885088071227074, -0.01819804683327675, 0.039481766521930695, -0.06044948473572731, -0.01837463676929474, -0.038106225430965424, 0.0036131206434220076, 0.044091690331697464, 0.02531740441918373, 0.06520811468362808, -0.07524584978818893, 0.0015579405007883906, 0.03721398115158081, 0.04974256455898285, 0.011366807855665684, -0.024629633873701096, -0.008541370742022991, 0.054092250764369965, 0.017231449484825134, -0.028365902602672577, 0.02879343554377556, -0.06457611173391342, -0.02425786480307579, 0.015818729996681213, -0.018541932106018066, -0.038849759846925735, -0.01445248257368803, -0.001634617685340345, -0.01606038026511669, 0.034407131373882294, 0.022733615711331367, -0.019424879923462868, 0.02225031703710556, -0.009122258983552456, -0.00791865959763527, -0.015019428916275501, 0.01651579514145851, -0.008741196244955063, -0.009117611683905125, -0.01869063824415207, -0.006975297816097736, 0.032585468143224716, -0.05461272597312927, -0.0009497511782683432, -0.004382215905934572, 0.008164956234395504, 0.07695598900318146, 0.003218117170035839, 0.0075887152925133705, -0.014275893568992615, 0.03238099813461304, 0.04115472361445427, 0.039927888661623, -0.008550665341317654, -0.027864014729857445, 0.008476311340928078, 0.008401958271861076, -0.02721342071890831, 0.09056269377470016, 0.019759472459554672, 0.016590150073170662, -0.003922152798622847, 0.01766827702522278, 0.035894203931093216, 0.03299441561102867, -0.046210769563913345, 0.014972957782447338, 0.023439975455403328, 0.022696439176797867, 0.0018100456800311804, -0.06531964987516403, -0.012881763279438019, -0.03217652440071106, 0.04658253490924835, -0.04182390496134758, 0.03464878350496292, -0.05379483848810196, -0.032659824937582016, -0.06108149141073227, -0.05044892430305481, 0.05788428708910942, 0.0058321114629507065, -0.019313350319862366, -0.06803355365991592, 0.028254371136426926, 0.012472817674279213, -0.010874215513467789, 0.05375766009092331, 0.007690951693803072, -0.041452135890722275, -0.037195391952991486, -0.03059651143848896, 0.022454790771007538, -0.015409785322844982, 0.01388553623110056, 0.08483746647834778, -0.029128026217222214, -0.0431622713804245, -0.004819043446332216, -0.07628680765628815, -0.008615724742412567, 0.06665801256895065, -0.004233508836477995, 0.009638086892664433, 0.020763246342539787, 0.025967998430132866, -0.009117611683905125, 0.013634593226015568, 0.04628512263298035, 0.0040220655500888824, 0.0003467898932285607, -0.03303159028291702, 0.0009619498159736395, -0.028960730880498886, -0.010437387973070145, -0.0009044419857673347, 0.003717680461704731, -0.0029439383652061224, 0.07163970172405243, -0.009638086892664433, 0.019982533529400826, 0.05602544546127319, 0.06699260324239731, 0.04792090132832527, 0.044203221797943115, -0.0061434670351445675, 0.01464766077697277, -0.018606990575790405, -0.010976451449096203, 0.07059875130653381, -0.03200922906398773, -0.07409337162971497, 0.0433109775185585, 0.031916286796331406, -0.023439975455403328, -0.07903788983821869, 0.02552187629044056, -0.013337179087102413, -0.035541024059057236, 0.020688891410827637, 0.017789101228117943, -0.04122907668352127, 0.01277952641248703, -0.03937023505568504, -0.046136416494846344, 0.02524305135011673, -0.05847911536693573, -0.030968278646469116, -0.015744376927614212, 0.006031936500221491, 0.0497797429561615, -0.0697808638215065, 0.08796031773090363, 0.01277952641248703, -0.019945355132222176, 0.04587617889046669, -0.006887003313750029, -0.010567506775259972, 0.050077155232429504, -0.040894486010074615, -0.013876242563128471, -0.061490435153245926, -0.01981523633003235, 0.017092036083340645, 0.030782394111156464, -0.05628568306565285, 0.01936911605298519, 0.000692998874001205, 0.019852414727211, 0.027789661660790443, 0.034593015909194946, -0.016181204468011856, -0.01697121188044548, 0.00639905733987689, 0.07137946784496307, -0.014991546981036663, -0.04141496121883392, -0.03425842523574829, 0.0017902954714372754, -0.0001606154110049829, 0.018950875848531723, 0.010771979577839375, -0.07097052037715912, 0.000017590002244105563, 0.0020726069342345, -0.02622823603451252, -0.046805597841739655, 0.0068033551797270775, -0.008183544501662254, 0.00028448968078009784, -0.006185290869325399, 0.040262479335069656, 0.012872468680143356, -0.009484732523560524, -0.013764712028205395, -0.019759472459554672, -0.023644447326660156, 0.01291893981397152, 0.056768979877233505, -0.010009855031967163, -0.04197261109948158, -0.02678588777780533, 0.05855346843600273, -0.043496862053871155, 0.037269748747348785, -0.044872403144836426, -0.07680728286504745, -0.0007191388285718858, -0.03366359695792198, -0.02067030407488346, -0.004856219980865717, -0.010493152774870396, -0.011450455524027348, -0.04468651860952377, 0.04163802042603493, -0.021358074620366096, -0.0056136976927518845, -0.012621525675058365, -0.03667491674423218, -0.010455976240336895, -0.004070860333740711, 0.04100601747632027, 0.02949979528784752, 0.002957879565656185, -0.03704668581485748, -0.039927888661623, 0.05052327737212181, -0.011803635396063328, 0.04390580579638481, -0.02513151988387108, -0.056880511343479156, -0.0062317620031535625, 0.0038106224965304136, -0.0030833513010293245, 0.0429392084479332, -0.022064434364438057, 0.02831013686954975, 0.015521315857768059, 0.00554399099200964, 0.05829323083162308, -0.009861147962510586, 0.038292109966278076, 0.003947712015360594, 0.002102812984958291, -0.019238997250795364, -0.002352594630792737, 0.024666810408234596, 0.029908739030361176, -0.06446457654237747, -0.04111754521727562, -0.06175067275762558, 0.09524697810411453, -0.06048666313290596, -0.04070860147476196, 0.024703986942768097, -0.03847799450159073, 0.007356360089033842, 0.038849759846925735, 0.03858952224254608, 0.025187285616993904, -0.0317675806581974, 0.03918435424566269, -0.040299657732248306, -0.0070589459501206875, 0.031321458518505096, 0.03673068434000015, -0.0016659855609759688, 0.018820757046341896, 0.044835228472948074, -0.019146054983139038, -0.013142000883817673, -0.020094063133001328, 0.007876835763454437, -0.022343259304761887, -0.017222154885530472, 0.022752204909920692, -0.06420434266328812, -0.029629914090037346, -0.007658421993255615, 0.04052271693944931, -0.032269466668367386, -0.04859008267521858, 0.033459123224020004, -0.015437668189406395, -0.024592457339167595, -0.019406292587518692, -0.014880016446113586, 0.02914661541581154, -0.0002020036627072841, 0.03288288414478302, -0.006357233505696058, 0.06572858989238739, -0.06297750771045685, -0.00492127938196063, 0.012361288070678711, 0.04197261109948158, -0.07349854707717896, 0.008587841875851154, -0.018207339569926262, 0.046917129307985306, -0.020019710063934326, 0.0033621774055063725, 0.038143403828144073, -0.01865346170961857, 0.0014615131076425314, 0.052865415811538696, -0.0031855874694883823, 0.03505772724747658, 0.08327604085206985, 0.027380716055631638, 0.0697065070271492, -0.001185010652989149, 0.0036410032771527767, -0.025298815220594406, -0.06896297633647919, 0.0032947943545877934, 0.041526492685079575, -0.016813209280371666, -0.04312509298324585, -0.005678757093846798, -0.017408039420843124, 0.013142000883817673, -0.027362128719687462, -0.030336273834109306, -0.04003942012786865, -0.08803467452526093, 0.050151508301496506, -0.02678588777780533, 0.07777387648820877, -0.03273417800664902, 0.019313350319862366, -0.023997627198696136, -0.03277135267853737, -0.005785640329122543, -0.00941502582281828, -0.04933362081646919, 0.048106785863637924, 0.027659542858600616, 0.017835572361946106, -0.015103076584637165, 0.010995039716362953, -0.020391477271914482, 0.06364668905735016, -0.021952902898192406, -0.04468651860952377, -0.019127465784549713, 0.0173522736877203, 0.04297638684511185, 0.049593858420848846, 0.0627916231751442, 0.02453669160604477, 0.0008370589930564165, -0.021674077957868576, 0.005548638291656971, -0.07219735532999039, 0.015567786991596222, 0.07628680765628815, 0.003759504295885563, -0.05464990437030792, 0.004435657523572445, 0.0661003589630127, 0.007068240083754063, -0.03379371762275696, -0.01717568375170231, -0.004254420753568411, -0.05238211899995804, 0.01476848591119051, 0.031358636915683746, -0.009168729186058044, -0.03489043191075325, 0.032901473343372345, 0.010613977909088135, -0.022157376632094383, 0.03048497997224331, -0.011078688316047192, 0.012807409279048443, 0.018988052383065224, 0.01929476112127304, -0.03098686784505844, -0.03792034089565277, -0.059445712715387344, -0.05650874227285385, -0.032901473343372345, -0.034593015909194946, -0.04870161414146423, 0.033143121749162674, 0.011376102454960346, -0.05762404948472977, 0.011701399460434914, -0.01672026887536049, 0.030893925577402115, -0.02795695699751377, -0.043496862053871155, -0.01813298650085926, -0.027864014729857445, -0.09807240962982178, 0.03182334452867508, 0.05717792734503746, 0.06751307845115662, -0.00023787346435710788, -0.06461329013109207, 0.04371992126107216, -0.0025698465760797262, 0.02291950024664402, 0.017454510554671288, 0.026618592441082, 0.05111810564994812, -0.020187005400657654, -0.005808875896036625, -0.003259941004216671, -0.005418519489467144, -0.06364668905735016, -0.041452135890722275, 0.013997066766023636, 0.06249421089887619, 0.0635351613163948, -0.00683123804628849, -0.01533543225377798, 0.01809580996632576, 0.004607600159943104, 0.035503849387168884, 0.03509490564465523, 0.042195674031972885, 0.008425193838775158, -0.016069674864411354, 0.008044131100177765, 0.04725171998143196, -0.05193599686026573, 0.0625685602426529, 0.004874808713793755, -0.010056326165795326, -0.04520699381828308, -0.0563228614628315, -0.03704668581485748, 0.02197149209678173, 0.018290987238287926, -0.008164956234395504, 0.0015033370582386851, -0.07546891272068024, 0.017296507954597473, 0.01777980662882328, 0.018560519441962242, -0.052679531276226044, -0.0349276065826416, 0.06509658694267273, -0.044798050075769424, 0.03870105370879173, -0.025019990280270576, -0.04033683240413666, 0.005306988954544067, -0.020391477271914482, 0.00922449491918087, 0.02422068826854229, -0.02933249995112419, 0.02299385331571102, 0.01128316018730402, -0.09814676642417908, -0.05717792734503746, -0.04516981914639473, 0.003759504295885563, 0.028607551008462906, -0.039927888661623, 0.035150669515132904, 0.030299095436930656, 0.025019990280270576, 0.021841373294591904 ]
9,612
asyncclick.types
convert
null
def convert( self, value: t.Any, param: t.Optional["Parameter"], ctx: t.Optional["Context"] ) -> t.Any: len_type = len(self.types) len_value = len(value) if len_value != len_type: self.fail( ngettext( "{len_type} values are required, but {len_value} was given.", "{len_type} values are required, but {len_value} were given.", len_value, ).format(len_type=len_type, len_value=len_value), param=param, ctx=ctx, ) return tuple(ty(x, param, ctx) for ty, x in zip(self.types, value))
(self, value: Any, param: Optional[ForwardRef('Parameter')], ctx: Optional[ForwardRef('Context')]) -> Any
[ 0.03998391702771187, 0.012031840160489082, 0.02994934283196926, -0.015167644247412682, 0.0012953283730894327, -0.0011946208542212844, 0.006450108252465725, -0.009204791858792305, 0.0018139422172680497, 0.016248291358351707, 0.01577550731599331, 0.0719015821814537, 0.02734421379864216, -0.0399453230202198, 0.02167082019150257, 0.05893382430076599, -0.014289619401097298, 0.018052583560347557, 0.03842083737254143, 0.04148910194635391, 0.029023075476288795, 0.02460400201380253, 0.015814103186130524, 0.0258004330098629, 0.0022107420954853296, -0.04280131682753563, 0.03934710845351219, -0.03075982816517353, -0.02825118415057659, 0.0031840475276112556, -0.03799629956483841, 0.0033987294882535934, -0.01427032146602869, -0.0177824217826128, 0.004315349273383617, 0.03483154997229576, -0.05449545383453369, 0.028637129813432693, -0.0052826241590082645, -0.019056040793657303, -0.02861783280968666, -0.04338023439049721, 0.0009322987170889974, 0.017280694097280502, -0.036549005657434464, -0.03357722610235214, -0.022056765854358673, -0.01171343494206667, -0.1006544902920723, 0.0035096886567771435, 0.01874728500843048, 0.00020910387684125453, 0.03569992631673813, -0.015553588978946209, 0.014984319917857647, 0.024275949224829674, -0.00870788749307394, 0.04696952551603317, 0.024372436106204987, 0.023774221539497375, 0.021786604076623917, 0.05410951003432274, -0.021381361410021782, -0.031107177957892418, 0.015322022140026093, -0.0013544262619689107, 0.013903673738241196, -0.021902386099100113, -0.016547398641705513, 0.040408454835414886, 0.019750742241740227, -0.008924981579184532, -0.08320977538824081, 0.03705073520541191, 0.07680308073759079, 0.034561388194561005, 0.021748008206486702, 0.035371873527765274, 0.06040041521191597, -0.029698478057980537, 0.04585028439760208, 0.042029425501823425, 0.012514270842075348, 0.007583822123706341, 0.02603200078010559, 0.05715847760438919, -0.07259628176689148, 0.015225536189973354, 0.0328439325094223, 0.06013025343418121, -0.025703946128487587, -0.07051217555999756, -0.024661894887685776, 0.028444157913327217, -0.005900136195123196, -0.0037364314775913954, 0.006604486145079136, -0.03326847031712532, -0.01812012493610382, -0.012697595171630383, 0.02128487452864647, -0.036626193672418594, -0.00796494260430336, -0.008939454331994057, 0.03228431195020676, -0.042029425501823425, 0.05380075424909592, -0.01623864285647869, 0.017068423330783844, 0.03791911154985428, -0.016460560262203217, -0.05522875115275383, -0.014627320691943169, -0.01935514807701111, -0.05557610094547272, 0.050172869116067886, -0.03444560244679451, -0.0011560262646526098, -0.06653694063425064, 0.031010692939162254, 0.027826644480228424, 0.04642920196056366, 0.04326445236802101, -0.0018645974341779947, -0.007091742008924484, 0.0711296871304512, 0.009605209343135357, -0.0755680575966835, 0.011771326884627342, 0.00796494260430336, -0.008649995550513268, -0.009383291006088257, -0.02084103785455227, 0.015254481695592403, -0.05553750693798065, -0.02277076430618763, -0.02720913290977478, -0.03888397291302681, 0.004677172750234604, -0.009108304977416992, 0.031184367835521698, 0.09725817292928696, 0.10304735600948334, -0.05306745693087578, 0.027459997683763504, -0.005475596524775028, 0.05048162490129471, 0.017406126484274864, -0.0427241288125515, 0.08104848116636276, -0.0722489282488823, 0.010073168203234673, -0.013797539286315441, -0.025549568235874176, -0.0019068102119490504, -0.007260593120008707, 0.03724370524287224, -0.057698797434568405, 0.04689233377575874, -0.04924660176038742, -0.012273055501282215, -0.01316072978079319, -0.014521186240017414, -0.017068423330783844, 0.0271319430321455, 0.06900699436664581, -0.006508000195026398, 0.04596606642007828, 0.01504221186041832, -0.04666076973080635, -0.0015208651311695576, -0.02919675037264824, 0.048320330679416656, 0.011395030654966831, 0.05372356250882149, -0.042994290590286255, -0.024430327117443085, -0.01948058046400547, 0.02232692576944828, -0.0337316058576107, -0.017685936763882637, -0.010121411643922329, -0.001484682783484459, 0.009499074891209602, 0.03564203530550003, 0.021091902628540993, 0.017097370699048042, 0.06510894745588303, -0.024063680320978165, -0.035217493772506714, 0.021844495087862015, 0.04492401331663132, -0.008765779435634613, 0.01389402523636818, -0.027074052020907402, 0.02026212029159069, 0.036626193672418594, 0.015447454527020454, -0.009807830676436424, 0.02520221844315529, -0.031165070831775665, -0.023407572880387306, 0.03178258240222931, -0.010738923214375973, -0.0021263165399432182, -0.04118034616112709, 0.04079440236091614, 0.012176569551229477, -0.013874728232622147, -0.058007556945085526, 0.036491114646196365, -0.024526813998818398, 0.01334405317902565, -0.03836294636130333, 0.004691645503044128, -0.09316715598106384, 0.005388759076595306, -0.08251506835222244, -0.008061429485678673, -0.004368416499346495, 0.08452198654413223, -0.010893302038311958, -0.008167563937604427, -0.015061508864164352, 0.11408538371324539, 0.004944921936839819, -0.034194741398096085, -0.04951676353812218, -0.023716328665614128, 0.05380075424909592, 0.005340516101568937, -0.04214521124958992, -0.022307628765702248, 0.015408859588205814, -0.0328439325094223, -0.006131703499704599, 0.0630248412489891, -0.04967113956809044, -0.06159684434533119, -0.0052826241590082645, -0.009103480726480484, -0.0076224165968596935, -0.04515558108687401, 0.034349117428064346, -0.008495617657899857, -0.009513547644019127, 0.005335691850632429, 0.029100263491272926, -0.02927393838763237, 0.021034009754657745, -0.01223446149379015, 0.03502452000975609, 0.01637372188270092, -0.018708691000938416, 0.00470611872151494, -0.014482591301202774, -0.0392313227057457, -0.10628928989171982, 0.03512100875377655, -0.019673554226756096, 0.0005496703088283539, 0.019934067502617836, -0.01408699806779623, 0.11292754858732224, -0.0005903754499740899, -0.05924258008599281, -0.025549568235874176, 0.018457826226949692, 0.007839511148631573, 0.03514030575752258, -0.015167644247412682, 0.034561388194561005, 0.018920959904789925, 0.02551097422838211, -0.02055157907307148, 0.005996622610837221, 0.04936238378286362, 0.004708530846983194, 0.04770281910896301, 0.017097370699048042, -0.00535981310531497, -0.01814907044172287, -0.02062876708805561, -0.045348554849624634, -0.01966390572488308, 0.033229876309633255, -0.008572806604206562, -0.007289539091289043, -0.03185977041721344, 0.011877462267875671, 0.01577550731599331, 0.018863068893551826, -0.013903673738241196, 0.000354888616129756, -0.005625150632113218, 0.01652810163795948, -0.029023075476288795, 0.02277076430618763, 0.10389643162488937, -0.046390607953071594, -0.019721796736121178, 0.011028382927179337, 0.01950952783226967, -0.0012314062332734466, 0.02358124777674675, -0.029158156365156174, -0.021265577524900436, -0.06518613547086716, -0.03913483768701553, 0.0516008660197258, 0.0008539036498405039, 0.03986813500523567, -0.026379350572824478, -0.01053630281239748, 0.08822706341743469, 0.03514030575752258, 0.023330384865403175, 0.021458549425005913, -0.002843933179974556, 0.040910184383392334, 0.007009728811681271, -0.033152688294649124, 0.029100263491272926, -0.06086355075240135, 0.020802443847060204, 0.03421403840184212, -0.023021627217531204, -0.04974832758307457, 0.04214521124958992, -0.0253565963357687, -0.009995979256927967, 0.026591621339321136, 0.012552865780889988, -0.00411272794008255, 0.037668246775865555, 0.021786604076623917, 0.006508000195026398, 0.011665192432701588, 0.006339149083942175, 0.012340595945715904, 0.020609470084309578, -0.03340355306863785, 0.015428157523274422, 0.031608905643224716, 0.01120205782353878, 0.0006129894172772765, -0.016122858971357346, -0.012716892175376415, 0.07375411689281464, 0.01504221186041832, -0.03716651722788811, -0.03612446412444115, 0.017878908663988113, 0.03222642093896866, 0.026379350572824478, -0.02076384797692299, -0.03255447372794151, -0.034715764224529266, 0.009026291780173779, -0.008085550740361214, 0.0489378459751606, -0.021825198084115982, 0.05565328896045685, -0.010922247543931007, -0.00413202540948987, 0.010507356375455856, -0.02616708166897297, -0.07595400512218475, -0.021902386099100113, 0.06653694063425064, 0.027305619791150093, 0.04249256104230881, -0.023233897984027863, -0.053569186478853226, 0.0015232772566378117, 0.013614214956760406, -0.031300149857997894, 0.061481062322854996, -0.057775989174842834, -0.04762563109397888, 0.00739084929227829, -0.03496662899851799, 0.007096566259860992, 0.05028865113854408, 0.011771326884627342, -0.03612446412444115, 0.02551097422838211, -0.028270481154322624, -0.06013025343418121, 0.04357320815324783, -0.03230360895395279, 0.025530271232128143, 0.0037822623271495104, -0.06383533030748367, 0.027402104809880257, 0.03236149996519089, -0.005065530072897673, 0.046081848442554474, -0.009325399994850159, -0.03716651722788811, -0.03913483768701553, -0.03979094326496124, -0.05376216024160385, 0.06013025343418121, -0.05048162490129471, -0.013218620792031288, 0.050172869116067886, 0.08058534562587738, -0.03857521712779999, 0.06178981810808182, 0.04554152861237526, -0.0012917101848870516, 0.03668408468365669, -0.05113773047924042, 0.02255849353969097, -0.04523276910185814, -0.04708530753850937, 0.03236149996519089, -0.032496582716703415, -0.012880919501185417, 0.02734421379864216, -0.03614376112818718, 0.007907051593065262, 0.04488541930913925, 0.031242258846759796, 0.033963173627853394, -0.0005487657617777586, 0.003070676000788808, 0.001542574493214488, -0.03394387662410736, 0.010256492532789707, -0.02838626503944397, 0.01219586655497551, -0.06294765323400497, 0.0024121571332216263, 0.023233897984027863, -0.026553025469183922, -0.014395753853023052, 0.06707726418972015, -0.024063680320978165, -0.007361903786659241, 0.043071478605270386, 0.0329597145318985, 0.040176890790462494, 0.03579641133546829, -0.0587022565305233, -0.06754039973020554, 0.01833239383995533, -0.0754522755742073, -0.04071721434593201, -0.010709977708756924, 0.014366808347404003, 0.07853983342647552, -0.03761035576462746, 0.05256572738289833, 0.024739082902669907, -0.07437162846326828, 0.00558173144236207, 0.016798261553049088, -0.006233014166355133, 0.06425986438989639, -0.02342686988413334, -0.011327490210533142, -0.03612446412444115, -0.014627320691943169, -0.0028342846781015396, 0.015322022140026093, -0.03135804459452629, 0.034040361642837524, 0.00994773581624031, -0.0022686338052153587, -0.017878908663988113, 0.09007959812879562, 0.015592183917760849, 0.03749457001686096, 0.01666318252682686, 0.0622529499232769, -0.006691324058920145, -0.004011417273432016, -0.03786121681332588, 0.03458068519830704, 0.027151240035891533, 0.02381281554698944, -0.0058036502450704575, -0.06974028795957565, 0.02342686988413334, 0.0063536218367516994, 0.019413040950894356, -0.06395111232995987, 0.03747527301311493, -0.0630248412489891, 0.023928599432110786, 0.009889843873679638, 0.011694137938320637, -0.011520462110638618, 0.0034517969470471144, -0.010777518153190613, -0.08429042249917984, -0.045001205056905746, 0.02950550615787506, 0.05013427510857582, -0.01642196625471115, -0.03267025575041771, -0.07163141667842865, 0.019837580621242523, -0.03261236473917961, 0.030547557398676872, -0.005311570130288601, -0.047278281301259995, 0.002457988215610385, -0.09556001424789429, 0.019702499732375145, 0.03332636505365372, 0.002056363970041275, 0.009851249866187572, -0.012147623114287853, 0.0722489282488823, -0.01389402523636818, -0.024295246228575706, -0.040910184383392334, -0.008239928632974625, 0.01267829816788435, -0.005861541721969843, 0.024411030113697052, 0.026282863691449165, -0.010960842482745647, -0.05596204474568367, -0.06877542287111282, 0.06360375881195068, -0.003263648599386215, 0.03147382661700249, -0.031010692939162254, 0.023195303976535797, -0.009769236668944359, 0.013363350182771683, -0.09911071509122849, -0.005687866359949112, 0.024874163791537285, -0.009754763916134834, -0.01981828361749649, -0.0006904799956828356, 0.04021548479795456, -0.05951274186372757, 0.024411030113697052, -0.017174558714032173, -0.006773337256163359, 0.03853662312030792, 0.01762804388999939, -0.009011819027364254, -0.023253194987773895, -0.0826694518327713, -0.016952641308307648, -0.03243868798017502, 0.08838143944740295, -0.06808072328567505, -0.018023638054728508, -0.006184770725667477, 0.025607461109757423, 0.008625874295830727, 0.021381361410021782, 0.02344616688787937, -0.02684248425066471, -0.05086756870150566, 0.019914768636226654, -0.030489666387438774, 0.013517729006707668, -0.014058051630854607, 0.03494733199477196, 0.005673393607139587, 0.007704429794102907, -0.000825560768134892, -0.027093349024653435, -0.025839027017354965, -0.03240009397268295, 0.04990270733833313, -0.014636969193816185, -0.047432657331228256, -0.014251024462282658, -0.024565408006310463, 0.015341319143772125, -0.05063600465655327, 0.08529387414455414, -0.013401945121586323, -0.0061365277506411076, 0.04573449864983559, -0.012437081895768642, 0.02076384797692299, -0.012851973064243793, -0.024584705010056496, 0.03975234925746918, -0.013517729006707668, 0.04110315814614296, -0.02454611100256443, 0.028791507706046104, 0.0191428791731596, -0.023253194987773895, -0.002110637491568923, 0.0417206697165966, -0.04488541930913925, 0.02203746698796749, -0.030508963391184807, 0.012784432619810104, -0.0035048644058406353, 0.07672589272260666, 0.06090214475989342, -0.012842324562370777, 0.03000723570585251, -0.007154458202421665, 0.006020744331181049, 0.0444994755089283, 0.07776794582605362, 0.013421242125332355, 0.017135964706540108, -0.047432657331228256, -0.017039477825164795, -0.026649512350559235, -0.06989466398954391, 0.0017029829323291779, -0.03986813500523567, -0.027633672580122948, -0.022519899532198906, 0.03718581423163414, -0.047201089560985565, 0.015293076634407043, -0.018428880721330643, -0.004959395155310631, -0.006845701951533556, -0.02084103785455227, -0.004397362470626831, -0.05214118957519531, 0.04874487221240997, -0.01345018856227398, 0.0275757797062397, -0.026996862143278122, -0.06804212927818298, 0.015032563358545303, -0.001996060134842992, -0.04156629368662834, 0.02255849353969097, 0.027247726917266846, 0.04214521124958992, -0.004838787019252777, -0.02224973775446415, 0.010459113866090775, 0.05553750693798065, 0.001709013362415135, -0.02209535986185074, -0.04098737612366676, -0.023311085999011993, 0.020223526284098625, 0.04206801950931549, 0.03741738200187683, 0.03490873798727989, -0.027074052020907402, 0.011780975386500359, 0.034271929413080215, -0.017907854169607162, 0.01485888846218586, -0.050906162708997726, 0.010391573421657085, -0.05214118957519531, -0.0021456137765198946, 0.07332957535982132, -0.016547398641705513, -0.021690117195248604, -0.003193696029484272, -0.0266881063580513, 0.027768753468990326, 0.03527538478374481, -0.03292112052440643, -0.014511537738144398, -0.04175926372408867, 0.008046955801546574, 0.0016245878068730235, -0.03216852620244026, -0.013623863458633423, -0.025337299332022667, 0.015312373638153076, -0.014665915630757809, 0.019046392291784286, 0.012031840160489082, -0.019567418843507767, -0.056232206523418427, 0.01840958371758461, -0.047123901546001434, -0.06460721790790558, -0.021979575976729393, 0.020570876076817513, 0.003828093409538269, -0.07386989891529083, 0.0022372757084667683, 0.0007556082564406097, -0.01571761630475521, -0.07236471772193909, -0.09972822666168213, -0.06128808856010437, -0.028482751920819283, -0.017328936606645584, 0.029756370931863785, 0.06931574642658234, 0.015910588204860687, -0.035738520324230194, -0.012774784117937088, 0.0418364554643631, 0.033519335091114044, 0.002988662803545594, 0.0015642838552594185, -0.03191766515374184, 0.021265577524900436, -0.01966390572488308, -0.0015920237638056278, 0.02527940645813942, -0.029621290042996407, -0.06209857389330864, -0.10459113121032715, -0.008153091184794903, -0.009774060919880867, 0.09386185556650162, -0.010082816705107689, 0.037957705557346344, 0.0035241616424173117, 0.008968399837613106, 0.036491114646196365, -0.003263648599386215, 0.03587359935045242, 0.05360778048634529, 0.018737636506557465, -0.020512985065579414, 0.01215727161616087, -0.03477365896105766, 0.042260993272066116, -0.02551097422838211, 0.004269517958164215, 0.004937685560435057, -0.00410066731274128, 0.029023075476288795, -0.011076625436544418, 0.03672267869114876, -0.006440459750592709, -0.036201655864715576, 0.001263970392756164, 0.0656878650188446, 0.004197153262794018, 0.001654739840887487, -0.06974028795957565, 0.015186941251158714, 0.049285195767879486, -0.00981747917830944, 0.00924338586628437, -0.04164348170161247, -0.01094154454767704, -0.0036688910331577063, -0.0074921599589288235, -0.0070531475357711315, 0.055112965404987335, -0.05646377429366112, 0.04708530753850937, -0.0034566211979836226, -0.08814986795186996, -0.03228431195020676, -0.0034952156711369753, 0.054611239582300186, 0.017821017652750015, 0.00963415578007698, 0.005832596216350794, 0.008601752109825611, -0.003123743459582329, 0.06055479496717453 ]
9,619
asyncclick.exceptions
UsageError
An internal exception that signals a usage error. This typically aborts any further handling. :param message: the error message to display. :param ctx: optionally the context that caused this error. Click will fill in the context automatically in some situations.
class UsageError(ClickException): """An internal exception that signals a usage error. This typically aborts any further handling. :param message: the error message to display. :param ctx: optionally the context that caused this error. Click will fill in the context automatically in some situations. """ exit_code = 2 def __init__(self, message: str, ctx: t.Optional["Context"] = None) -> None: super().__init__(message) self.ctx = ctx self.cmd: t.Optional["Command"] = self.ctx.command if self.ctx else None def show(self, file: t.Optional[t.IO[t.Any]] = None) -> None: if file is None: file = get_text_stderr() color = None hint = "" if ( self.ctx is not None and self.ctx.command.get_help_option(self.ctx) is not None ): hint = _("Try '{command} {option}' for help.").format( command=self.ctx.command_path, option=self.ctx.help_option_names[0] ) hint = f"{hint}\n" if self.ctx is not None: color = self.ctx.color echo(f"{self.ctx.get_usage()}\n{hint}", file=file, color=color) echo( _("Error: {message}").format(message=self.format_message()), file=file, color=color, )
(message: str, ctx: Optional[ForwardRef('Context')] = None) -> None
[ 0.006291465368121862, -0.07033627480268478, 0.04549076780676842, 0.0047119250521063805, 0.04905029386281967, -0.057664353400468826, 0.06019161641597748, -0.0032569679897278547, 0.02899235486984253, -0.08443199843168259, 0.03552408888936043, 0.041112545877695084, 0.04250076413154602, -0.02062746323645115, -0.04951303452253342, 0.04719933867454529, 0.028049079701304436, -0.01430040318518877, 0.028671996667981148, 0.025806577876210213, 0.010278136469423771, 0.014932219870388508, 0.02717699483036995, -0.05026053264737129, 0.003922154661267996, 0.05702363699674606, 0.008947763592004776, -0.013010074384510517, 0.03511474281549454, -0.07318389415740967, -0.047590889036655426, -0.03748182952404022, -0.060547567903995514, 0.050082556903362274, -0.03162640705704689, -0.013499509543180466, 0.004587341565638781, 0.014656356535851955, 0.044244930148124695, -0.041931238025426865, -0.051186010241508484, -0.022211454808712006, 0.03783778101205826, -0.019968951120972633, 0.008129071444272995, -0.04097016528248787, 0.011799834668636322, -0.00825810432434082, -0.14529992640018463, -0.0523250587284565, -0.00036262691719457507, 0.04260754957795143, 0.019684189930558205, 0.030878905206918716, 0.0022291543427854776, 0.05609815940260887, 0.006576227955520153, 0.05691685155034065, -0.017913324758410454, -0.013472813181579113, 0.00634040916338563, 0.11511512845754623, 0.00013619365927297622, 0.012520639225840569, 0.011746441945433617, -0.01934603415429592, -0.014861028641462326, -0.0026718706358224154, -0.023795444518327713, 0.02436496876180172, 0.038905639201402664, 0.03201795369386673, -0.041219331324100494, 0.026304911822080612, 0.056133754551410675, -0.05599137395620346, -0.02658967301249504, 0.007466109935194254, 0.04513481259346008, 0.01824258081614971, 0.018651926890015602, -0.024418361485004425, 0.048089221119880676, -0.01143498346209526, 0.0714753195643425, -0.005125720053911209, -0.00908124540001154, -0.021908894181251526, 0.0035217078402638435, 0.027408365160226822, -0.03148402273654938, -0.05567101761698723, -0.04659422114491463, 0.009753106161952019, 0.007786467205733061, -0.005988905671983957, 0.04901469871401787, -0.06706150621175766, -0.04150409623980522, -0.014985612593591213, 0.0493350550532341, -0.033566348254680634, 0.07425174862146378, -0.04221599921584129, 0.04460088536143303, -0.019612997770309448, 0.015884393826127052, 0.017868829891085625, 0.014184718951582909, -0.02294115722179413, -0.007755321450531483, -0.008133521303534508, 0.0004557864158414304, -0.012458347715437412, -0.005988905671983957, -0.012093495577573776, -0.01228926982730627, -0.05791351944208145, -0.027016816660761833, 0.015332666225731373, 0.01344611681997776, -0.0039466265588998795, -0.058554232120513916, -0.052503038197755814, 0.04200242832303047, 0.02075204811990261, -0.0714753195643425, -0.037410639226436615, -0.013357128016650677, 0.02415139600634575, 0.02687443606555462, -0.036698732525110245, -0.01816249080002308, -0.00638935249298811, -0.011230310425162315, 0.039831116795539856, 0.01995115354657173, 0.04552636295557022, -0.03137723729014397, 0.04563314840197563, 0.0161068644374609, 0.019595200195908546, -0.006878787651658058, 0.029437296092510223, 0.015083499252796173, -0.023599669337272644, 0.005468324758112431, -0.05470994487404823, 0.02112579718232155, 0.0090589988976717, 0.040115877985954285, -0.03986671194434166, -0.023101335391402245, 0.018776509910821915, 0.03975992649793625, 0.0030812162440270185, -0.02657187543809414, -0.04403135925531387, -0.003354855114594102, -0.0038309418596327305, 0.020556272938847542, -0.07560437172651291, 0.057735543698072433, 0.017788739874958992, 0.0029633070807904005, 0.058447446674108505, -0.0023871082812547684, 0.06182900071144104, -0.005668547935783863, 0.02384883724153042, -0.02760413847863674, 0.01353510469198227, 0.0036529654171317816, 0.030469559133052826, -0.03644956648349762, 0.048373982310295105, -0.006153533700853586, -0.005512818694114685, 0.042643144726753235, -0.07368222624063492, -0.0055172680877149105, -0.04912148416042328, 0.017806537449359894, 0.005886569153517485, 0.026607470586895943, -0.024009015411138535, 0.061864595860242844, 0.015608529560267925, 0.0033125856425613165, -0.017806537449359894, 0.006874338258057833, 0.01203120406717062, 0.04410254955291748, 0.06524614989757538, -0.013428319245576859, -0.027354972437024117, -0.06560210138559341, -0.04299909621477127, 0.06382233649492264, -0.02648288756608963, -0.01922145113348961, 0.057664353400468826, 0.06360876560211182, -0.013241443783044815, 0.06282566487789154, 0.07674342393875122, 0.05072327330708504, -0.05510149151086807, -0.03844290226697922, -0.004182445351034403, -0.01766415685415268, -0.005908816121518612, -0.001174644217826426, 0.05293017998337746, 0.017263710498809814, 0.0412549264729023, 0.05499470606446266, 0.01595558412373066, -0.0473417192697525, 0.035577479749917984, 0.03516813740134239, -0.011337095871567726, 0.02596675604581833, 0.02044948749244213, 0.05819828063249588, -0.023172525689005852, 0.08016056567430496, 0.03748182952404022, 0.024347171187400818, -0.00847612600773573, 0.007968893274664879, -0.05656089633703232, 0.0019188079750165343, 0.001083987532183528, -0.06574448198080063, -0.018865497782826424, 0.00807567872107029, -0.04581112414598465, -0.01328593771904707, -0.027443960309028625, -0.013508408330380917, 0.007968893274664879, -0.01904347352683544, 0.04097016528248787, 0.004676329903304577, -0.02888556942343712, -0.012102394364774227, 0.023937825113534927, -0.07190246134996414, -0.04552636295557022, 0.039617545902729034, 0.018545139580965042, -0.015572934411466122, -0.04951303452253342, -0.029277116060256958, -0.052716609090566635, -0.04015147313475609, -0.06958877295255661, 0.01228037104010582, 0.038300521671772, -0.012556234374642372, -0.009085695259273052, -0.023332705721259117, 0.03032717853784561, 0.05086565390229225, -0.010731976479291916, -0.018758712336421013, 0.004411589819937944, 0.008614057675004005, 0.03812254220247269, 0.0663851946592331, 0.043461836874485016, 0.01294778287410736, 0.05645411089062691, -0.058233875781297684, 0.03634278103709221, -0.00832484569400549, 0.03445623070001602, -0.04150409623980522, -0.012921086512506008, 0.029935630038380623, -0.012600728310644627, -0.022371632978320122, 0.07158210873603821, -0.03516813740134239, 0.008961111307144165, 0.03621819615364075, -0.0038665372412651777, -0.02123258449137211, 0.06214935705065727, 0.03162640705704689, 0.043639812618494034, 0.04997577145695686, -0.06051197275519371, -0.037197064608335495, 0.042322788387537, -0.05125720053911209, -0.01904347352683544, -0.002892116317525506, 0.00254283775575459, -0.025308243930339813, -0.03390450403094292, -0.03191116824746132, -0.012903288938105106, 0.005552863702178001, -0.018402758985757828, 0.05456756427884102, -0.06474781036376953, 0.025148063898086548, -0.04915707930922508, 0.03612920641899109, 0.009228075854480267, 0.0337265282869339, 0.03374432399868965, -0.03705468401312828, 0.044956836849451065, 0.0332459919154644, -0.04901469871401787, -0.004113479517400265, 0.024934493005275726, -0.04816041141748428, 0.01748618111014366, 0.02950848639011383, -0.05791351944208145, 0.014745344407856464, 0.00709680886939168, 0.007003371138125658, 0.018055705353617668, 0.01651620864868164, -0.0019099091878160834, 0.0024471753276884556, 0.008556215092539787, -0.013855461962521076, -0.05075886845588684, -0.05656089633703232, 0.012929985299706459, -0.002164637902751565, -0.020057938992977142, 0.011212512850761414, -0.04150409623980522, 0.0012224753154441714, 0.013980045914649963, -0.038407307118177414, 0.01748618111014366, 0.023706456646323204, -0.013499509543180466, 0.04951303452253342, -0.004943294450640678, 0.05218267813324928, -0.024614134803414345, 0.02114359475672245, 0.031359441578388214, -0.019897760823369026, -0.011381590738892555, 0.004496128764003515, -0.008707495406270027, -0.018758712336421013, -0.041326120495796204, 0.01252953801304102, -0.03132384642958641, 0.041326120495796204, -0.06859210133552551, -0.028832176700234413, -0.002436051843687892, -0.0664919838309288, -0.01091885194182396, 0.01934603415429592, -0.016534006223082542, -0.0053615388460457325, 0.03958195075392723, 0.036912303417921066, -0.031964559108018875, 0.01973758265376091, 0.011906621046364307, 0.013250342570245266, 0.016961149871349335, -0.007274785079061985, -0.002320367144420743, -0.04940624535083771, -0.010100160725414753, 0.05342851206660271, 0.027230387553572655, -0.027230387553572655, -0.008849876001477242, 0.0011568465270102024, -0.03616480156779289, -0.0069410791620612144, 0.003719706553965807, 0.021677525714039803, -0.015884393826127052, -0.012752008624374866, -0.04064980894327164, 0.03219592943787575, 0.04840957745909691, 0.023991217836737633, -0.019203653559088707, 0.019701987504959106, -0.003092339960858226, -0.03632498160004616, 0.02949068881571293, -0.025504017248749733, 0.06791578978300095, -0.027408365160226822, -0.004591790959239006, 0.024400563910603523, 0.014505076222121716, -0.016240345314145088, -0.00719469552859664, -0.03130604699254036, 0.013090163469314575, -0.05072327330708504, 0.007964443415403366, -0.040115877985954285, 0.0083114979788661, 0.011479477398097515, 0.02578878030180931, -0.07033627480268478, -0.0006140185869298875, -0.036698732525110245, -0.026910031214356422, -0.006291465368121862, -0.014736445620656013, 0.048587556928396225, -0.008396035991609097, 0.05307256057858467, -0.00956623163074255, -0.03495456278324127, -0.01816249080002308, 0.08421842753887177, 0.006046747788786888, -0.05257422849535942, 0.020680857822299004, -0.024809909984469414, -0.033690933138132095, -0.026714256033301353, -0.033797718584537506, -0.03798016160726547, -0.008894369937479496, 0.007991139777004719, 0.037410639226436615, -0.02256740629673004, 0.035381708294153214, 0.0206452626734972, 0.04862315207719803, 0.018545139580965042, -0.06602924317121506, 0.0030344976112246513, 0.037517424672842026, 0.008578462526202202, -0.03716146945953369, 0.02144615538418293, 0.06595805287361145, 0.03965314105153084, -0.06229173764586449, -0.03253408521413803, -0.0644986480474472, -0.096605584025383, 0.021624131128191948, -0.009041200391948223, 0.05275220423936844, 0.0029188129119575024, 0.04541957750916481, -0.057130422443151474, -0.040115877985954285, 0.04780445992946625, -0.047982435673475266, 0.07136853784322739, 0.013259241357445717, -0.04282112047076225, 0.011541768908500671, -0.00925477221608162, -0.027728721499443054, 0.019488414749503136, 0.09012724459171295, 0.012387157417833805, 0.0017007868736982346, 0.007893253117799759, -0.04296350106596947, -0.02901015244424343, -0.010046767070889473, 0.06524614989757538, -0.027764316648244858, 0.036805517971515656, 0.010998941026628017, -0.04321266710758209, 0.007190246134996414, 0.010278136469423771, 0.002163525437936187, 0.027942294254899025, 0.0002680769539438188, -0.0432838574051857, -0.013606294989585876, -0.025948958471417427, -0.003430495038628578, 0.002420478966087103, 0.0013659688411280513, -0.03979552164673805, 0.04171766713261604, -0.07090579718351364, -0.031466227024793625, 0.052609823644161224, -0.04307028651237488, 0.05246743932366371, -0.0755331814289093, 0.05072327330708504, -0.025254851207137108, 0.07232960313558578, 0.03312140703201294, 0.07702818512916565, -0.008280351758003235, -0.0019432797562330961, 0.03450962156057358, 0.07122614979743958, 0.027817711234092712, 0.056133754551410675, -0.018473949283361435, -0.00915688555687666, -0.006064545828849077, 0.08065890520811081, 0.03758861497044563, 0.02477431483566761, 0.006616272497922182, -0.004177995957434177, -0.018091300502419472, 0.012476145289838314, -0.04541957750916481, 0.022122465074062347, -0.004716374445706606, 0.03773099556565285, 0.0483383871614933, -0.005779783241450787, 0.014834332279860973, 0.04481445625424385, -0.03130604699254036, 0.0008820954826660454, -0.00354840443469584, -0.05520827695727348, 0.04702136293053627, -0.05246743932366371, -0.02817366272211075, -0.012760907411575317, 0.010500607080757618, -0.013748676516115665, -0.0066207218915224075, 0.0342426598072052, -0.030380571261048317, 0.004162422847002745, 0.0007163549889810383, 0.0015539564192295074, -0.037908971309661865, 0.007786467205733061, 0.027550745755434036, 0.062078166753053665, 0.014131325297057629, -0.020396094769239426, 0.02817366272211075, 0.03392229974269867, 0.021410560235381126, 0.059978045523166656, 0.009557332843542099, -0.03990230709314346, -0.014522873796522617, 0.0019043474458158016, -0.09902606904506683, 0.03555968403816223, 0.019808772951364517, 0.020075736567378044, -0.013401622883975506, -0.03431385010480881, -0.062184952199459076, -0.05933732911944389, 0.030042415484786034, 0.019292641431093216, 0.008080128580331802, -0.013330431655049324, -0.003942177165299654, 0.008881022222340107, 0.04064980894327164, 0.03450962156057358, 0.030024617910385132, -0.014558468945324421, -0.028066877275705338, -0.0483027920126915, 0.021090202033519745, -0.025504017248749733, 0.02920592576265335, 0.014576266519725323, -0.06873448193073273, -0.014861028641462326, 0.0025650847237557173, 0.0032035750336945057, -0.06214935705065727, 0.009575130417943, -0.04100576043128967, 0.07133293896913528, 0.049904581159353256, 0.015964481979608536, -0.020396094769239426, 0.015991179272532463, 0.02546842209994793, -0.043248262256383896, -0.0026718706358224154, 0.03733944892883301, 0.01831377111375332, 0.04310588166117668, 0.048801127821207047, -0.005468324758112431, -0.04986898601055145, -0.06901924312114716, 0.06659876555204391, -0.002211356768384576, -0.013721980154514313, -0.02646508999168873, 0.0014694175915792584, -0.08186914026737213, -0.013704182580113411, -0.003245844505727291, 0.018091300502419472, 0.02386663481593132, 0.03954635560512543, -0.03607581555843353, 0.052823394536972046, -0.029668664559721947, 0.005317044910043478, -0.02498788572847843, 0.03440283611416817, -0.021107999607920647, 0.027621936053037643, -0.07065662741661072, 0.038407307118177414, -0.006051197182387114, -0.02596675604581833, 0.04218040406703949, -0.020396094769239426, 0.009334862232208252, -0.02828044816851616, 0.011354894377291203, 0.016738679260015488, 0.022531811147928238, 0.052823394536972046, 0.020556272938847542, -0.030487356707453728, -0.08364890515804291, 0.04381778836250305, -0.0014249235391616821, 0.030042415484786034, -0.042927905917167664, -0.0644274577498436, 0.028155865147709846, -0.04499243199825287, 0.05204029753804207, 0.06464102864265442, 0.015030106529593468, -0.02377764694392681, -0.02888556942343712, -0.0023248165380209684, -0.04089897498488426, -0.00037041338509880006, -0.02598455362021923, 0.00014905522402841598, 0.007964443415403366, -0.004631835501641035, 0.013971147127449512, 0.008338194340467453, 0.008231407962739468, 0.024436159059405327, 0.035381708294153214, -0.04961981996893883, 0.023101335391402245, -0.0002683550410438329, 0.02687443606555462, -0.027337174862623215, 0.008685247972607613, 0.0030055763199925423, -0.016382727771997452, 0.004560645204037428, -0.0015851022908464074, -0.019114665687084198, -0.051506370306015015, -0.015439452603459358, -0.020912226289510727, 0.02135716751217842, -0.06873448193073273, -0.012636324390769005, -0.011728644371032715, 0.023991217836737633, -0.00483650853857398, 0.04520600289106369, 0.00176752801053226, -0.11725085228681564, -0.06428507715463638, 0.016783174127340317, -0.043141476809978485, 0.019719785079360008, -0.07802484929561615, -0.053108155727386475, -0.010598494671285152, -0.06706150621175766, 0.009147986769676208, -0.016685286536812782, 0.06375114619731903, -0.047590889036655426, 0.029366105794906616, -0.01816249080002308, -0.02658967301249504, 0.010313731618225574, -0.027657531201839447, -0.04894350841641426, 0.016178054735064507, -0.004698576871305704, 0.009797600097954273, 0.00797779206186533, -0.013891058042645454, 0.0004911036230623722, -0.007630737964063883, -0.03837171196937561, -0.019399426877498627, -0.0003898795403074473, -0.051897916942834854, -0.01082986406981945, -0.03059414215385914, 0.007515053264796734, 0.017566269263625145, -0.003733054967597127, 0.017397193238139153, 0.011150221340358257, -0.0483383871614933, -0.06891246140003204, 0.07001591473817825, -0.023297110572457314, -0.04146850109100342, -0.010838762857019901, -0.04050742834806442, 0.06012042611837387, -0.006780900526791811, 0.0073459758423268795, -0.016267042607069016, -0.007715276908129454, 0.04378219321370125, 0.01203120406717062, -0.0047786664217710495, 0.02486330270767212, -0.08001818507909775, -0.04356862232089043, -0.0014171369839459658, 0.01595558412373066, -0.019452819600701332, 0.04961981996893883, 0.042322788387537, -0.0201469287276268, -0.03130604699254036, -0.009027852676808834, -0.041112545877695084, 0.08549986034631729, 0.06019161641597748, -0.04015147313475609, 0.040720999240875244, 0.02851181849837303, 0.022229252383112907, -0.023403896018862724, -0.005352640058845282, 0.025806577876210213, -0.02285216934978962, -0.008169116452336311, 0.017788739874958992, 0.050616487860679626, -0.03532831370830536, 0.04463648051023483 ]
9,625
asyncclick.decorators
argument
Attaches an argument to the command. All positional arguments are passed as parameter declarations to :class:`Argument`; all keyword arguments are forwarded unchanged (except ``cls``). This is equivalent to creating an :class:`Argument` instance manually and attaching it to the :attr:`Command.params` list. For the default argument class, refer to :class:`Argument` and :class:`Parameter` for descriptions of parameters. :param cls: the argument class to instantiate. This defaults to :class:`Argument`. :param param_decls: Passed as positional arguments to the constructor of ``cls``. :param attrs: Passed as keyword arguments to the constructor of ``cls``.
def argument( *param_decls: str, cls: t.Optional[t.Type[Argument]] = None, **attrs: t.Any ) -> t.Callable[[FC], FC]: """Attaches an argument to the command. All positional arguments are passed as parameter declarations to :class:`Argument`; all keyword arguments are forwarded unchanged (except ``cls``). This is equivalent to creating an :class:`Argument` instance manually and attaching it to the :attr:`Command.params` list. For the default argument class, refer to :class:`Argument` and :class:`Parameter` for descriptions of parameters. :param cls: the argument class to instantiate. This defaults to :class:`Argument`. :param param_decls: Passed as positional arguments to the constructor of ``cls``. :param attrs: Passed as keyword arguments to the constructor of ``cls``. """ if cls is None: cls = Argument def decorator(f: FC) -> FC: _param_memo(f, cls(param_decls, **attrs)) return f return decorator
(*param_decls: str, cls: Optional[Type[asyncclick.core.Argument]] = None, **attrs: Any) -> Callable[[~FC], ~FC]
[ 0.023401563987135887, 0.01826418936252594, 0.06044185161590576, 0.004063279367983341, 0.07685951143503189, -0.00700675742700696, -0.048741068691015244, 0.03055001050233841, -0.017167240381240845, -0.026820385828614235, 0.0032908448483794928, -0.02171957679092884, -0.0034165368415415287, -0.0007324415491893888, -0.01745976135134697, 0.06252605468034744, -0.0008604188333265483, 0.082709901034832, -0.08790212124586105, 0.03287188336253166, 0.08629326522350311, 0.0402214378118515, -0.03683917969465256, -0.015759490430355072, -0.00958915613591671, -0.03230512887239456, 0.04172059893608093, 0.04512114077806473, -0.04391449689865112, 0.009570874273777008, 0.06267230957746506, -0.028429243713617325, 0.020640911534428596, 0.022999349981546402, 0.001640851842239499, -0.029946688562631607, 0.023931754752993584, 0.054737720638513565, 0.0028566361870616674, -0.06515873223543167, -0.02502870373427868, 0.014525423757731915, 0.035669103264808655, -0.0011597942793741822, -0.023364998400211334, 0.012505210936069489, 0.02608908712863922, -0.015860043466091156, -0.10135802626609802, -0.02448022924363613, 0.0505693182349205, -0.02204866148531437, 0.0919242650270462, -0.04972832277417183, 0.0528729073703289, 0.045889005064964294, 0.027058057487010956, 0.020476369187235832, -0.0459621325135231, -0.004643748048692942, 0.029836993664503098, 0.011399121023714542, 0.06362300366163254, -0.048302289098501205, 0.001381469308398664, -0.02078717015683651, -0.03766189143061638, 0.014488859102129936, -0.004152406472712755, 0.05075214058160782, -0.052653517574071884, -0.008469355292618275, -0.004396934527903795, -0.02009243704378605, -0.015951456502079964, 0.00537047628313303, -0.024370534345507622, 0.010384444147348404, 0.012148702517151833, 0.02135392650961876, -0.0060195038095116615, -0.012569199316203594, -0.014561988413333893, 0.02548576518893242, -0.012377233244478703, -0.03389570116996765, -0.08526945114135742, -0.049435801804065704, -0.015019050799310207, 0.004890561103820801, -0.037405937910079956, 0.01799909397959709, 0.006161192897707224, -0.033255815505981445, 0.011170590296387672, -0.025449201464653015, 0.005347623024135828, 0.022231485694646835, 0.011517956852912903, 0.061502233147621155, -0.04223250970244408, 0.03296329826116562, 0.04833885654807091, 0.051044661551713943, -0.0003810752823483199, -0.04662030190229416, -0.024388818070292473, 0.01372099481523037, -0.005384188145399094, -0.016792450100183487, -0.015348135493695736, -0.01873953267931938, -0.05177595838904381, 0.038429755717515945, -0.004106700420379639, 0.026235347613692284, -0.011920171789824963, -0.01602458581328392, -0.02104312554001808, 0.040148306638002396, 0.025321222841739655, -0.009154947474598885, 0.0012454934185370803, 0.009333201684057713, -0.003281703684478998, -0.03422478586435318, -0.02517496421933174, -0.018191060051321983, 0.002936622127890587, -0.03640040010213852, 0.03835662454366684, -0.018364742398262024, -0.023931754752993584, -0.007907168939709663, 0.042342204600572586, -0.017167240381240845, -0.018008233979344368, 0.036473531275987625, -0.07685951143503189, 0.00004367082510725595, 0.009799405001103878, 0.02517496421933174, 0.028922870755195618, 0.011755629442632198, -0.00035108058364130557, -0.06362300366163254, -0.053019169718027115, 0.0034690990578383207, -0.04373167082667351, 0.02343812957406044, -0.017834551632404327, -0.02733229473233223, 0.04618152230978012, 0.016271399334073067, -0.009973088279366493, -0.009662286378443241, -0.03380428999662399, 0.016234835609793663, 0.02204866148531437, 0.019708504900336266, -0.01532985270023346, -0.037844717502593994, 0.05572497472167015, 0.0029823281802237034, 0.022889655083417892, -0.018236765637993813, -0.06537812203168869, 0.026783820241689682, -0.010174195282161236, 0.019361138343811035, 0.04007517918944359, -0.01469910703599453, 0.10786658525466919, 0.005822967272251844, -0.01367528922855854, -0.005256210453808308, -0.007884316146373749, -0.015256722457706928, 0.06731606274843216, -0.021847553551197052, 0.06534155458211899, -0.0059783682227134705, 0.046803127974271774, -0.043146632611751556, 0.034297917038202286, 0.0006507417419925332, -0.0008707027300260961, 0.04109899699687958, -0.024370534345507622, -0.035650819540023804, 0.0315738283097744, 0.01153623964637518, -0.024717900902032852, -0.03415165841579437, -0.07137476652860641, -0.010265608318150043, -0.05828452110290527, 0.00988167617470026, 0.049472369253635406, 0.02663756161928177, 0.001965365605428815, -0.036692921072244644, 0.039234183728694916, 0.01063125766813755, 0.018364742398262024, 0.0035536554642021656, 0.01687472127377987, 0.035340018570423126, -0.0390147939324379, -0.028904587030410767, 0.00706617534160614, -0.05097153037786484, 0.021280797198414803, 0.0025344076566398144, -0.017797986045479774, -0.020823735743761063, 0.011956736445426941, -0.0011672215769067407, 0.02755168452858925, 0.0030303196981549263, 0.07495813071727753, -0.04925297945737839, 0.01859327405691147, 0.018355602398514748, 0.024297405034303665, -0.042890679091215134, 0.025760002434253693, -0.046364348381757736, -0.0003799326077569276, 0.023602671921253204, -0.05832108482718468, 0.036016467958688736, 0.03493780270218849, 0.0516662634909153, 0.01401351485401392, -0.042342204600572586, 0.019013769924640656, 0.0355776883661747, -0.03724139556288719, -0.012733741663396358, -0.013602158986032009, 0.09345999360084534, 0.018053941428661346, 0.10018794238567352, 0.015887467190623283, 0.01055812742561102, -0.004108985420316458, 0.07078973203897476, 0.01063125766813755, -0.009488603100180626, -0.056675661355257034, 0.06874209642410278, -0.016682755202054977, -0.00044049331336282194, -0.036126162856817245, 0.06303796172142029, -0.061758190393447876, 0.017295219004154205, -0.049435801804065704, -0.0056447130627930164, 0.035047497600317, 0.0029526192229241133, 0.04501144587993622, 0.03857601433992386, 0.02711290493607521, 0.004643748048692942, -0.013858113437891006, -0.07210607081651688, -0.018191060051321983, 0.05916208028793335, -0.03195776045322418, -0.04815603047609329, 0.0711553767323494, 0.006997616030275822, 0.011143166571855545, 0.015604089945554733, 0.011673358269035816, -0.02150018699467182, -0.02713118866086006, 0.0321771502494812, 0.011591087095439434, -0.054957110434770584, -0.007971157319843769, 0.04563304781913757, -0.028100159019231796, 0.029709016904234886, -0.005269922316074371, 0.0896572396159172, -0.004088417626917362, 0.021737858653068542, 0.04892389476299286, 0.0781027227640152, 0.007623790763318539, 0.012221832759678364, 0.029453061521053314, 0.029343366622924805, -0.022578852251172066, 0.04179373010993004, 0.031171614304184914, -0.037515632808208466, 0.03868570923805237, -0.0212625153362751, -0.053713902831077576, -0.00016339958528988063, -0.026582714170217514, -0.004593471065163612, -0.04000204801559448, 0.017039263620972633, -0.02941649779677391, 0.019269725307822227, 0.07024125754833221, 0.02320045605301857, -0.048667941242456436, 0.0018408163450658321, 0.05418924614787102, 0.035212039947509766, 0.021902401000261307, -0.02687523327767849, 0.011243720538914204, 0.009616579860448837, 0.0252663753926754, 0.01533899363130331, -0.006129198707640171, -0.029544474557042122, -0.05236100032925606, 0.029818711802363396, 0.007340412586927414, 0.02815500646829605, 0.016646189615130424, 0.010942059569060802, -0.04515770450234413, 0.016838155686855316, -0.04300037398934364, 0.017944246530532837, -0.04932611063122749, 0.0007764337351545691, -0.03389570116996765, 0.01458027120679617, 0.0493992380797863, -0.03629070520401001, 0.011124883778393269, 0.04230564087629318, -0.03810067102313042, 0.029581040143966675, 0.008281960152089596, -0.011508815921843052, 0.002140191849321127, -0.0035582261625677347, 0.0734589695930481, -0.017231229692697525, -0.006572548765689135, -0.020055871456861496, -0.03067798726260662, -0.0620507076382637, 0.05612718686461449, -0.009516026824712753, 0.016234835609793663, -0.013355345465242863, -0.01706668734550476, -0.08812151104211807, -0.054518330842256546, -0.02378549613058567, 0.0011975019006058574, -0.03643696755170822, -0.011371697299182415, 0.003610788146033883, 0.01160936988890171, -0.06691384315490723, 0.01804479956626892, 0.051044661551713943, 0.01996445842087269, -0.011070036329329014, -0.004305521957576275, 0.02376721240580082, -0.03641868382692337, -0.027643097564578056, -0.022121790796518326, 0.014973344281315804, -0.03312784060835838, -0.014232904650270939, -0.005114521365612745, -0.013419333845376968, 0.04066021740436554, -0.008067140355706215, -0.0059555149637162685, -0.025083551183342934, 0.019013769924640656, -0.030385468155145645, 0.020494651049375534, -0.011965877376496792, 0.007153016980737448, -0.033036425709724426, 0.02009243704378605, -0.013282216154038906, -0.030294055119156837, -0.028228135779500008, 0.05353107675909996, 0.019141748547554016, -0.057955436408519745, -0.0037387653719633818, 0.04080647602677345, -0.03632727265357971, 0.0895841121673584, -0.006929056718945503, 0.009278354234993458, 0.0126331876963377, -0.005247069522738457, -0.03758876025676727, -0.010923776775598526, 0.045998699963092804, 0.015073898248374462, -0.011527098715305328, -0.03193947672843933, 0.029379932209849358, 0.06212383881211281, 0.01107917819172144, 0.02722259983420372, -0.05813825875520706, -0.010411867871880531, -0.044974882155656815, 0.009301207959651947, -0.0505327507853508, 0.0028155006002634764, 0.06534155458211899, 0.05733383074402809, 0.03150069713592529, 0.003473669523373246, 0.0006958766025491059, -0.010576410219073296, -0.03466356545686722, -0.04625465348362923, 0.015704642981290817, -0.020147284492850304, 0.008496779017150402, -0.011481392197310925, 0.0010780944721773267, -0.000923836138099432, -0.030714552849531174, 0.0316103920340538, -0.0011460824171081185, -0.05481085181236267, -0.08417250216007233, 0.06614598631858826, 0.04303693771362305, -0.08826777338981628, -0.03817380219697952, 0.0027423708233982325, -0.02206694334745407, 0.026326758787035942, 0.0010381016181781888, 0.08563509583473206, 0.03890509903430939, 0.05122748762369156, -0.020165566354990005, -0.043621975928545, -0.1331695169210434, -0.05034992843866348, -0.01052156277000904, 0.009342342615127563, 0.02307247929275036, 0.020147284492850304, -0.010274749249219894, 0.007335841655731201, -0.10099237412214279, -0.07488500326871872, -0.001925372751429677, 0.029818711802363396, -0.03310955688357353, -0.0275882501155138, -0.048741068691015244, 0.06040528789162636, 0.0055944365449249744, 0.0005236213910393417, -0.023145608603954315, -0.014040938578546047, 0.03630898892879486, 0.009406331926584244, -0.012678894214332104, -0.02457164227962494, 0.05546901747584343, 0.027880769222974777, 0.016883863136172295, 0.05075214058160782, -0.008057999424636364, 0.02298106625676155, 0.02800874598324299, -0.010146771557629108, -0.031171614304184914, -0.0059783682227134705, 0.07320301979780197, -0.045998699963092804, 0.01532985270023346, 0.02310904487967491, -0.0059555149637162685, 0.014452293515205383, 0.014717389829456806, 0.04629121720790863, 0.005626430734992027, 0.0010158198419958353, -0.03124474361538887, -0.04029456898570061, -0.017688291147351265, 0.05137374624609947, -0.0010883783688768744, -0.0023253019899129868, -0.0632207840681076, -0.02113453671336174, 0.01045757345855236, -0.02171957679092884, 0.013081108219921589, -0.006906203925609589, 0.025248093530535698, 0.004684883169829845, -0.012267538346350193, 0.012121278792619705, 0.016627907752990723, -0.019160030409693718, -0.03340207412838936, -0.03055001050233841, -0.044536102563142776, -0.0224143099039793, 0.04640091210603714, 0.030257491394877434, -0.031189896166324615, -0.027734508737921715, -0.009707992896437645, -0.0009735416388139129, -0.03488295525312424, 0.040477391332387924, -0.02961760386824608, 0.016838155686855316, 0.014342599548399448, 0.022907936945557594, -0.024973856285214424, 0.018474437296390533, 0.04702251777052879, -0.016746744513511658, 0.07839524000883102, 0.0018156779697164893, 0.03616273030638695, 0.0189589224755764, 0.015265864320099354, -0.04512114077806473, 0.02354782447218895, -0.06618254631757736, -0.03970952704548836, -0.03076940029859543, -0.011353414505720139, -0.011170590296387672, 0.013912960886955261, -0.08819464594125748, 0.0006130341207608581, -0.05539589002728462, 0.09389877319335938, 0.0022727397736161947, 0.05115435644984245, 0.029836993664503098, 0.007975728251039982, -0.0493992380797863, 0.005160227883607149, 0.025705154985189438, -0.001138655235990882, 0.0010826651705428958, 0.03938044235110283, 0.021902401000261307, -0.053604207932949066, 0.060953762382268906, -0.016097716987133026, -0.0020464942790567875, -0.012980555184185505, 0.008917275816202164, 0.024717900902032852, -0.07312988489866257, 0.011444827541708946, -0.041757166385650635, 0.04391449689865112, 0.01176477037370205, -0.05309229716658592, 0.0030577434226870537, -0.04972832277417183, 0.025065269321203232, -0.011243720538914204, -0.11071865260601044, -0.022706829011440277, -0.005932662170380354, 0.06278200447559357, 0.030367186293005943, 0.026619279757142067, -0.0493626743555069, -0.044865187257528305, -0.015476112253963947, -0.014296893030405045, 0.019013769924640656, -0.04285411536693573, 0.0004476348985917866, -0.019452549517154694, 0.007367836311459541, -0.004284954164177179, 0.01682901568710804, -0.026473019272089005, -0.030257491394877434, 0.0031948620453476906, -0.05616375431418419, 0.016179988160729408, 0.061282847076654434, -0.009963947348296642, -0.03340207412838936, 0.017194664105772972, -0.05890612304210663, -0.01906861737370491, 0.00700675742700696, -0.03252451866865158, 0.009936523623764515, 0.04621808975934982, -0.0028794892132282257, 0.03459043800830841, -0.022249767556786537, -0.010942059569060802, 0.05422580987215042, 0.09865222126245499, -0.01183790061622858, -0.026966646313667297, -0.00045306250103749335, 0.02950790897011757, 0.01767914928495884, 0.0031537264585494995, -0.036711204797029495, 0.013940384611487389, -0.014891073107719421, 0.0007627218728885055, 0.0017139817355200648, 0.05137374624609947, 0.013391910120844841, -0.0008889851742424071, -0.014708248898386955, -0.06307452917098999, -0.050386492162942886, 0.01591489091515541, 0.04033113270998001, -0.05031336098909378, 0.020842017605900764, 0.008688745088875294, -0.004780866205692291, -0.004863137379288673, 0.018236765637993813, 0.04208625108003616, -0.0010975196491926908, -0.01928800716996193, 0.004721448291093111, -0.013437616638839245, 0.06724292784929276, 0.000008699349564267322, 0.00001121229706768645, -0.01745976135134697, 0.041976556181907654, -0.018922358751296997, -0.04102586582303047, -0.02150018699467182, 0.03835662454366684, 0.026856951415538788, 0.012422939762473106, -0.010704386979341507, 0.0316103920340538, -0.020183848217129707, 0.0034713842906057835, -0.04914328455924988, -0.06870552897453308, -0.028063593432307243, -0.0028452095575630665, 0.03102535381913185, -0.0712650716304779, -0.016856439411640167, -0.0003707913856487721, -0.04321976378560066, -0.012569199316203594, -0.06413491070270538, 0.028794892132282257, 0.010786658152937889, 0.018757816404104233, 0.045669615268707275, -0.07411713898181915, -0.04753442481160164, 0.029581040143966675, -0.01985476352274418, -0.07195980846881866, 0.049216415733098984, -0.020860299468040466, -0.00348738138563931, -0.0017631158698350191, -0.05437207221984863, 0.049472369253635406, -0.012230973690748215, -0.04720534384250641, -0.0338408537209034, 0.0022830236703157425, -0.06526842713356018, -0.05188565328717232, 0.00680564995855093, 0.07221576571464539, 0.007710632402449846, 0.01533899363130331, 0.0620507076382637, -0.05418924614787102, 0.01217612624168396, 0.019489115104079247, -0.04351228103041649, -0.0069153448566794395, 0.018584132194519043, 0.032689061015844345, 0.04321976378560066, 0.028538938611745834, -0.0008192832465283573, -0.022268051281571388, 0.0071575879119336605, 0.05294603854417801, 0.0028909158427268267, 0.05027679726481438, -0.011499674990773201, -0.008615614846348763, 0.03850288689136505, -0.013766701333224773, 0.012084714137017727, 0.07993096858263016, -0.026253629475831985, 0.00022638842347078025, -0.06051498278975487, 0.02309076115489006, -0.009726274758577347, 0.033274099230766296, -0.06830331683158875, 0.06044185161590576, 0.026783820241689682, 0.027405425906181335, -0.0016385664930567145, 0.02192068286240101, -0.000983254169113934, 0.002300163498148322, -0.013017119839787483, -0.031628675758838654, 0.04537709429860115, -0.020366674289107323, 0.03879540413618088, -0.0012854862725362182, -0.05298260226845741, 0.06362300366163254, -0.014260328374803066, -0.04431671276688576, 0.01917831227183342, 0.029782146215438843, -0.02310904487967491, -0.0020533502101898193, 0.02448022924363613, 0.02204866148531437, 0.09133923053741455, 0.06940026581287384, -0.03799097612500191, 0.0413183867931366, 0.022085225209593773, 0.02559546008706093, -0.05133718252182007, -0.045523352921009064, -0.04029456898570061, 0.007057033944875002, -0.09601954370737076, -0.018492721021175385, 0.02778935618698597, -0.0009301207610405982, 0.05097153037786484 ]
9,626
asyncclick.termui
clear
Clears the terminal screen. This will have the effect of clearing the whole visible space of the terminal and moving the cursor to the top left. This does not do anything if not connected to a terminal. .. versionadded:: 2.0
def clear() -> None: """Clears the terminal screen. This will have the effect of clearing the whole visible space of the terminal and moving the cursor to the top left. This does not do anything if not connected to a terminal. .. versionadded:: 2.0 """ if not isatty(sys.stdout): return # ANSI escape \033[2J clears the screen, \033[1;1H moves the cursor echo("\033[2J\033[1;1H", nl=False)
() -> NoneType
[ -0.04972032830119133, -0.008865177631378174, 0.03364911302924156, -0.01631336100399494, 0.038240887224674225, -0.014421047642827034, -0.06216834858059883, 0.007210523821413517, 0.0034841897431761026, 0.020447753369808197, -0.02168538235127926, -0.017900753766298294, 0.058903880417346954, 0.03217830881476402, -0.023676346987485886, 0.03720056265592575, 0.02451936900615692, -0.02934432029724121, 0.030958617106080055, -0.04136186093091965, 0.05646450072526932, -0.04817777872085571, 0.060051824897527695, 0.008093902841210365, -0.03806152194738388, 0.0007886510575190187, 0.04595363885164261, -0.07461636513471603, -0.028178440406918526, 0.007197071332484484, -0.0058249193243682384, -0.018887268379330635, -0.03077925182878971, 0.010214908979833126, -0.007910052314400673, 0.014797717332839966, 0.01814289763569832, 0.013497311621904373, 0.010824753902852535, -0.012062381021678448, 0.03424102067947388, -0.0060670641250908375, -0.025236833840608597, -0.029362257570028305, -0.023102374747395515, -0.019497113302350044, 0.11608584970235825, -0.011578092351555824, 0.010735071264207363, -0.02634890377521515, -0.017900753766298294, 0.04039328172802925, -0.026869066059589386, 0.04620474949479103, -0.023012692108750343, -0.03777453675866127, -0.019299810752272606, -0.06414137780666351, -0.01919219084084034, -0.042796790599823, -0.003461768850684166, 0.030958617106080055, -0.04032153636217117, 0.04211520031094551, 0.04570252448320389, -0.010753007605671883, 0.0024573178961873055, 0.03899422660470009, 0.04946921765804291, -0.039675816893577576, -0.08602406084537506, 0.017550989985466003, -0.04100312665104866, 0.02708430588245392, 0.014403111301362514, -0.03834850713610649, 0.0014898610534146428, 0.06894839555025101, 0.009461570531129837, -0.03899422660470009, 0.025362389162182808, 0.06604266166687012, 0.015066766180098057, 0.08509135991334915, -0.013927790336310863, 0.01922806352376938, 0.020196640864014626, 0.0708855465054512, -0.03164020925760269, -0.0463123694062233, 0.014134061522781849, -0.026707636192440987, -0.06241945922374725, -0.007035641930997372, 0.008596127852797508, 0.022725705057382584, -0.004798047710210085, 0.007425763178616762, -0.05097589269280434, -0.01669899933040142, -0.0258646160364151, 0.057110220193862915, 0.011739522218704224, 0.013694614171981812, -0.03755929693579674, 0.010564672760665417, 0.020716803148388863, -0.001566091668792069, 0.0031837511342018843, 0.05807879567146301, -0.018546471372246742, 0.009892049245536327, 0.0530206672847271, -0.05546005070209503, 0.024088889360427856, 0.05438385158777237, -0.07081380486488342, 0.003107520518824458, 0.018833458423614502, 0.00854231882840395, 0.007762074936181307, -0.02168538235127926, 0.027443038299679756, -0.049540963023900986, 0.048106033354997635, -0.01225968450307846, 0.0034640110097825527, -0.0002892281045205891, 0.006237461697310209, -0.0011025420390069485, -0.016277488321065903, -0.002385571366176009, 0.012546670623123646, 0.02950575016438961, 0.04857238382101059, 0.03610642999410629, -0.007972830906510353, -0.054527346044778824, -0.0044976091012358665, 0.031030364334583282, -0.07468811422586441, -0.0450209341943264, 0.019999338313937187, -0.002831744961440563, 0.00011630781227722764, 0.022492529824376106, 0.07020395994186401, -0.04272504523396492, -0.004457251634448767, 0.04860825836658478, -0.032877836376428604, 0.03626785799860954, -0.0036433772183954716, 0.00019450028776191175, 0.0059504760429263115, 0.001915855915285647, 0.01438517402857542, 0.02025045081973076, 0.017317812889814377, 0.007721717935055494, 0.02573905885219574, 0.009999669156968594, 0.07221285998821259, -0.09470538794994354, -0.05495782196521759, 0.018528535962104797, -0.06439249217510223, 0.043442510068416595, 0.029936229810118675, -0.012806751765310764, -0.045487284660339355, -0.05919086933135986, 0.03422308340668678, -0.060912784188985825, 0.030438454821705818, 0.019550923258066177, -0.07691225409507751, 0.03515578806400299, -0.0013060106430202723, -0.011533251032233238, -0.010797848924994469, -0.049002863466739655, -0.03684183210134506, -0.0010296744294464588, 0.0558905266225338, 0.02324586734175682, -0.010376338846981525, 0.02982860989868641, -0.012663258239626884, 0.02337142452597618, -0.019748225808143616, 0.046886343508958817, -0.0014741665218025446, 0.022079987451434135, 0.07196174561977386, -0.003997625783085823, 0.024537304416298866, -0.024573178961873055, 0.01528200600296259, -0.11249852180480957, -0.006053611636161804, 0.0210755355656147, 0.027981137856841087, -0.028303997591137886, 0.025218896567821503, -0.002027959795668721, -0.011999603360891342, -0.04294028505682945, -0.013416596688330173, -0.008753073401749134, -0.013353818096220493, -0.005215073935687542, 0.0025582113303244114, -0.028537172824144363, 0.01808011904358864, -0.0024035079404711723, 0.01890520378947258, -0.015317878685891628, 0.0016098122578114271, 0.0009786671726033092, 0.02446555905044079, -0.060051824897527695, -0.015909787267446518, -0.010062447749078274, -0.009264267981052399, 0.026689700782299042, -0.043191395699977875, -0.011587060987949371, 0.020609183236956596, -0.10926993191242218, 0.01438517402857542, -0.05086827278137207, -0.05987245962023735, 0.032967519015073776, -0.03974756598472595, -0.015721453353762627, -0.030384644865989685, -0.009901017881929874, -0.04512855410575867, -0.03298545628786087, -0.06424899399280548, -0.014995019882917404, 0.08853518962860107, 0.05782768502831459, -0.024860164150595665, 0.03526340797543526, -0.01446588896214962, -0.006564805284142494, -0.028752412647008896, 0.007107388228178024, -0.04641998931765556, -0.04817777872085571, 0.0756925642490387, -0.02263602241873741, 0.03691357746720314, -0.044052354991436005, -0.04702983424067497, -0.027156053110957146, -0.012806751765310764, 0.005421345587819815, 0.001021266682073474, -0.018402978777885437, -0.025721121579408646, 0.07849067449569702, 0.05667974054813385, -0.008089418523013592, -0.03777453675866127, 0.08351293206214905, 0.010986183770000935, -0.03949645161628723, 0.06263469904661179, 0.006201588548719883, -0.02292300947010517, -0.014905336312949657, 0.029882419854402542, 0.07253571599721909, -0.020878233015537262, -0.009147679433226585, -0.03101242706179619, -0.003647861536592245, 0.07533383369445801, -0.02864479273557663, -0.015228196047246456, 0.00617916788905859, 0.013900885358452797, -0.008291205391287804, -0.007560288067907095, -0.05675148591399193, -0.023766029626131058, -0.005215073935687542, 0.09147679805755615, 0.04760380834341049, -0.016591379418969154, 0.020770613104104996, 0.022528402507305145, 0.024662861600518227, -0.03440244868397713, -0.0004685943713411689, -0.06367502361536026, 0.014797717332839966, -0.018250517547130585, -0.04559490457177162, -0.0424739308655262, -0.02880622260272503, 0.03888660669326782, -0.003378811990842223, -0.007708265446126461, -0.005138843320310116, 0.08293896168470383, 0.004995350260287523, -0.037021197378635406, 0.02373015694320202, 0.0020694383420050144, 0.015255101025104523, -0.013264135457575321, 0.03264465928077698, -0.029129082337021828, -0.03420514613389969, 0.03372085839509964, 0.00836743600666523, -0.023550789803266525, -0.029685117304325104, 0.02999003976583481, 0.036321669816970825, -0.014376206323504448, -0.04964858293533325, -0.02970305271446705, 0.02451936900615692, 0.03203481435775757, 0.0011770911514759064, -0.0023833292070776224, 0.010564672760665417, 0.014717002399265766, -0.0312994122505188, 0.02401714213192463, -0.05298479646444321, -0.004336179234087467, 0.012152064591646194, -0.011470472440123558, -0.0032420451752841473, -0.04007042199373245, 0.03547864779829979, 0.01765860803425312, 0.0058249193243682384, 0.056249260902404785, 0.04512855410575867, 0.04136186093091965, 0.03138909488916397, 0.02963130734860897, -0.01608915440738201, 0.06023119017481804, 0.000997164286673069, 0.03277021646499634, -0.0281066931784153, 0.09506411850452423, 0.022492529824376106, 0.01061848271638155, 0.04193583130836487, -0.022402847185730934, 0.0146093824878335, 0.00841676164418459, 0.029900357127189636, -0.04337076470255852, -0.03712881729006767, -0.031084174290299416, -0.022689832374453545, -0.026420651003718376, -0.003932605497539043, 0.01935362070798874, 0.05018668249249458, -0.0009775460930541158, -0.058832135051488876, -0.02455524168908596, -0.0055917431600391865, -0.0050581288523972034, 0.041110746562480927, -0.0123762721195817, 0.010277686640620232, 0.022689832374453545, -0.02823225036263466, 0.0756925642490387, -0.03653690963983536, -0.007013220805674791, -0.04505680501461029, 0.0014416563790291548, 0.03694945201277733, -0.07095729559659958, -0.025505883619189262, -0.0147708123549819, -0.03407958894968033, -0.053917501121759415, -0.03266259655356407, 0.020680930465459824, -0.026097791269421577, 0.055998146533966064, 0.014394142664968967, -0.012170000933110714, 0.0290573351085186, -0.025218896567821503, 0.014367237687110901, 0.0036994293332099915, 0.03630373254418373, 0.015981534495949745, -0.03519166260957718, -0.0006345081492327154, -0.00725536560639739, -0.03867136687040329, -0.0734325498342514, 0.014788748696446419, -0.009892049245536327, 0.04796253889799118, -0.010403243824839592, 0.010161099024116993, 0.07519033551216125, 0.09377268701791763, -0.051621612161397934, 0.041720591485500336, -0.04046503081917763, 0.06302930414676666, 0.044303469359874725, -0.06729822605848312, -0.012573575600981712, -0.016080185770988464, 0.03465356305241585, 0.04096725583076477, 0.033738795667886734, -0.0068428232334554195, 0.0018945562187582254, 0.029290510341525078, -0.04415997490286827, -0.00731365941464901, -0.05736133083701134, -0.007008736953139305, 0.014977083541452885, -0.06600678712129593, 0.029416067525744438, 0.03233973681926727, 0.019568858668208122, -0.014905336312949657, 0.015290973708033562, 0.02242078259587288, 0.0036097459960728884, 0.024070952087640762, -0.009685778059065342, 0.03470737114548683, 0.060302939265966415, 0.009972764179110527, 0.06916363537311554, -0.026869066059589386, 0.041146621108055115, -0.008484024554491043, 0.052769556641578674, -0.025810806080698967, -0.03237561136484146, 0.03730818256735802, -0.04161297529935837, -0.018187738955020905, 0.07228460162878036, -0.03040258213877678, 0.02880622260272503, -0.0007152229663915932, 0.0708855465054512, -0.05528068169951439, -0.0007673513027839363, 0.024035079404711723, 0.03540690243244171, 0.05499369651079178, 0.02611572854220867, -0.030510202050209045, 0.03264465928077698, -0.05868864059448242, 0.011237296275794506, -0.029756862670183182, 0.008116323500871658, 0.03989105671644211, -0.019532985985279083, 0.0033384545240551233, 0.0039550261572003365, -0.03097655437886715, 0.01170364860445261, -0.07475985586643219, 0.008389856666326523, -0.03366704657673836, -0.04602538421750069, 0.02034013532102108, 0.0062284935265779495, 0.02902146242558956, -0.04641998931765556, 0.04369362071156502, -0.0009915591217577457, 0.010385306552052498, -0.01657344214618206, -0.051872722804546356, -0.04276091605424881, 0.007412310689687729, -0.0255417563021183, -0.042653296142816544, 0.015290973708033562, -0.016591379418969154, -0.058294035494327545, 0.033164821565151215, 0.00826878473162651, -0.03266259655356407, 0.010717133991420269, 0.053917501121759415, -0.03981931135058403, 0.045559030026197433, -0.0421510711312294, -0.019532985985279083, 0.0055872593075037, -0.023012692108750343, -0.007753106765449047, 0.034797053784132004, -0.04993556812405586, 0.015793200582265854, -0.025236833840608597, -0.021757127717137337, -0.052482567727565765, 0.10109082609415054, -0.034886740148067474, -0.07192587107419968, 0.060661669820547104, -0.04064439609646797, 0.01135388482362032, -0.028303997591137886, 0.08351293206214905, 0.007972830906510353, 0.01679765060544014, 0.024501431733369827, 0.01068126130849123, 0.034922610968351364, 0.028214313089847565, -0.003611988155171275, -0.015972565859556198, -0.01765860803425312, 0.016295425593852997, -0.005331662017852068, -0.06654488295316696, 0.025918425992131233, -0.0212369654327631, 0.008147712796926498, -0.037631042301654816, 0.02356872707605362, 0.016627252101898193, -0.03199894353747368, 0.05786355584859848, 0.00677107647061348, 0.005806982982903719, -0.011945793405175209, 0.05287717655301094, -0.04537966474890709, -0.035622138530015945, 0.02816050313413143, -0.03440244868397713, -0.10367370396852493, 0.03870724141597748, -0.006883180234581232, 0.02184681035578251, -0.00009199527266900986, -0.05316416174173355, 0.004040224943310022, 0.005744204856455326, 0.03684183210134506, -0.002309340750798583, 0.027245735749602318, -0.028393680229783058, -0.021703317761421204, 0.014896368607878685, 0.03612436726689339, -0.024196509271860123, -0.010753007605671883, 0.021739190444350243, 0.016241615638136864, -0.023496979847550392, -0.054527346044778824, 0.023317614570260048, 0.015165417455136776, 0.04702983424067497, -0.038492001593112946, -0.005914602428674698, -0.06231183931231499, 0.018528535962104797, -0.037666916847229004, -0.06668838113546371, -0.010116257704794407, -0.05144224315881729, 0.015479308553040028, -0.07483160495758057, -0.05965721979737282, -0.05377400666475296, 0.028501300141215324, 0.04832127317786217, 0.020232515409588814, -0.02468079887330532, -0.007336080074310303, 0.004046951420605183, 0.04559490457177162, 0.018959013745188713, -0.009775461629033089, 0.03221417963504791, -0.01910250633955002, 0.06220421940088272, 0.001262290054000914, 0.01168571226298809, 0.01505779754370451, -0.006116389762610197, -0.02902146242558956, 0.03442038595676422, 0.01401747390627861, -0.006874212063848972, -0.041146621108055115, 0.017066700384020805, 0.0033115497790277004, 0.032393548637628555, 0.014403111301362514, -0.063208669424057, 0.01823258027434349, -0.0396040715277195, -0.029003525152802467, 0.037918027490377426, 0.006035674829035997, 0.03235767409205437, -0.05259018763899803, 0.01354215294122696, -0.006775560788810253, 0.061809614300727844, -0.04408822953701019, 0.034474197775125504, -0.011578092351555824, 0.02328174188733101, 0.033451806753873825, -0.0638543888926506, -0.029326384887099266, 0.030187342315912247, -0.03666246309876442, -0.02008902095258236, -0.05667974054813385, 0.06464359909296036, 0.02353285439312458, 0.03687770292162895, 0.0021837842650711536, -0.021129345521330833, 0.029218764975667, 0.04294028505682945, 0.0013979357900097966, -0.05144224315881729, -0.05904737487435341, 0.03302133083343506, 0.027443038299679756, 0.020160768181085587, -0.04713745415210724, -0.018815521150827408, 0.037057071924209595, 0.02611572854220867, 0.019622668623924255, -0.010474990122020245, -0.013999536633491516, -0.0670471116900444, 0.015003988519310951, -0.02369428426027298, 0.027801770716905594, 0.015981534495949745, -0.01721019297838211, 0.07203349471092224, 0.04441108554601669, 0.002110916655510664, -0.017999405041337013, 0.0281066931784153, -0.007829337380826473, -0.006102937273681164, -0.006905601359903812, -0.005170232616364956, -0.01890520378947258, -0.028124630451202393, -0.06471534818410873, 0.058545149862766266, -0.01561383344233036, 0.002425928832963109, 0.039998676627874374, -0.0033384545240551233, 0.01235833577811718, -0.0744011253118515, -0.03212449699640274, -0.035496585071086884, -0.030294962227344513, 0.04505680501461029, -0.036770083010196686, 0.011201423592865467, -0.019981401041150093, -0.10740452259778976, -0.03425895795226097, -0.046384114772081375, 0.007914536632597446, -0.02184681035578251, -0.048428893089294434, 0.006941474508494139, -0.03759516775608063, -0.026833193376660347, 0.014403111301362514, -0.04541553929448128, 0.017739323899149895, 0.04064439609646797, -0.006134326104074717, 0.040859635919332504, 0.0022342309821397066, 0.10173654556274414, 0.026133663952350616, 0.0341692753136158, 0.0029595433734357357, 0.028052883222699165, 0.009748556651175022, 0.0463123694062233, -0.006425796542316675, 0.047567933797836304, 0.042796790599823, -0.0015918755671009421, -0.022044114768505096, -0.044877439737319946, -0.02021457813680172, 0.039998676627874374, 0.01906663365662098, 0.04674284905195236, 0.026384778320789337, 0.03687770292162895, 0.059764839708805084, 0.018124960362911224, -0.0523749478161335, -0.02193649485707283, 0.018976951017975807, 0.005726268049329519, -0.03327244147658348, -0.009062480181455612, 0.005851824302226305, 0.05151399224996567, -0.006591710262000561, 0.0014786506071686745, 0.05646450072526932, -0.013416596688330173, -0.01669899933040142, -0.053343527019023895, -0.057684190571308136, -0.057720065116882324, -0.00023625900212209672, -0.008376404643058777, 0.00836743600666523, -0.04068027064204216, 0.03888660669326782, 0.0450209341943264, -0.020770613104104996, 0.04398060962557793, 0.026833193376660347, -0.03212449699640274, -0.01278881449252367, 0.04444696009159088, 0.05086827278137207, -0.004981898237019777, -0.04713745415210724, 0.009165615774691105, -0.012986117973923683, 0.01759583130478859, 0.0020582277793437243, 0.04914635792374611, -0.013613899238407612, -0.049253977835178375, 0.039137717336416245, 0.008219459094107151, 0.010340465232729912, -0.01919219084084034 ]
9,627
asyncclick.decorators
command
Creates a new :class:`Command` and uses the decorated function as callback. This will also automatically attach all decorated :func:`option`\s and :func:`argument`\s as parameters to the command. The name of the command defaults to the name of the function with underscores replaced by dashes. If you want to change that, you can pass the intended name as the first argument. All keyword arguments are forwarded to the underlying command class. For the ``params`` argument, any decorated params are appended to the end of the list. Once decorated the function turns into a :class:`Command` instance that can be invoked as a command line utility or be attached to a command :class:`Group`. :param name: the name of the command. This defaults to the function name with underscores replaced by dashes. :param cls: the command class to instantiate. This defaults to :class:`Command`. .. versionchanged:: 8.1 This decorator can be applied without parentheses. .. versionchanged:: 8.1 The ``params`` argument can be used. Decorated params are appended to the end of the list.
def command( name: t.Union[t.Optional[str], _AnyCallable] = None, cls: t.Optional[t.Type[CmdType]] = None, **attrs: t.Any, ) -> t.Union[Command, t.Callable[[_AnyCallable], t.Union[Command, CmdType]]]: r"""Creates a new :class:`Command` and uses the decorated function as callback. This will also automatically attach all decorated :func:`option`\s and :func:`argument`\s as parameters to the command. The name of the command defaults to the name of the function with underscores replaced by dashes. If you want to change that, you can pass the intended name as the first argument. All keyword arguments are forwarded to the underlying command class. For the ``params`` argument, any decorated params are appended to the end of the list. Once decorated the function turns into a :class:`Command` instance that can be invoked as a command line utility or be attached to a command :class:`Group`. :param name: the name of the command. This defaults to the function name with underscores replaced by dashes. :param cls: the command class to instantiate. This defaults to :class:`Command`. .. versionchanged:: 8.1 This decorator can be applied without parentheses. .. versionchanged:: 8.1 The ``params`` argument can be used. Decorated params are appended to the end of the list. """ func: t.Optional[t.Callable[[_AnyCallable], t.Any]] = None if callable(name): func = name name = None assert cls is None, "Use 'command(cls=cls)(callable)' to specify a class." assert not attrs, "Use 'command(**kwargs)(callable)' to provide arguments." if cls is None: cls = t.cast(t.Type[CmdType], Command) def decorator(f: _AnyCallable) -> CmdType: if isinstance(f, Command): raise TypeError("Attempted to convert a callback into a command twice.") attr_params = attrs.pop("params", None) params = attr_params if attr_params is not None else [] try: decorator_params = f.__click_params__ # type: ignore except AttributeError: pass else: del f.__click_params__ # type: ignore params.extend(reversed(decorator_params)) if attrs.get("help") is None: attrs["help"] = f.__doc__ if t.TYPE_CHECKING: assert cls is not None assert not callable(name) cmd = cls( name=name or f.__name__.lower().replace("_", "-"), callback=f, params=params, **attrs, ) cmd.__doc__ = f.__doc__ return cmd if func is not None: return decorator(func) return decorator
(name: Union[str, NoneType, Callable[..., Any]] = None, cls: Optional[Type[~CmdType]] = None, **attrs: Any) -> Union[asyncclick.core.Command, Callable[[Callable[..., Any]], Union[asyncclick.core.Command, ~CmdType]]]
[ 0.03188134729862213, -0.04518767446279526, 0.04922572150826454, -0.057186443358659744, 0.009220208041369915, 0.011585350148379803, -0.023209158331155777, 0.014950389973819256, 0.022305404767394066, -0.005802289582788944, 0.0005281910416670144, 0.021478567272424698, 0.005533086601644754, -0.03380422666668892, -0.0030573788098990917, 0.031112194061279297, 0.04499538615345955, 0.0013448140816763043, -0.042918674647808075, -0.010075889527797699, 0.1071428582072258, 0.06814686208963394, -0.002552622929215431, -0.03382345661520958, 0.02965080551803112, 0.04545687884092331, 0.010893113911151886, 0.051263973116874695, 0.015623398125171661, -0.0029780599288642406, 0.012325659394264221, -0.01999794878065586, 0.0043601300567388535, 0.029708491638302803, -0.03278509899973869, 0.0133063280954957, 0.04088042303919792, 0.03843836486339569, -0.01272946409881115, -0.056571122258901596, -0.013094810768961906, 0.0010233325883746147, -0.01239295955747366, -0.023574505001306534, 0.037034664303064346, 0.015133063308894634, 0.011018101125955582, 0.0022449621465057135, -0.1230643019080162, -0.03322736173868179, 0.025747360661625862, -0.04699518159031868, 0.0523407869040966, -0.014642729423940182, 0.014479284174740314, -0.004131787922233343, 0.025593530386686325, 0.04545687884092331, -0.005682109855115414, -0.028458619490265846, -0.02790098451077938, 0.05934007093310356, 0.007508845534175634, -0.004598086234182119, -0.010364321991801262, -0.026074249297380447, -0.01065275352448225, -0.03005461022257805, -0.02588196098804474, 0.033073533326387405, -0.011604579165577888, 0.04303405061364174, 0.04099579527974129, -0.0703774020075798, -0.004523574840277433, -0.03226592391729355, -0.010123961605131626, -0.025593530386686325, 0.038515280932188034, 0.030631475150585175, -0.012373731471598148, -0.014027407392859459, -0.00246609328314662, 0.02368987910449505, 0.009407688863575459, 0.016075273975729942, -0.041149627417325974, -0.02215157449245453, -0.04111116752028465, -0.011287304572761059, -0.028381705284118652, -0.06710850447416306, -0.026228079572319984, -0.017382832244038582, -0.028247103095054626, -0.024324428290128708, 0.015690699219703674, 0.04126499965786934, 0.056301917880773544, 0.07518459856510162, -0.04014972969889641, 0.03188134729862213, 0.04572607949376106, 0.01649830862879753, 0.00006801435665693134, -0.05518664792180061, -0.048648856580257416, 0.054571326822042465, -0.0882217213511467, -0.03365039452910423, 0.032419752329587936, 0.018786534667015076, 0.05934007093310356, 0.0017077575903385878, 0.05660957843065262, 0.011450748890638351, -0.06876218318939209, -0.024324428290128708, -0.039419036358594894, -0.04141882807016373, -0.011191160418093204, 0.0003683516406454146, -0.007946300320327282, -0.052994564175605774, 0.0017738565802574158, -0.024285972118377686, 0.01799815520644188, -0.012344888411462307, 0.04541841894388199, 0.007879000157117844, 0.027612553909420967, 0.016805969178676605, -0.0189211368560791, 0.0007312952075153589, 0.03116988018155098, 0.0180366113781929, -0.022555379197001457, 0.020094092935323715, -0.06972362101078033, 0.033708080649375916, 0.024728232994675636, 0.017430905252695084, 0.0016404568450525403, 0.01373897586017847, 0.0029540241230279207, -0.054109837859869, -0.01272946409881115, -0.04987950250506401, 0.0035669419448822737, 0.015075377188622952, 0.0009542290936224163, -0.018969208002090454, 0.03868833929300308, 0.04872577264904976, 0.030900677666068077, -0.012421803548932076, -0.018940364941954613, 0.0066964286379516125, -0.02217080444097519, 0.03999589756131172, 0.015296508558094501, 0.008172239176928997, 0.029785407707095146, -0.015469567850232124, 0.00955190509557724, -0.03049687296152115, 0.004489924293011427, -0.023824479430913925, 0.017853938043117523, 0.04853348433971405, 0.004891325253993273, 0.023978309705853462, 0.07983797043561935, 0.011893011629581451, -0.0693005844950676, 0.009806687012314796, -0.00004889822957920842, -0.019046124070882797, 0.05422521010041237, -0.08868321776390076, 0.015286893583834171, 0.014200466684997082, 0.05953235551714897, -0.02680494450032711, 0.013008281588554382, 0.03311198949813843, 0.0488026887178421, 0.020978618413209915, -0.04807199537754059, -0.04749513044953346, -0.018978822976350784, -0.012498718686401844, 0.025285867974162102, 0.012277587316930294, 0.00016705018060747534, -0.04284176230430603, -0.04407240450382233, 0.05968618765473366, 0.07983797043561935, -0.004439448472112417, 0.030227670446038246, 0.0064368401654064655, 0.08006871491670609, 0.010345092974603176, 0.003819319885224104, 0.015344580635428429, 0.010787355713546276, 0.023593734949827194, -0.00020490687165874988, -0.06130140647292137, 0.05645575001835823, -0.03026612661778927, -0.04653368890285492, 0.04718746989965439, -0.03099682182073593, -0.011546893045306206, 0.07599220424890518, 0.010037432424724102, 0.03316967561841011, 0.028420163318514824, 0.043995488435029984, 0.06906984001398087, -0.005105245858430862, 0.04238026961684227, 0.026228079572319984, -0.028650907799601555, 0.0025622372049838305, -0.017459748312830925, 0.03884217143058777, -0.014219695702195168, -0.02238232083618641, -0.021882371976971626, -0.002737700007855892, 0.020497897639870644, -0.05226387083530426, -0.03507332503795624, 0.0337657667696476, 0.02940083108842373, -0.02259383723139763, 0.0008785157115198672, 0.01647907868027687, 0.029496975243091583, 0.016084888949990273, 0.06995436549186707, 0.010479694232344627, -0.012344888411462307, -0.007585760671645403, 0.03540021553635597, -0.02040175348520279, -0.02242077700793743, -0.04522613063454628, 0.006153215188533068, 0.0294392891228199, -0.004504345823079348, -0.05584042891860008, 0.027574095875024796, -0.07799199968576431, -0.05030253529548645, -0.018315428867936134, 0.038803715258836746, -0.029554661363363266, -0.014402369037270546, -0.012479489669203758, 0.04611065611243248, 0.048187367618083954, -0.02109399065375328, -0.020151779055595398, -0.06537791341543198, -0.04141882807016373, 0.03453492000699043, -0.0018051033839583397, 0.010104733519256115, 0.008172239176928997, -0.018594246357679367, -0.05076402425765991, -0.02197851613163948, 0.011393062770366669, -0.11260383576154709, 0.0452645905315876, -0.057186443358659744, 0.005571544170379639, -0.058955494314432144, 0.008013601414859295, 0.008052058517932892, 0.0027641395572572947, 0.02790098451077938, -0.015469567850232124, 0.0006892321980558336, 0.011729566380381584, 0.03070838935673237, 0.06572403013706207, 0.007879000157117844, 0.016988642513751984, 0.0005408099386841059, 0.03290047124028206, 0.027958672493696213, -0.06626243889331818, -0.014335068874061108, 0.02568967267870903, -0.08976002782583237, -0.009205786511301994, -0.06037842482328415, -0.028689365833997726, 0.009273087605834007, -0.026843400672078133, -0.017084786668419838, -0.024459030479192734, -0.042957134544849396, -0.028458619490265846, 0.028208645060658455, 0.02588196098804474, 0.007547303102910519, -0.016632908955216408, 0.015008076094090939, 0.042611014097929, 0.051263973116874695, 0.02615116536617279, -0.0043505155481398106, 0.0456107072532177, 0.03868833929300308, 0.019151883199810982, 0.005701338406652212, -0.027554865926504135, 0.010412394069135189, -0.032842785120010376, -0.00213920371606946, -0.020805558189749718, 0.03411188721656799, 0.01471964456140995, 0.052148498594760895, -0.0456107072532177, 0.0003328985476400703, 0.009542291052639484, 0.013065967708826065, -0.0703774020075798, 0.03557327389717102, 0.010354707017540932, 0.0010912342695519328, 0.026189621537923813, -0.011325761675834656, 0.03618859872221947, 0.08422213047742844, -0.00944614689797163, 0.02220926061272621, -0.029881551861763, 0.0008857264765538275, 0.027593323960900307, 0.028939340263605118, 0.03620782494544983, -0.04691826552152634, 0.06737770885229111, -0.03991898521780968, -0.04322633519768715, -0.0347464382648468, 0.06037842482328415, -0.03561173379421234, 0.04018818587064743, -0.009100028313696384, 0.003492430318146944, -0.11160393804311752, -0.02259383723139763, -0.034188803285360336, 0.01337362825870514, -0.01823851466178894, 0.004429834429174662, 0.02390139549970627, 0.0364193432033062, -0.05199467018246651, 0.009883602149784565, 0.02236309088766575, 0.04280330240726471, -0.003754422767087817, 0.029977696016430855, 0.016979027539491653, -0.054802071303129196, -0.0054802075028419495, 0.004737494979053736, -0.015604169107973576, -0.04341862350702286, -0.031535226851701736, -0.023439904674887657, -0.02215157449245453, 0.055032819509506226, -0.010316249914467335, 0.027766384184360504, -0.005196582525968552, -0.017969312146306038, 0.040534306317567825, 0.0009325966821052134, -0.05037945136427879, 0.012431417591869831, 0.000006882181878609117, -0.018738463521003723, 0.007095426321029663, -0.013402472250163555, 0.030862219631671906, 0.04064967855811119, 0.026920316740870476, -0.013556302525103092, 0.0022197242360562086, 0.03184288740158081, 0.003521273611113429, 0.13306327164173126, 0.012325659394264221, 0.045341502875089645, 0.006191672757267952, 0.023151472210884094, 0.05111014470458031, -0.04811045154929161, 0.05595580115914345, 0.010373936034739017, -0.02238232083618641, -0.030689161270856857, 0.023766793310642242, 0.0189211368560791, 0.022132346406579018, -0.0008442644029855728, 0.02284381166100502, -0.046226028352975845, -0.08583734929561615, -0.013575530610978603, -0.0002107656473526731, -0.007513652555644512, 0.05291765183210373, 0.07645370066165924, 0.06780073791742325, 0.03515024110674858, -0.018526947125792503, 0.02151702530682087, -0.023632192984223366, -0.014200466684997082, -0.014681186527013779, -0.005268690641969442, 0.013152497820556164, -0.023978309705853462, 0.0009542290936224163, 0.006629128009080887, -0.0188730638474226, 0.06722387671470642, 0.0523407869040966, -0.07876115292310715, -0.049956414848566055, 0.017017485573887825, -0.0035573274362832308, -0.089452363550663, -0.031323712319135666, 0.04368782788515091, -0.019642217084765434, 0.05803251266479492, -0.026439595967531204, 0.10337401181459427, 0.11506512761116028, 0.0005101640126667917, -0.00866257306188345, 0.04088042303919792, -0.06199364364147186, 0.0056340377777814865, -0.026651114225387573, -0.04541841894388199, -0.019863348454236984, -0.005989770404994488, 0.012517946772277355, -0.035650189965963364, -0.03757306933403015, -0.04149574413895607, 0.03299661725759506, 0.05684032663702965, -0.0011363017838448286, -0.026228079572319984, -0.030900677666068077, 0.022440006956458092, -0.019844118505716324, 0.0047783562913537025, 0.06653163582086563, 0.008864475414156914, 0.03249666839838028, 0.05714798718690872, -0.06557019799947739, -0.054109837859869, 0.02440134435892105, 0.04784124717116356, -0.006840644869953394, -0.036996208131313324, -0.0020622885785996914, -0.01578684337437153, 0.004804795607924461, 0.004850464407354593, -0.02417059801518917, -0.0027713505551218987, 0.006340696010738611, -0.013758204877376556, 0.0654163658618927, 0.032842785120010376, -0.027593323960900307, -0.01997872069478035, 0.0169309563934803, 0.021613167598843575, -0.024285972118377686, -0.010075889527797699, -0.03620782494544983, 0.04080350697040558, 0.01820005662739277, -0.0033482143189758062, -0.017469363287091255, 0.00029894770705141127, -0.038515280932188034, 0.005235040094703436, -0.007042547222226858, -0.04941800981760025, -0.0002749117265921086, -0.01711362972855568, 0.008277997374534607, -0.05037945136427879, 0.014806173741817474, -0.035707876086235046, -0.020247923210263252, -0.00675892224535346, -0.021459337323904037, -0.03772690147161484, -0.03163137286901474, 0.0024120123125612736, 0.06033996492624283, -0.03901522979140282, -0.03299661725759506, -0.033900368958711624, 0.013912035152316093, 0.012556404806673527, -0.03343887999653816, 0.06572403013706207, 0.004655772820115089, 0.03991898521780968, 0.010431623086333275, -0.01691172830760479, -0.034188803285360336, -0.009167329408228397, -0.0017594349337741733, -0.05626346170902252, 0.12667931616306305, -0.01733476109802723, 0.018738463521003723, 0.02345913276076317, 0.024266742169857025, -0.03322736173868179, 0.041841864585876465, -0.020920932292938232, -0.025401242077350616, 0.018969208002090454, -0.031054507941007614, -0.019026895985007286, 0.01022010575979948, -0.08422213047742844, -0.008489513769745827, -0.035015638917684555, 0.045341502875089645, -0.014863860793411732, 0.035707876086235046, 0.017517434433102608, -0.007436737418174744, -0.025382012128829956, -0.0011074586072936654, -0.014162009581923485, 0.03355425223708153, -0.031727515161037445, -0.01120077446103096, 0.01999794878065586, 0.00967208482325077, 0.10583530366420746, 0.032592810690402985, 0.022266946732997894, -0.03455414995551109, -0.05580196902155876, 0.07453081756830215, -0.03530407324433327, -0.028458619490265846, -0.03070838935673237, 0.057224903255701065, 0.055032819509506226, -0.043995488435029984, -0.020497897639870644, -0.09083683788776398, 0.008177045732736588, -0.00400199368596077, -0.0464952327311039, -0.005033137742429972, -0.06653163582086563, 0.017882781103253365, -0.02682417258620262, -0.026285765692591667, -0.05691723898053169, -0.05530202016234398, 0.008542393334209919, -0.002451671753078699, -0.013229412958025932, 0.003965939395129681, 0.031054507941007614, -0.01845003105700016, 0.0019312923541292548, 0.042534101754426956, 0.007749205455183983, -0.027074147015810013, -0.015027305111289024, 0.0011579341953620315, -0.04211106523871422, 0.02659342624247074, 0.04891806095838547, 0.028150958940386772, -0.02678571455180645, -0.02286303974688053, -0.07422316074371338, -0.03980360925197601, -0.031323712319135666, -0.0008196274866349995, 0.00025042504421435297, 0.04103425517678261, 0.05080248415470123, 0.024228284135460854, -0.01645985059440136, -0.008080902509391308, 0.04630294442176819, 0.05707107111811638, 0.03572710603475571, -0.034131117165088654, 0.02280535362660885, 0.020363297313451767, -0.03053533099591732, 0.017065558582544327, -0.061378322541713715, 0.024055225774645805, 0.005701338406652212, -0.010152804665267467, -0.0031895767897367477, -0.010402779094874859, -0.004497135058045387, -0.0029275843407958746, 0.018305815756320953, -0.05845554545521736, -0.03886140137910843, 0.03661163151264191, 0.04707209765911102, -0.06272433698177338, 0.01934416964650154, -0.005542701110243797, 0.013787047937512398, -0.003391479142010212, 0.012777536176145077, 0.01406586542725563, 0.010143190622329712, 0.0017846727278083563, 0.01645985059440136, -0.04168803244829178, 0.023824479430913925, 0.05399446189403534, 0.0013628409942612052, 0.014652343466877937, 0.0694928765296936, -0.06695467233657837, -0.0447261817753315, -0.0654163658618927, 0.03486181050539017, -0.0016560801304876804, 0.0027617360465228558, -0.021690083667635918, 0.03751538321375847, 0.024535946547985077, -0.026478054001927376, -0.026843400672078133, -0.04611065611243248, -0.06130140647292137, 0.005201389547437429, -0.013142882846295834, -0.00021542262402363122, 0.011248846538364887, -0.025843502953648567, -0.046264488250017166, -0.0351887010037899, -0.004583664704114199, 0.027977900579571724, 0.008859668858349323, 0.028881654143333435, 0.04407240450382233, -0.04903343319892883, -0.005384063348174095, 0.01363321766257286, -0.017459748312830925, -0.03672700375318527, 0.006513755302876234, 0.03334273397922516, -0.02942006103694439, 0.026285765692591667, -0.051956210285425186, 0.0434955395758152, 0.0408419668674469, -0.008422213606536388, -0.04564916715025902, -0.023401446640491486, -0.031535226851701736, -0.034592606127262115, -0.06899292767047882, 0.008475092239677906, 0.01352745946496725, 0.013873577117919922, 0.01669059693813324, -0.053917549550533295, -0.029362373054027557, 0.0221900325268507, -0.017853938043117523, -0.008455864153802395, -0.03561173379421234, 0.0488026887178421, 0.0077636269852519035, 0.0021031496580690145, 0.026016563177108765, 0.043110962957143784, 0.04222644120454788, 0.04941800981760025, -0.03932289034128189, 0.02503589354455471, 0.013344785198569298, 0.0035356951411813498, -0.004432237707078457, -0.0017161702271550894, 0.02307455614209175, 0.066839300096035, -0.012412188574671745, 0.028458619490265846, -0.04376474395394325, -0.04264947399497032, -0.02613193541765213, -0.011133473366498947, -0.0434955395758152, 0.04057276248931885, 0.019671060144901276, -0.019219182431697845, 0.0009986956138163805, 0.03316967561841011, -0.04980258643627167, 0.04145728796720505, -0.051071684807538986, -0.048264279961586, 0.027997128665447235, -0.10014357417821884, 0.043572455644607544, 0.001267898827791214, -0.018575018271803856, 0.039207518100738525, -0.023574505001306534, 0.009157714433968067, 0.057417187839746475, 0.04211106523871422, -0.01780586689710617, -0.03757306933403015, -0.0075521101243793964, -0.010354707017540932, 0.07183878868818283, 0.005335991270840168, -0.038746025413274765, -0.003026132006198168, 0.039842069149017334, -0.005696531385183334, -0.04199569299817085, -0.013392857275903225, 0.008527971804141998, -0.0022101099602878094, -0.10352784395217896, 0.017930854111909866, -0.0346502922475338, -0.004331286530941725, 0.05422521010041237 ]
9,628
asyncclick.termui
confirm
Prompts for confirmation (yes/no question). If the user aborts the input by sending a interrupt signal this function will catch it and raise a :exc:`Abort` exception. :param text: the question to ask. :param default: The default value to use when no input is given. If ``None``, repeat until input is given. :param abort: if this is set to `True` a negative answer aborts the exception by raising :exc:`Abort`. :param prompt_suffix: a suffix that should be added to the prompt. :param show_default: shows or hides the default value in the prompt. :param err: if set to true the file defaults to ``stderr`` instead of ``stdout``, the same as with echo. .. versionchanged:: 8.0 Repeat until input is given if ``default`` is ``None``. .. versionadded:: 4.0 Added the ``err`` parameter.
def confirm( text: str, default: t.Optional[bool] = False, abort: bool = False, prompt_suffix: str = ": ", show_default: bool = True, err: bool = False, ) -> bool: """Prompts for confirmation (yes/no question). If the user aborts the input by sending a interrupt signal this function will catch it and raise a :exc:`Abort` exception. :param text: the question to ask. :param default: The default value to use when no input is given. If ``None``, repeat until input is given. :param abort: if this is set to `True` a negative answer aborts the exception by raising :exc:`Abort`. :param prompt_suffix: a suffix that should be added to the prompt. :param show_default: shows or hides the default value in the prompt. :param err: if set to true the file defaults to ``stderr`` instead of ``stdout``, the same as with echo. .. versionchanged:: 8.0 Repeat until input is given if ``default`` is ``None``. .. versionadded:: 4.0 Added the ``err`` parameter. """ prompt = _build_prompt( text, prompt_suffix, show_default, "y/n" if default is None else ("Y/n" if default else "y/N"), ) while True: try: # Write the prompt separately so that we get nice # coloring through colorama on Windows echo(prompt.rstrip(" "), nl=False, err=err) # Echo a space to stdout to work around an issue where # readline causes backspace to clear the whole line. value = visible_prompt_func(" ").lower().strip() except (KeyboardInterrupt, EOFError): raise Abort() from None if value in ("y", "yes"): rv = True elif value in ("n", "no"): rv = False elif default is not None and value == "": rv = default else: echo(_("Error: invalid input"), err=err) continue break if abort and not rv: raise Abort() return rv
(text: str, default: Optional[bool] = False, abort: bool = False, prompt_suffix: str = ': ', show_default: bool = True, err: bool = False) -> bool
[ 0.01700117625296116, -0.003433982376009226, 0.028694046661257744, -0.07500948756933212, 0.057315126061439514, -0.03524278476834297, 0.02827448956668377, 0.014994599856436253, 0.04206514358520508, -0.05311955511569977, 0.02745361626148224, 0.020029284060001373, -0.03086479753255844, 0.009813983924686909, -0.044947318732738495, -0.0179314985871315, 0.03653793781995773, 0.02542879804968834, 0.008546192198991776, -0.0024352543987333775, 0.032032258808612823, -0.016362721100449562, -0.016253270208835602, -0.003529750742018223, 0.01270527858287096, 0.011592540889978409, 0.029952717944979668, -0.029131844639778137, -0.03062765672802925, 0.012075942941009998, 0.051258914172649384, -0.010498044081032276, 0.0005144702736288309, 0.08974870294332504, 0.040423400700092316, 0.014146365225315094, -0.017119746655225754, 0.038781654089689255, -0.0015528167132288218, -0.05640304461121559, 0.008108394220471382, -0.014638888649642467, -0.008774212561547756, 0.004802102688699961, -0.01924489438533783, 0.03513333201408386, 0.004289057571440935, 0.052316926419734955, -0.020740706473588943, 0.01948203518986702, 0.05104001238942146, -0.037231117486953735, 0.005276384763419628, 0.008692124858498573, -0.02980678342282772, -0.014283177442848682, -0.026194946840405464, 0.03564409911632538, -0.019390827044844627, -0.01271439902484417, 0.00724191777408123, -0.009576843120157719, -0.015049325302243233, 0.028694046661257744, -0.023805296048521996, -0.014739218167960644, 0.04979958385229111, -0.04998200014233589, -0.011109137907624245, -0.03423949331045151, -0.042940739542245865, 0.025702422484755516, -0.06665483117103577, -0.00842762179672718, 0.03859923779964447, -0.009613326750695705, -0.019281378015875816, 0.03697573393583298, -0.033217962831258774, 0.018825337290763855, -0.0017055901698768139, -0.04239349439740181, 0.025027483701705933, -0.003438542829826474, -0.054688334465026855, 0.010096728801727295, 0.015560089610517025, 0.021105539053678513, 0.07800110429525375, 0.03133907914161682, -0.003101072972640395, -0.039620768278837204, 0.058263689279556274, 0.03515157476067543, -0.012568466365337372, -0.06070806458592415, 0.03281664848327637, -0.02599428780376911, 0.00950387679040432, -0.011328037828207016, -0.06008785218000412, 0.05341142416000366, 0.04082471504807472, -0.04903343692421913, 0.014082520268857479, 0.004419029224663973, -0.032123468816280365, 0.014702734537422657, 0.043050188571214676, -0.07946043461561203, -0.04407171905040741, -0.09894247353076935, -0.011245950125157833, -0.027380650863051414, 0.02221827581524849, -0.03768715634942055, -0.016481291502714157, 0.02659626118838787, 0.0013122555101290345, -0.020685981959104538, -0.024607926607131958, 0.008842618204653263, -0.009298658929765224, -0.05545448139309883, 0.03786957263946533, 0.018287209793925285, 0.013872741721570492, 0.030682381242513657, -0.013836258091032505, 0.10142333060503006, 0.023823536932468414, -0.022035859525203705, -0.020594773814082146, -0.014055157080292702, 0.010069366544485092, 0.06574274599552155, 0.02221827581524849, 0.06413748860359192, 0.007200873922556639, -0.02422485314309597, 0.05023738369345665, 0.005791709758341312, 0.001943871146067977, 0.004263975191861391, -0.00788949429988861, -0.02685164473950863, 0.06413748860359192, -0.09755610674619675, 0.0007336545968428254, -0.013206922449171543, 0.02708878554403782, 0.03334565460681915, -0.049252334982156754, -0.015386794693768024, 0.007209994830191135, -0.002578906947746873, -0.02683340199291706, -0.06632647663354874, -0.007670595310628414, 0.01152869500219822, 0.026906369253993034, 0.014009553007781506, 0.01734776794910431, 0.06202146038413048, -0.003324532648548484, 0.0470268614590168, -0.011893527582287788, 0.04429062083363533, 0.05180616304278374, -0.012787366285920143, -0.026067255064845085, -0.011090896092355251, -0.011556057259440422, 0.0018230205168947577, 0.003835297655314207, 0.03976670280098915, -0.028566354885697365, -0.04509324952960014, 0.004092960152775049, -0.05133187770843506, -0.0011252791155129671, -0.031156662851572037, -0.02409716136753559, -0.02803734876215458, 0.005987807177007198, 0.0022300363052636385, 0.011665507219731808, 0.02376881241798401, 0.04308667406439781, -0.03148501366376877, -0.04191920906305313, -0.0030258262995630503, 0.03940187022089958, 0.07125171273946762, -0.06504956632852554, -0.07668770849704742, -0.003999472130089998, -0.04202866181731224, 0.06479418277740479, -0.10470681637525558, -0.005677700042724609, 0.014830425381660461, 0.08128459751605988, -0.016307996585965157, 0.052207477390766144, -0.011683749035000801, -0.017320405691862106, -0.02495451644062996, -0.05767995864152908, -0.025848355144262314, -0.00635263929143548, 0.012258359231054783, -0.039584286510944366, -0.02745361626148224, -0.012185392901301384, 0.03040875680744648, 0.15731561183929443, -0.029970958828926086, -0.042685359716415405, 0.03801550716161728, 0.059066321700811386, 0.00016859234892763197, 0.05034683272242546, 0.042831290513277054, 0.05166022852063179, -0.013662963174283504, -0.003338214010000229, 0.024206610396504402, 0.048267289996147156, -0.06234981119632721, 0.007707078475505114, -0.013225164264440536, -0.0034818665590137243, -0.030098650604486465, -0.027161750942468643, -0.0005344220553524792, 0.0017774164443835616, -0.019865108653903008, 0.011109137907624245, 0.07865780591964722, 0.026778677478432655, 0.011209466494619846, 0.01816863939166069, 0.02185344323515892, 0.04593236371874809, -0.0030486283358186483, 0.01745721697807312, 0.011264191940426826, 0.013872741721570492, -0.014565922319889069, -0.015158774331212044, 0.044582486152648926, -0.00951299723237753, -0.06515901535749435, 0.011437486857175827, 0.10638504475355148, -0.028310973197221756, 0.002574346726760268, 0.02814679779112339, 0.02482682652771473, -0.05727864429354668, 0.022236518561840057, -0.03951131924986839, 0.028310973197221756, 0.0005409776349551976, 0.027581308037042618, -0.05501668527722359, -0.009307779371738434, 0.04491083323955536, -0.039584286510944366, 0.029660850763320923, 0.05709622800350189, -0.03537047281861305, -0.04385282099246979, 0.013152197934687138, 0.016909968107938766, 0.021926410496234894, -0.0098048634827137, 0.0018492428353056312, -0.03896407037973404, -0.02493627555668354, 0.022163551300764084, 0.056111179292201996, -0.014784821309149265, -0.012778244912624359, 0.007100545335561037, -0.03838033974170685, -0.08179536461830139, -0.02635912038385868, -0.01245901733636856, 0.05669490993022919, -0.021452128887176514, 0.062422774732112885, -0.0047382572665810585, -0.01723831705749035, -0.000469721358967945, -0.029277777299284935, -0.046151261776685715, -0.031758636236190796, -0.026395604014396667, 0.012285721488296986, -0.008240645751357079, -0.03126611188054085, -0.0010836654109880328, -0.006138300523161888, -0.01270527858287096, 0.04936178773641586, -0.06691021472215652, 0.02424309402704239, -0.04429062083363533, 0.004788421560078859, -0.036556176841259, 0.020011041313409805, 0.004343782551586628, -0.029861509799957275, -0.0321599505841732, 0.04834025725722313, -0.08376545459032059, -0.014529439620673656, -0.0389275886118412, -0.009905192069709301, -0.0028616520576179028, -0.004286777228116989, 0.00576434750109911, -0.07023018598556519, -0.03600893169641495, -0.041517894715070724, 0.02125147171318531, 0.0018173200078308582, -0.0007387850200757384, -0.01389098260551691, -0.01913544535636902, -0.03456784412264824, 0.007383290212601423, -0.0625322237610817, -0.005235340911895037, -0.008541632443666458, 0.023476947098970413, 0.030080407857894897, 0.015040203928947449, -0.011364520527422428, 0.019208410754799843, 0.01911720260977745, -0.01696469448506832, -0.007000216282904148, 0.009449152275919914, 0.008450424298644066, 0.01270527858287096, 0.057898856699466705, -0.01661810278892517, -0.02721647545695305, 0.006361760199069977, 0.03261599317193031, -0.02838393859565258, -0.004286777228116989, -0.013270768336951733, 0.0761769488453865, -0.010707822628319263, -0.0181047935038805, -0.0669831782579422, -0.03135732188820839, 0.014775700867176056, 0.005162374582141638, 0.05180616304278374, -0.04549456387758255, -0.00006430878420360386, 0.0007872392889112234, 0.024772100150585175, -0.01948203518986702, 0.025556489825248718, -0.0019974559545516968, -0.001803638762794435, -0.04677147790789604, -0.024206610396504402, 0.0636267215013504, -0.008582675829529762, -0.0034066198859363794, -0.007643233053386211, 0.03234236687421799, 0.032360609620809555, 0.06639944761991501, 0.0009525538771413267, -0.03765067458152771, 0.00165428570471704, -0.03133907914161682, -0.032032258808612823, -0.006174783688038588, 0.06552384793758392, -0.054578885436058044, -0.041153062134981155, -0.03219643607735634, -0.007219115737825632, 0.04585939645767212, -0.017666995525360107, 0.0019039675826206803, -0.006448407657444477, -0.01730216294527054, -0.010087608359754086, -0.0761769488453865, 0.031174905598163605, -0.0005170355434529483, 0.12827497720718384, 0.01732952520251274, -0.03310851380228996, -0.004289057571440935, 0.012249238789081573, 0.0009063797770068049, -0.07719847559928894, 0.00949475634843111, 0.009303218685090542, -0.007611310109496117, 0.02721647545695305, 0.03471377491950989, 0.05866500362753868, -0.01068046037107706, 0.005198857747018337, -0.06023378297686577, -0.023130357265472412, 0.004590044263750315, -0.00462880777195096, -0.011136500164866447, -0.004102081060409546, 0.035443440079689026, 0.02446199394762516, 0.053265489637851715, 0.00015462611918337643, 0.002096644602715969, -0.004092960152775049, -0.01365384180098772, -0.09412668645381927, -0.012796486727893353, -0.013380218297243118, 0.04097064584493637, -0.007383290212601423, -0.04512973502278328, 0.005321988370269537, 0.01840578019618988, -0.01709238439798355, 0.004327821079641581, 0.005636656191200018, -0.03221467509865761, -0.016499532386660576, -0.030007442459464073, 0.03697573393583298, -0.046370163559913635, -0.0010677040554583073, 0.004022274166345596, 0.009713655337691307, -0.0040861195884644985, 0.010780788958072662, 0.03423949331045151, 0.006480330601334572, -0.010561889968812466, 0.014328781515359879, 0.0030440681148320436, -0.014264935627579689, 0.01698293536901474, 0.0415908619761467, -0.08989463746547699, -0.006931810174137354, 0.0412989966571331, 0.04239349439740181, -0.04866860434412956, -0.029150087386369705, 0.024772100150585175, 0.056001730263233185, -0.047209277749061584, 0.002754482440650463, -0.014830425381660461, 0.009558601304888725, -0.05166022852063179, -0.014930754899978638, -0.02292969822883606, 0.05297362431883812, 0.023604638874530792, -0.0004987939028069377, 0.011847923509776592, 0.05213451012969017, 0.023130357265472412, 0.025009242817759514, 0.05870148912072182, 0.03562585636973381, -0.039365384727716446, 0.007825649343430996, 0.011638144962489605, -0.06858843564987183, 0.03230588510632515, -0.021196747198700905, 0.04337853938341141, 0.02008400857448578, 0.04888750612735748, 0.023239806294441223, 0.04035043343901634, -0.0004905281821265817, 0.013161318376660347, -0.03493267670273781, -0.023568155243992805, -0.026869885623455048, 0.025574732571840286, -0.04170031100511551, 0.03484146669507027, -0.022418932989239693, -0.015313828364014626, -0.02090488001704216, -0.026669228449463844, -0.030208099633455276, -0.02933250181376934, 0.046516094356775284, 0.02635912038385868, 0.03194105252623558, -0.026067255064845085, 0.02980678342282772, 0.06410100311040878, -0.03148501366376877, 0.05370328947901726, -0.0328531339764595, -0.030682381242513657, -0.014046036638319492, 0.04855915531516075, -0.029131844639778137, -0.03513333201408386, 0.06435638666152954, -0.06307947635650635, -0.011656385846436024, -0.05490723252296448, 0.037340566515922546, -0.0057005020789802074, -0.04527566581964493, 0.032944340258836746, 0.02327628992497921, -0.005486162845045328, 0.027015818282961845, 0.04724575951695442, -0.00009790612239157781, -0.021306196227669716, -0.0010608633747324347, -0.057643476873636246, 0.04618774726986885, 0.030974246561527252, -0.008797014132142067, 0.011245950125157833, 0.024753859266638756, -0.08135756105184555, 0.029241293668746948, 0.07749034464359283, 0.07055853307247162, 0.04122602939605713, 0.011875285767018795, 0.014748338609933853, 0.02696109376847744, -0.05899335443973541, -0.03845330700278282, 0.03859923779964447, 0.019299618899822235, -0.04286777600646019, -0.010224420577287674, 0.049690134823322296, 0.01652689464390278, 0.012075942941009998, 0.020211700350046158, -0.038416821509599686, 0.0038170560728758574, 0.03761419281363487, -0.06774932146072388, 0.07012073695659637, 0.027107026427984238, 0.03907351940870285, -0.03440367057919502, 0.037340566515922546, -0.014739218167960644, -0.007693397346884012, -0.0767606794834137, 0.0338381789624691, 0.04191920906305313, -0.03376521170139313, 0.04348798841238022, 0.015322948805987835, -0.04644313082098961, -0.02329453080892563, 0.05023738369345665, -0.029642609879374504, 0.0027522023301571608, 0.014930754899978638, -0.052791208028793335, 0.03278016671538353, 0.021926410496234894, 0.023787055164575577, -0.016116458922624588, -0.05403163656592369, -0.005632095970213413, -0.08580851554870605, 0.10755250602960587, -0.004115762189030647, -0.020977847278118134, 0.0736960917711258, -0.011081775650382042, 0.03571706637740135, -0.027581308037042618, 0.0456404983997345, -0.03290785849094391, -0.009430910460650921, 0.0119300102815032, 0.01121858786791563, 0.02137916162610054, 0.027234718203544617, 0.02873053029179573, -0.08712191134691238, -0.06636296212673187, -0.0017751363338902593, -0.034257736057043076, -0.018569955602288246, -0.013352856040000916, -0.04885102063417435, -0.004852267447859049, -0.0615471787750721, -0.007583947852253914, -0.07457168400287628, 0.0029232173692435026, -0.01973741687834263, 0.06318892538547516, -0.02245541661977768, 0.002193553140386939, 0.013352856040000916, -0.02601253055036068, -0.002560665365308523, 0.046734996140003204, -0.07417037338018417, 0.004035955294966698, -0.065706267952919, -0.06501308083534241, -0.0067037902772426605, 0.02136092074215412, 0.044837865978479385, 0.02920481190085411, -0.009152726270258427, -0.062057942152023315, 0.00909344106912613, 0.019992800429463387, -0.00045832034084014595, -0.0341300442814827, -0.030919522047042847, 0.028110314160585403, 0.04881453886628151, 0.05830017477273941, 0.00278868549503386, 0.042977225035429, -0.048267289996147156, -0.032743681222200394, 0.015286466106772423, -0.04027746617794037, 0.01091760117560625, 0.0669831782579422, -0.009832225739955902, 0.03144852817058563, -0.049945518374443054, 0.04655257984995842, 0.002474017906934023, -0.02967909350991249, 0.017895014956593513, -0.012951540760695934, 0.03467729315161705, 0.0012700718361884356, -0.04064229875802994, 0.02874877117574215, 0.018542593345046043, 0.056001730263233185, -0.07931450009346008, -0.04728224128484726, 0.04082471504807472, -0.10200706124305725, 0.04286777600646019, 0.025264624506235123, 0.02745361626148224, 0.010388595052063465, 0.005207978654652834, -0.010552769526839256, -0.018971269950270653, -0.004072438459843397, 0.0014194250106811523, -0.035808272659778595, 0.05607469752430916, -0.07249214500188828, 0.025228140875697136, -0.022254759445786476, 0.011127379722893238, -0.014848667196929455, 0.0018515230622142553, -0.05104001238942146, -0.005299186799675226, -0.04082471504807472, -0.0255382489413023, 0.02292969822883606, -0.034859709441661835, -0.008199602365493774, 0.05851907283067703, -0.00552720669656992, -0.039255935698747635, 0.004897871054708958, -0.07077743113040924, -0.03903703764081001, 0.0591757707297802, -0.05640304461121559, 0.0012723520630970597, 0.0024284138344228268, -0.0487050898373127, 0.010233541019260883, -0.05767995864152908, -0.031193146482110023, 0.016253270208835602, 0.0044965557754039764, 0.004884189926087856, 0.020248182117938995, 0.0034613448660820723, -0.034987401217222214, -0.0018093392718583345, 0.0010067085968330503, 0.03309027478098869, -0.02599428780376911, 0.006042532157152891, 0.012386050075292587, 0.005276384763419628, 0.020594773814082146, -0.02721647545695305, -0.04819432273507118, 0.03896407037973404, -0.016089096665382385, -0.03932890295982361, -0.009321460500359535, 0.026687469333410263, -0.0021536496933549643, 0.012860332615673542, 0.0500914491713047, -0.014848667196929455, 0.040788229554891586, 0.018068311735987663, 0.01717447303235531, 0.033217962831258774, 0.024644410237669945, -0.02101433090865612, 0.012449895963072777, -0.0020784030202776194, -0.0035548328887671232, 0.02863932214677334, 0.005969565361738205, 0.028803495690226555, -0.02517341636121273, 0.03648321330547333, -0.015514485538005829, 0.03194105252623558, 0.04498380050063133, -0.010552769526839256, -0.021342679858207703, 0.0008790174033492804, 0.05348438769578934, 0.058117758482694626, 0.030499964952468872, -0.015724264085292816, 0.029952717944979668, 0.009075199253857136, 0.048413220793008804, -0.04914288595318794, 0.057789407670497894, 0.028657563030719757, -0.022747281938791275, -0.00975013803690672, -0.013936586678028107, -0.006553296931087971, 0.08055493235588074 ]