Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CiS Projekt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ockenden, Samuel
CiS Projekt
Commits
624c7716
Commit
624c7716
authored
3 years ago
by
Jochens, Florian
Browse files
Options
Downloads
Patches
Plain Diff
fixed bugs in publication.py
parent
4fa2b0c7
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
input/.publication.py.swp
+0
-0
0 additions, 0 deletions
input/.publication.py.swp
input/publication.py
+5
-5
5 additions, 5 deletions
input/publication.py
with
5 additions
and
5 deletions
input/.publication.py.swp
0 → 100644
+
0
−
0
View file @
624c7716
File added
This diff is collapsed.
Click to expand it.
input/publication.py
+
5
−
5
View file @
624c7716
...
@@ -6,8 +6,8 @@ class Publication:
...
@@ -6,8 +6,8 @@ class Publication:
"""
"""
def
__init__
(
self
,
doi_url
:
str
,
title
:
str
def
__init__
(
self
,
doi_url
:
str
,
title
:
str
,
contributors
:
str
,
journal
:
str
,
contributors
:
str
,
journal
:
str
,
publication_date
:
str
,
subjects
:
list
[
str
]
,
num_citations
:
int
=
None
,
publication_date
:
str
,
subjects
=
None
,
num_citations
=
None
,
references
:
list
[
any
]
=
None
,
citations
:
list
[
any
]
=
None
):
,
references
=
None
,
citations
=
None
):
"""
"""
Parameters
Parameters
----------
----------
...
@@ -133,8 +133,8 @@ Subjects:''')
...
@@ -133,8 +133,8 @@ Subjects:''')
class
Citation
:
class
Citation
:
def
__init__
(
self
,
doi_url
:
str
,
title
:
str
def
__init__
(
self
,
doi_url
:
str
,
title
:
str
,
journal
:
str
,
contributors
:
list
[
str
]
,
journal
:
str
,
contributors
=
None
,
cit_type
:
str
=
"
Citation
"
):
,
cit_type
=
"
Citation
"
):
"""
"""
Parameters
Parameters
----------
----------
...
@@ -168,7 +168,7 @@ class Citation:
...
@@ -168,7 +168,7 @@ class Citation:
# This is just a replica of Citations
# This is just a replica of Citations
class
Reference
:
class
Reference
:
def
__init__
(
self
,
doi_url
:
str
,
title
:
str
,
journal
:
str
,
contributors
:
list
[
str
]
):
def
__init__
(
self
,
doi_url
,
title
,
journal
,
contributors
):
self
.
title
=
title
self
.
title
=
title
self
.
doi_url
=
doi_url
self
.
doi_url
=
doi_url
self
.
journal
=
journal
self
.
journal
=
journal
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment