Skip to content
This repository has been archived by the owner on Jul 7, 2024. It is now read-only.

Commit

Permalink
Remove blank lines from the end of files
Browse files Browse the repository at this point in the history
  • Loading branch information
huku- committed Jul 1, 2024
1 parent 3a148be commit 189b60d
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion check.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,3 @@ int is_string(PyObject *object)
{
return (object && PyString_CheckExact(object));
}

1 change: 0 additions & 1 deletion decoder.c
Original file line number Diff line number Diff line change
Expand Up @@ -169,4 +169,3 @@ void register_decoder_object(PyObject *module)
PyModule_AddObject(module, "Decoder", (PyObject *)&type);
}
}

1 change: 0 additions & 1 deletion encoder.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@
#include "check.h"
#include "encoder.h"
#include "instruction.h"

2 changes: 0 additions & 2 deletions encoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,4 @@

#include "includes.h"



#endif /* _ENCODER_H_ */
1 change: 0 additions & 1 deletion instruction.c
Original file line number Diff line number Diff line change
Expand Up @@ -833,4 +833,3 @@ void register_instruction_object(PyObject *module)
PyModule_AddObject(module, "Instruction", (PyObject *)&type);
}
}

1 change: 0 additions & 1 deletion operand.c
Original file line number Diff line number Diff line change
Expand Up @@ -239,4 +239,3 @@ void register_operand_object(PyObject *module)
PyModule_AddObject(module, "Operand", (PyObject *)&type);
}
}

1 change: 0 additions & 1 deletion pyxed.c
Original file line number Diff line number Diff line change
Expand Up @@ -238,4 +238,3 @@ PyMODINIT_FUNC initpyxed(void)
return;
#endif
}

0 comments on commit 189b60d

Please sign in to comment.