Skip to content

Commit

Permalink
changes default in make_mtl to trim=False
Browse files Browse the repository at this point in the history
  • Loading branch information
forero committed Jul 28, 2016
1 parent a4631d2 commit d37da98
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions py/desitarget/mtl.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from .targetmask import desi_mask, obsmask
from .targets import calc_numobs, calc_priority

def make_mtl(targets, zcat=None, trim=True):
def make_mtl(targets, zcat=None, trim=False):
"""Adds NUMOBS, PRIORITY, and GRAYLAYER columns to a targets table.
Parameters
Expand All @@ -15,8 +15,8 @@ def make_mtl(targets, zcat=None, trim=True):
Redshift catalog table with columns ``TARGETID``, ``NUMOBS``, ``Z``,
``ZWARN``.
trim : :class:`bool`, optional
If ``True`` (default), don't include targets that don't need
any more observations. If ``False``, include every input target.
If ``True``, don't include targets that don't need
any more observations. If ``False`` (default), include every input target.
Returns
-------
Expand Down

0 comments on commit d37da98

Please sign in to comment.