Skip to content

Commit

Permalink
fix(gallia.commands): drop invalid prefix from names in __all__
Browse files Browse the repository at this point in the history
  • Loading branch information
emedav authored and rumpelsepp committed Aug 6, 2024
1 parent 618918d commit f6e8caf
Showing 1 changed file with 19 additions and 18 deletions.
37 changes: 19 additions & 18 deletions src/gallia/commands/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,26 +47,27 @@
WriteByIdentifierPrimitive,
]

# TODO: Investigate why linters didn't catch faulty strings in here.
__all__ = [
"DoIPDiscoverer",
"DMemoryFunctionsScanner",
"DReadByIdentifierPrimitive",
"DResetScanner",
"DSASeedsDumper",
"DScanIdentifiers",
"DSessionsScanner",
"DServicesScanner",
"DDTCPrimitive",
"DECUResetPrimitive",
"DVINPrimitive",
"DIOCBIPrimitive",
"DPingPrimitive",
"DRMBAPrimitive",
"DRTCLPrimitive",
"DGenericPDUPrimitive",
"DSendPDUPrimitive",
"DWMBAPrimitive",
"DWriteByIdentifierPrimitive",
"MemoryFunctionsScanner",
"ReadByIdentifierPrimitive",
"ResetScanner",
"SASeedsDumper",
"ScanIdentifiers",
"SessionsScanner",
"ServicesScanner",
"DTCPrimitive",
"ECUResetPrimitive",
"VINPrimitive",
"IOCBIPrimitive",
"PingPrimitive",
"RMBAPrimitive",
"RTCLPrimitive",
"GenericPDUPrimitive",
"SendPDUPrimitive",
"WMBAPrimitive",
"WriteByIdentifierPrimitive",
]


Expand Down

0 comments on commit f6e8caf

Please sign in to comment.