Skip to content

Commit 18e0857

Browse files
committed
fix import errors and ascii syntax
1 parent e463fba commit 18e0857

File tree

7 files changed

+7
-1
lines changed

7 files changed

+7
-1
lines changed

prms_python/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
1313
"""
1414

15-
__name__ = 'prms-python'
15+
__name__ = 'prms_python'
1616
__author__ = 'John Volk and Matthew Turner'
1717
__version__ = '1.0.0'
1818

prms_python/data.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
'''
23
data.py -- holds ``Data`` class for standard PRMS climate input data.
34
'''

prms_python/optimizer.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
'''
23
optimizer.py -- holds ``Optimizer`` and ``OptimizationResult`` classes for
34
optimization routines and management conducted on PRMS parameters.

prms_python/parameters.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
'''
23
parameters.py -- holds ``Parameter`` class with multiple functionality for
34
the standard PRMS parameters input file.

prms_python/scenario.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
'''
23
scenario.py -- holds ``Scenario`` and ``ScenarioSeries`` classes for PRMS
34
managing parameter-based model scenarios that may be used for hypotheses

prms_python/simulation.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
"""
23
simulation.py -- Contains ``Simulation`` and ``SimulationSeries`` classes and
34
associated functions for managing PRMS simulations at a low level.

prms_python/util.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
"""
23
util.py -- Utilities for working with PRMS data or other functionality that aren't
34
appropriate to put elsewhere at this time.

0 commit comments

Comments
 (0)