Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
sakia
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
clients
python
sakia
Merge requests
!789
modernize python3 syntax
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
modernize python3 syntax
jonas/sakia:wip/python3_syntax
into
dev
Overview
0
Commits
1
Pipelines
0
Changes
2
Open
Jonas Smedegaard
requested to merge
jonas/sakia:wip/python3_syntax
into
dev
4 years ago
Overview
0
Commits
1
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Compare
dev
version 2
8e2d21bb
4 years ago
version 1
8e2d21bb
4 years ago
dev (base)
and
latest version
latest version
3bcb1524
1 commit,
4 years ago
version 2
8e2d21bb
1 commit,
4 years ago
version 1
8e2d21bb
1 commit,
4 years ago
2 files
+
3
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
src/sakia/data/entities/connection.py
+
2
−
2
Options
@@ -24,10 +24,10 @@ class Connection:
password
=
attr
.
ib
(
init
=
False
,
converter
=
str
,
default
=
""
,
cmp
=
False
,
hash
=
False
)
def
is_identity
(
self
):
return
self
.
uid
is
not
""
return
self
.
uid
!=
""
def
is_wallet
(
self
):
return
self
.
uid
is
""
return
self
.
uid
==
""
def
title
(
self
):
return
"
@
"
.
join
([
self
.
uid
,
self
.
pubkey
[:
11
]])
Loading