Skip to content

Commit

Permalink
Update copyright year for 2017
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeyeager committed Jan 17, 2017
1 parent 728c5ca commit a826ba7
Show file tree
Hide file tree
Showing 293 changed files with 293 additions and 293 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.

os: linux
dist: trusty
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2014-2016, NVIDIA CORPORATION. All rights reserved.
Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
Expand Down
2 changes: 1 addition & 1 deletion digits-devserver
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.

set -e

Expand Down
2 changes: 1 addition & 1 deletion digits-lint
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.

set -e

Expand Down
2 changes: 1 addition & 1 deletion digits-test
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright (c) 2014-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.

set -e

Expand Down
2 changes: 1 addition & 1 deletion digits/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

from .version import __version__
Expand Down
2 changes: 1 addition & 1 deletion digits/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.

import argparse
import os.path
Expand Down
2 changes: 1 addition & 1 deletion digits/config/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

# Create this object before importing the following imports, since they edit the list
Expand Down
2 changes: 1 addition & 1 deletion digits/config/caffe.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import imp
Expand Down
2 changes: 1 addition & 1 deletion digits/config/gpu_list.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

from . import option_list
Expand Down
2 changes: 1 addition & 1 deletion digits/config/jobs_dir.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import os
Expand Down
2 changes: 1 addition & 1 deletion digits/config/log_file.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import logging
Expand Down
2 changes: 1 addition & 1 deletion digits/config/server_name.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import os
Expand Down
2 changes: 1 addition & 1 deletion digits/config/store_option.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import os
Expand Down
2 changes: 1 addition & 1 deletion digits/config/torch.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import os
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

from .images import ImageClassificationDatasetJob, GenericImageDatasetJob
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/forms.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

from flask.ext.wtf import Form
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/generic/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

from .job import GenericDatasetJob
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/generic/forms.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import wtforms
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/generic/job.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

from ..job import DatasetJob
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/generic/test_views.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import json
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/generic/views.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import os
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/images/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

from .classification import * # noqa
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/images/classification/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

from .job import ImageClassificationDatasetJob
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/images/classification/forms.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import os.path
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/images/classification/job.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import os
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python2
# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.
"""
Functions for creating temporary datasets
Used in test_views
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/images/classification/test_views.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import json
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/images/classification/views.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import os
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/images/forms.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import wtforms
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/images/generic/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

from .job import GenericImageDatasetJob
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/images/generic/forms.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import os.path
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/images/generic/job.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

from ..job import ImageDatasetJob
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/images/generic/test_lmdb_creator.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python2
# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.
"""
Functions for creating temporary LMDBs
Used in test_views
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/images/generic/test_views.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import json
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/images/generic/views.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import flask
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/images/job.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

from ..job import DatasetJob
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/images/views.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import os.path
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/job.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

from digits.job import Job
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/tasks/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

from .analyze_db import AnalyzeDbTask
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/tasks/analyze_db.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import os.path
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/tasks/create_db.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import operator
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/tasks/create_generic_db.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import os
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/tasks/parse_folder.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import os.path
Expand Down
2 changes: 1 addition & 1 deletion digits/dataset/views.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import flask
Expand Down
2 changes: 1 addition & 1 deletion digits/device_query.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python2
# Copyright (c) 2014-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2014-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import argparse
Expand Down
2 changes: 1 addition & 1 deletion digits/download_data/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.

import argparse
import sys
Expand Down
2 changes: 1 addition & 1 deletion digits/download_data/cifar10.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.

import cPickle
import os
Expand Down
2 changes: 1 addition & 1 deletion digits/download_data/cifar100.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.

import cPickle
import os
Expand Down
2 changes: 1 addition & 1 deletion digits/download_data/downloader.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.

import os
import shutil
Expand Down
2 changes: 1 addition & 1 deletion digits/download_data/mnist.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.

import gzip
import os
Expand Down
2 changes: 1 addition & 1 deletion digits/extensions/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

from .data import * # noqa
Expand Down
2 changes: 1 addition & 1 deletion digits/extensions/data/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import copy
Expand Down
2 changes: 1 addition & 1 deletion digits/extensions/data/imageProcessing/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

from .data import DataIngestion
Expand Down
2 changes: 1 addition & 1 deletion digits/extensions/data/imageProcessing/data.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import math
Expand Down
2 changes: 1 addition & 1 deletion digits/extensions/data/imageProcessing/forms.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import os
Expand Down
2 changes: 1 addition & 1 deletion digits/extensions/data/imageProcessing/template.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved. #}
{# Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved. #}

{% from "helper.html" import print_flashes %}
{% from "helper.html" import print_errors %}
Expand Down
2 changes: 1 addition & 1 deletion digits/extensions/data/imageSegmentation/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

from .data import DataIngestion
Expand Down
2 changes: 1 addition & 1 deletion digits/extensions/data/imageSegmentation/data.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import math
Expand Down
2 changes: 1 addition & 1 deletion digits/extensions/data/imageSegmentation/forms.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import os
Expand Down
2 changes: 1 addition & 1 deletion digits/extensions/data/imageSegmentation/template.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved. #}
{# Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved. #}

{% from "helper.html" import print_flashes %}
{% from "helper.html" import print_errors %}
Expand Down
2 changes: 1 addition & 1 deletion digits/extensions/data/interface.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import


Expand Down
2 changes: 1 addition & 1 deletion digits/extensions/data/objectDetection/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

from .data import DataIngestion
Expand Down
2 changes: 1 addition & 1 deletion digits/extensions/data/objectDetection/data.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

import csv
Expand Down
2 changes: 1 addition & 1 deletion digits/extensions/data/objectDetection/forms.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.
from __future__ import absolute_import

from flask.ext.wtf import Form
Expand Down
Loading

0 comments on commit a826ba7

Please sign in to comment.