Skip to content

Commit

Permalink
Allow datetime as container argument (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hans Kallekleiv authored Nov 19, 2019
1 parent 03d26a2 commit 7a01e8b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions webviz_config/templates/copy_data_template.py.jinja2
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import datetime
import os.path as path
from pathlib import Path, PosixPath

import dash
import os.path as path
from webviz_config.webviz_store import WEBVIZ_STORAGE
from webviz_config.webviz_assets import WEBVIZ_ASSETS
from webviz_config.common_cache import CACHE
from pathlib import Path, PosixPath



{% for module in _imports %}
{%- if module is string -%}
Expand Down
1 change: 1 addition & 0 deletions webviz_config/templates/webviz_template.py.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import logging
import logging.config
import threading
import datetime
import os.path as path
from pathlib import Path, PosixPath

Expand Down

0 comments on commit 7a01e8b

Please sign in to comment.