Changeset cb351607 in trunk


Ignore:
Timestamp:
2020-11-29T20:21:25Z (4 years ago)
Author:
Jason R. Coombs <jaraco@…>
Branches:
master
Children:
6b772e7
Parents:
6ea9003
Message:

Repeat type declaration from parent to avoid over-constraining this type for subclasses.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/allmydata/scripts/cli.py

    r6ea9003 rcb351607  
    22
    33import os.path, re, fnmatch
     4
     5try:
     6    from typing import List, Sequence, Any
     7except ImportError:
     8    pass
     9
    410from twisted.python import usage
    511from allmydata.scripts.common import get_aliases, get_default_nodedir, \
     
    2026        ["dir-cap", None, None,
    2127         "Specify which dirnode URI should be used as the 'tahoe' alias."]
    22         ]
     28        ]  # type: List[Sequence[Any]]
    2329
    2430    def postOptions(self):
Note: See TracChangeset for help on using the changeset viewer.