Skip to content

Commit 8f08465

Browse files
use self
1 parent c5fae47 commit 8f08465

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/license_expression/__init__.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -260,12 +260,12 @@ def __init__(self, symbols=tuple(), quiet=True):
260260
# LicenseWithExceptionSymbol does not get its internal Expressions mapped durring BooleanAlgebra init
261261
# have to set it after the fact
262262
tf_nao = {
263-
"TRUE": spdx_licensing.TRUE,
264-
"FALSE": spdx_licensing.FALSE,
265-
"NOT": spdx_licensing.NOT,
266-
"AND": spdx_licensing.AND,
267-
"OR": spdx_licensing.OR,
268-
"Symbol": spdx_licensing.Symbol,
263+
"TRUE": self.TRUE,
264+
"FALSE": self.FALSE,
265+
"NOT": self.NOT,
266+
"AND": self.AND,
267+
"OR": self.OR,
268+
"Symbol": self.Symbol,
269269
}
270270

271271
for name, value in tf_nao.items():

0 commit comments

Comments
 (0)