Skip to content

Commit

Permalink
improve
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierZal committed Apr 20, 2024
1 parent cdef59e commit b7df374
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ariston/lib/APICallContextData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ export default abstract class APICallContextData {
public toString(): string {
return ORDER.map((key) => {
if (key in this) {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const value: any = this[key as keyof this]
const value = this[key as keyof this]
if (typeof value !== 'undefined') {
return `${key}: ${
typeof value === 'object' ?
Expand Down

0 comments on commit b7df374

Please sign in to comment.