Skip to content

Commit

Permalink
Git-ignoring tab-separated value files
Browse files Browse the repository at this point in the history
  • Loading branch information
kdavies4 committed Jan 5, 2015
1 parent 1514ec0 commit c3eb058
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -10,6 +10,7 @@ MANIFEST
*.mos
doc/examples
*.egg-info
*.tsv

# Dymola-generated files
buildlog.txt
Expand Down
2 changes: 1 addition & 1 deletion examples/ChuaCircuit/sim_and_plot.py
Expand Up @@ -47,7 +47,7 @@
# Ask Dymola to run the script.
# For Linux:
os.system('dymola ' + FNAME)
# TODO: Add support for Windows.
# TODO: Support Windows.
# For Windows:
# os.system(r'C:\Program files\Dymola\bin\Dymola.exe ' + FNAME)
else:
Expand Down
2 changes: 1 addition & 1 deletion examples/PID/lin.py
Expand Up @@ -38,6 +38,6 @@
# Ask Dymola to run the script.
# For Linux:
os.system('dymola ' + FNAME)
# TODO: Add support for Windows.
# TODO: Support Windows.
# For Windows:
# os.system(r'C:\Program files\Dymola\bin\Dymola.exe ' + FNAME)
3 changes: 1 addition & 2 deletions modelicares/util.py
Expand Up @@ -1303,8 +1303,7 @@ def setup_subplots(n_plots, n_rows, title="", subtitles=None,
else:
return ax, n_cols

# TODO: Remove the "_" prefix and add it to the list once this is finished.

# TODO: Remove the "_" prefix and add this to the list above once it's finished.

def _shift_scale_c(cbar, vmin, vmax, eagerness=0.325):
""""If helpful, apply an offset and a factor to the colorbar.
Expand Down

0 comments on commit c3eb058

Please sign in to comment.