Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
csst-pipeline
csst_common
Commits
22dcd647
Commit
22dcd647
authored
Feb 17, 2023
by
BO ZHANG
🏀
Browse files
use str for dm.stamps
parent
b59688de
Changes
1
Hide whitespace changes
Inline
Side-by-side
csst_common/data_manager.py
View file @
22dcd647
...
...
@@ -157,14 +157,14 @@ class CsstMsDataManager:
_survey
:
str
=
"MS"
,
obs_type
:
str
=
"SCI"
,
l0_post
:
str
=
"L0_1"
,
log_ppl
=
""
,
log_mod
=
""
,
clear_dir
=
False
,
verbose
=
True
,
n_jobs
=
18
,
backend
=
"multiprocessing"
,
device
=
"CPU"
,
stamps
=
""
,
log_ppl
:
str
=
""
,
log_mod
:
str
=
""
,
clear_dir
:
bool
=
False
,
verbose
:
bool
=
True
,
n_jobs
:
int
=
18
,
backend
:
str
=
"multiprocessing"
,
device
:
str
=
"CPU"
,
stamps
:
str
=
""
,
):
# set DFS log dir
...
...
@@ -256,15 +256,13 @@ class CsstMsDataManager:
self
.
custom_dark
=
None
self
.
custom_flat
=
None
if
stamps
==
""
or
stamps
is
None
:
self
.
stamps
=
None
else
:
self
.
stamps
=
open
(
stamps
,
"w+"
)
self
.
write_stamp
()
self
.
stamps
=
stamps
self
.
write_stamp
()
def
write_stamp
(
self
):
if
self
.
stamps
is
not
None
:
self
.
stamps
.
write
(
f
"
{
time
.
Time
.
now
().
isot
}
\n
"
)
if
self
.
stamps
is
not
None
and
not
self
.
stamps
==
""
:
with
open
(
self
.
stamps
,
"a+"
)
as
f
:
f
.
write
(
f
"
{
time
.
Time
.
now
().
isot
}
\n
"
)
# DFS APIs
@
property
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment