annotate lib/cycloneerr/tasks.py @ 1562:c2ed44ed1e3c dependabot/pip/service/collector/twisted-19.7.0

Bump twisted from 19.2.0 to 19.7.0 in /service/collector Bumps [twisted](https://github.com/twisted/twisted) from 19.2.0 to 19.7.0. - [Release notes](https://github.com/twisted/twisted/releases) - [Changelog](https://github.com/twisted/twisted/blob/trunk/NEWS.rst) - [Commits](https://github.com/twisted/twisted/compare/twisted-19.2.0...twisted-19.7.0) Signed-off-by: dependabot[bot] <support@github.com>
author dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
date Fri, 14 Feb 2020 10:01:26 +0000
parents c5bd44f90ced
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1315
c5bd44f90ced make cycloneerr release
drewp <drewp@bigasterisk.com>
parents:
diff changeset
1 from invoke import task
c5bd44f90ced make cycloneerr release
drewp <drewp@bigasterisk.com>
parents:
diff changeset
2
c5bd44f90ced make cycloneerr release
drewp <drewp@bigasterisk.com>
parents:
diff changeset
3 import sys
c5bd44f90ced make cycloneerr release
drewp <drewp@bigasterisk.com>
parents:
diff changeset
4 sys.path.append('/my/proj/release')
c5bd44f90ced make cycloneerr release
drewp <drewp@bigasterisk.com>
parents:
diff changeset
5 from release import local_release
c5bd44f90ced make cycloneerr release
drewp <drewp@bigasterisk.com>
parents:
diff changeset
6
c5bd44f90ced make cycloneerr release
drewp <drewp@bigasterisk.com>
parents:
diff changeset
7 @task
c5bd44f90ced make cycloneerr release
drewp <drewp@bigasterisk.com>
parents:
diff changeset
8 def release(ctx):
c5bd44f90ced make cycloneerr release
drewp <drewp@bigasterisk.com>
parents:
diff changeset
9 local_release(ctx)