Skip to content
This repository has been archived by the owner on Sep 29, 2023. It is now read-only.

Commit

Permalink
fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
djviau committed Sep 22, 2023
1 parent 9fd8d3c commit e26cb0b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Dockmaster.sol
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ contract Dockmaster is AbstractNFT {
"description",
string.concat(
"This is an NFT on the Dockmaster NFT contract. Its slip number is ",
tokenId.toString(), "."
tokenId.toString(),
"."
)
),
json.property("image", Metadata.svgDataURI(_image(tokenId))),
Expand Down
1 change: 1 addition & 0 deletions test/Dockmaster.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ contract DockmasterTest is Test {
DockmasterInterface public dockmaster;

event Hail(string message);

error UnauthorizedMinter();

function setUp() public {
Expand Down

0 comments on commit e26cb0b

Please sign in to comment.