Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
A
alpha-mind
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dr.李
alpha-mind
Commits
279af385
Commit
279af385
authored
May 15, 2018
by
Dr.李
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
using empty list instead of none
parent
960f9b92
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
universe.py
alphamind/data/engines/universe.py
+3
-3
No files found.
alphamind/data/engines/universe.py
View file @
279af385
...
@@ -31,9 +31,9 @@ class Universe(object):
...
@@ -31,9 +31,9 @@ class Universe(object):
special_codes
:
Iterable
=
None
,
special_codes
:
Iterable
=
None
,
filter_cond
=
None
):
filter_cond
=
None
):
self
.
name
=
name
self
.
name
=
name
self
.
base_universe
=
sorted
([
u
.
lower
()
for
u
in
base_universe
])
if
base_universe
else
None
self
.
base_universe
=
sorted
([
u
.
lower
()
for
u
in
base_universe
])
if
base_universe
else
[]
self
.
exclude_universe
=
sorted
([
u
.
lower
()
for
u
in
exclude_universe
])
if
exclude_universe
else
None
self
.
exclude_universe
=
sorted
([
u
.
lower
()
for
u
in
exclude_universe
])
if
exclude_universe
else
[]
self
.
special_codes
=
sorted
(
special_codes
)
if
special_codes
else
None
self
.
special_codes
=
sorted
(
special_codes
)
if
special_codes
else
[]
self
.
filter_cond
=
filter_cond
self
.
filter_cond
=
filter_cond
def
__eq__
(
self
,
rhs
):
def
__eq__
(
self
,
rhs
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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