Skip to content

Commit 1e4f482

Browse files
author
Tom Close
committed
cleaned up units/concentration.py by adding trailing newline and unicode
symbol to micromolar, and removing redundant aliases
1 parent b894851 commit 1e4f482

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

quantities/units/concentration.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
"""
23
"""
34
from __future__ import absolute_import
@@ -10,19 +11,18 @@
1011
'molar',
1112
mol / L,
1213
symbol='M',
13-
aliases=['molar', 'Molar']
14+
aliases=['Molar']
1415
)
1516

1617
mM = millimolar = UnitQuantity(
1718
'millimolar',
1819
molar / 1000,
19-
symbol='mM',
20-
aliases=['millimolar']
20+
symbol='mM'
2121
)
2222

2323
uM = micromolar = UnitQuantity(
2424
'micromolar',
2525
mM / 1000,
2626
symbol='uM',
27-
aliases=['mircomolar']
28-
)
27+
u_symbol='µM'
28+
)

0 commit comments

Comments
 (0)